| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727 |
- ; FBX 7.5.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7500
- CreationTimeStamp: {
- Version: 1000
- Year: 2020
- Month: 7
- Day: 2
- Hour: 13
- Minute: 56
- Second: 37
- Millisecond: 603
- }
- Creator: "FBX SDK/FBX Plugins version 2016.1.2"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Roof_12m_04.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Roof_12m_04.fbx"
- P: "Original", "Compound", "", ""
- P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "Original|ApplicationName", "KString", "", "", "Maya LT"
- P: "Original|ApplicationVersion", "KString", "", "", "2016"
- P: "Original|DateTime_GMT", "DateTime", "", "", "02/07/2020 10:56:37.603"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Roof_12m_04.fbx"
- P: "LastSaved", "Compound", "", ""
- P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
- P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
- P: "LastSaved|DateTime_GMT", "DateTime", "", "", "02/07/2020 10:56:37.603"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Maya"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_05.mlt"
- }
- }
- }
- GlobalSettings: {
- Version: 1000
- Properties70: {
- P: "UpAxis", "int", "Integer", "",1
- P: "UpAxisSign", "int", "Integer", "",1
- P: "FrontAxis", "int", "Integer", "",2
- P: "FrontAxisSign", "int", "Integer", "",1
- P: "CoordAxis", "int", "Integer", "",0
- P: "CoordAxisSign", "int", "Integer", "",1
- P: "OriginalUpAxis", "int", "Integer", "",1
- P: "OriginalUpAxisSign", "int", "Integer", "",1
- P: "UnitScaleFactor", "double", "Number", "",1
- P: "OriginalUnitScaleFactor", "double", "Number", "",1
- P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
- P: "DefaultCamera", "KString", "", "", "Producer Perspective"
- P: "TimeMode", "enum", "", "",6
- P: "TimeProtocol", "enum", "", "",2
- P: "SnapOnFrameMode", "enum", "", "",0
- P: "TimeSpanStart", "KTime", "Time", "",1539538600
- P: "TimeSpanStop", "KTime", "Time", "",92372316000
- P: "CustomFrameRate", "double", "Number", "",-1
- P: "TimeMarker", "Compound", "", ""
- P: "CurrentTimeMarker", "int", "Integer", "",-1
- }
- }
- ; Documents Description
- ;------------------------------------------------------------------
- Documents: {
- Count: 1
- Document: 2399942339728, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 33
- 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: 7
- 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: 5
- PropertyTemplate: "FbxMesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
- P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
- P: "Primary Visibility", "bool", "", "",1
- P: "Casts Shadows", "bool", "", "",1
- P: "Receive Shadows", "bool", "", "",1
- }
- }
- }
- ObjectType: "Material" {
- Count: 4
- PropertyTemplate: "FbxSurfacePhong" {
- Properties70: {
- P: "ShadingModel", "KString", "", "", "Phong"
- P: "MultiLayer", "bool", "", "",0
- P: "EmissiveColor", "Color", "", "A",0,0,0
- P: "EmissiveFactor", "Number", "", "A",1
- P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
- P: "AmbientFactor", "Number", "", "A",1
- P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
- P: "DiffuseFactor", "Number", "", "A",1
- P: "Bump", "Vector3D", "Vector", "",0,0,0
- P: "NormalMap", "Vector3D", "Vector", "",0,0,0
- P: "BumpFactor", "double", "Number", "",1
- P: "TransparentColor", "Color", "", "A",0,0,0
- P: "TransparencyFactor", "Number", "", "A",0
- P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "DisplacementFactor", "double", "Number", "",1
- P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "VectorDisplacementFactor", "double", "Number", "",1
- P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
- P: "SpecularFactor", "Number", "", "A",1
- P: "ShininessExponent", "Number", "", "A",20
- P: "ReflectionColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",1
- }
- }
- }
- ObjectType: "Texture" {
- Count: 6
- PropertyTemplate: "FbxFileTexture" {
- Properties70: {
- P: "TextureTypeUse", "enum", "", "",0
- P: "Texture alpha", "Number", "", "A",1
- P: "CurrentMappingType", "enum", "", "",0
- P: "WrapModeU", "enum", "", "",0
- P: "WrapModeV", "enum", "", "",0
- P: "UVSwap", "bool", "", "",0
- P: "PremultiplyAlpha", "bool", "", "",1
- P: "Translation", "Vector", "", "A",0,0,0
- P: "Rotation", "Vector", "", "A",0,0,0
- P: "Scaling", "Vector", "", "A",1,1,1
- P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "CurrentTextureBlendMode", "enum", "", "",1
- P: "UVSet", "KString", "", "", "default"
- P: "UseMaterial", "bool", "", "",0
- P: "UseMipMap", "bool", "", "",0
- }
- }
- }
- ObjectType: "Video" {
- Count: 6
- PropertyTemplate: "FbxVideo" {
- Properties70: {
- P: "ImageSequence", "bool", "", "",0
- P: "ImageSequenceOffset", "int", "Integer", "",0
- P: "FrameRate", "double", "Number", "",0
- P: "LastFrame", "int", "Integer", "",0
- P: "Width", "int", "Integer", "",0
- P: "Height", "int", "Integer", "",0
- P: "Path", "KString", "XRefUrl", "", ""
- P: "StartFrame", "int", "Integer", "",0
- P: "StopFrame", "int", "Integer", "",0
- P: "PlaySpeed", "double", "Number", "",0
- P: "Offset", "KTime", "Time", "",0
- P: "InterlaceMode", "enum", "", "",0
- P: "FreeRunning", "bool", "", "",0
- P: "Loop", "bool", "", "",0
- P: "AccessMode", "enum", "", "",0
- }
- }
- }
- }
- ; Object properties
- ;------------------------------------------------------------------
- Objects: {
- NodeAttribute: 2399851692960, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2403873681920, "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: 2399509523168, "Geometry::", "Mesh" {
- Vertices: *7299 {
- a: -88.51171875,641.361206054688,0,-81.77978515625,635.704345703125,0,-115.7939453125,608.8896484375,0,-109.06103515625,603.232299804688,0,-129.732421875,578.627685546875,0,-136.46533203125,584.284912109375,0,-116.16015625,608.454467773438,0,-109.42724609375,602.797241210938,0,-137.02880859375,583.614501953125,0,-130.29541015625,577.95703125,0,-162.93505859375,552.77978515625,0,-156.201171875,547.12255859375,0,-163.5498046875,552.048706054688,0,-156.8154296875,546.391723632813,0,-186.57958984375,524.638061523438,0,-179.84423828125,518.980346679688,0,-186.822265625,524.34716796875,0,-180.0888671875,518.689697265625,0,-218.951171875,486.105834960938,0,-218.951171875,486.10595703125,-418.951171875,-212.2177734375,480.4482421875,-412.21826171875,-212.21826171875,480.4482421875,0,-219.47119140625,485.487060546875,0,-219.47119140625,485.487060546875,-400,-212.7373046875,479.830200195313,-400,-212.7373046875,479.830200195313,0,-246.7529296875,453.015869140625,0,-246.7529296875,453.015747070313,-400,-240.0185546875,447.35791015625,-400,-240.0185546875,447.35791015625,0,-260.6904296875,422.753601074219,-400,-260.6904296875,422.753723144531,0,-267.423828125,428.410278320313,-400,-267.42431640625,428.410034179688,0,-247.11865234375,452.580688476563,0,-247.11865234375,452.580688476563,-400,-240.3837890625,446.923217773438,-400,-240.3837890625,446.923217773438,0,-267.98828125,427.740356445313,0,-267.98828125,427.740356445313,-400,-261.25341796875,422.083190917969,-400,-261.25341796875,422.083190917969,0,-293.89453125,396.905029296875,0,-293.89453125,396.905029296875,-400,-287.16015625,391.248168945313,-400,-287.15966796875,391.248107910156,0,-294.5068359375,396.174743652344,-400,-294.5068359375,396.174743652344,0,-287.77294921875,390.517944335938,-400,-287.77294921875,390.517944335938,0,-317.536376953125,368.763793945313,0,-317.536376953125,368.763793945313,-400,-310.80322265625,363.106262207031,-400,-310.80322265625,363.106262207031,0,-317.9541015625,368.265808105469,0,-317.9541015625,368.265808105469,-400,-311.22119140625,362.608215332031,-400,
- -311.22119140625,362.608215332031,0,-350.08251953125,330.024658203125,0,-350.08251953125,330.024658203125,-400,-343.349365234375,324.367004394531,-400,-343.349365234375,324.367004394531,0,-350.603515625,329.405517578125,0,-350.603515625,329.405517578125,-400,-343.868896484375,323.748718261719,-400,-343.868896484375,323.748718261719,0,-377.885009765625,296.933349609375,0,-377.885009765625,296.933349609375,-400,-371.150390625,291.276550292969,-400,-371.150390625,291.276550292969,0,-391.82275390625,266.671630859375,-400,-391.82275390625,266.671630859375,0,-398.556396484375,272.328552246094,-400,-398.556396484375,272.328552246094,0,-378.24951171875,296.498718261719,0,-378.24951171875,296.498718261719,-400,-371.516845703125,290.841674804688,-400,-371.516845703125,290.841674804688,0,-399.118896484375,271.65869140625,0,-399.118896484375,271.65869140625,-400,-392.385498046875,266.001159667969,-400,-392.385498046875,266.001159667969,0,-425.025390625,240.823669433594,0,-425.025390625,240.823669433594,-400,-418.29150390625,235.166259765625,-400,-418.29150390625,235.166259765625,0,-425.638916015625,240.093139648438,-400,-425.638916015625,240.093139648438,0,-418.9052734375,234.436157226563,-400,-418.9052734375,234.436157226563,0,-448.669189453125,212.681640625,0,-448.669189453125,212.681640625,-400,-441.9345703125,207.025085449219,-400,-441.9345703125,207.025085449219,0,-449.016845703125,212.267639160156,0,-449.016845703125,212.267639160156,-400,-442.283935546875,206.609802246094,-400,-442.283935546875,206.609802246094,0,-481.14501953125,174.026245117188,0,-481.14501953125,174.026245117188,-400,-474.412109375,168.368591308594,-400,-474.412109375,168.368591308594,0,-481.66552734375,173.407165527344,0,-481.66552734375,173.407165527344,-400,-474.93115234375,167.750244140625,-400,-474.93115234375,167.750244140625,0,-508.947021484375,140.934997558594,0,-508.947021484375,140.934997558594,-400,-502.212646484375,135.2783203125,-400,-502.212646484375,135.2783203125,0,-522.88525390625,110.67333984375,-400,-522.88525390625,110.67333984375,0,
- -529.618408203125,116.330688476563,-400,-529.618408203125,116.330688476563,0,-509.3115234375,140.500793457031,0,-509.3115234375,140.500793457031,-400,-502.5791015625,134.843322753906,-400,-502.5791015625,134.843322753906,0,-530.181640625,115.66015625,0,-530.181640625,115.66015625,-400,-523.447509765625,110.003112792969,-400,-523.447509765625,110.003112792969,0,-556.087158203125,84.825439453125,0,-556.087158203125,84.825439453125,-400,-549.3544921875,79.168701171875,-400,-549.3544921875,79.168701171875,0,-556.70166015625,84.094970703125,-400,-556.70166015625,84.094970703125,0,-549.968017578125,78.4379272460938,-400,-549.968017578125,78.4379272460938,0,-579.731201171875,56.6832885742188,0,-579.731201171875,56.6832885742188,-400,-572.99755859375,51.0267333984375,-400,-572.99755859375,51.0267333984375,0,-580.2255859375,56.0948486328125,0,-580.2255859375,56.094970703125,-400,-573.4921875,50.438232421875,-400,-573.4921875,50.438232421875,0,-621.590576171875,6.8597412109375,0,-621.590576171875,6.8597412109375,-400,-614.85693359375,1.202392578125,-400,-614.85693359375,1.202392578125,0,-32.08837890625,708.436279296875,0,-25.35595703125,702.778930664063,0,-32.7041015625,707.705322265625,0,-25.9677734375,702.048095703125,0,-55.7333984375,680.29443359375,0,-48.99951171875,674.637084960938,0,-55.97705078125,680.004028320313,0,-49.2431640625,674.346069335938,0,-88.1044921875,641.7626953125,0,-81.37109375,636.10498046875,0,-561.291748046875,70.375732421875,-56.44970703125,-561.291748046875,70.375732421875,-76.8828125,-561.291748046875,70.375732421875,-323.11669921875,-561.291748046875,70.375732421875,-343.5498046875,-216.69287109375,475.233520507813,0,-196.64599609375,499.095458984375,0,-399.141357421875,257.907348632813,-400,-399.141357421875,257.907348632813,0,-379.093505859375,281.768798828125,-400,-379.093505859375,281.768798828125,0,-573.8505859375,55.0053100585938,-400,-573.8505859375,55.0053100585938,0,-551.947509765625,36.6043090820313,0,-551.947509765625,36.6043090820313,-400,-553.802734375,78.867431640625,-400,-553.802734375,78.867431640625,0,
- -552.24853515625,44.5200805664063,-56.44970703125,-551.65966796875,42.838134765625,-57.98193359375,-551.65966796875,42.838134765625,-75.3505859375,-552.24853515625,44.5200805664063,-76.8828125,-552.24853515625,44.5200805664063,-323.11669921875,-551.65966796875,42.838134765625,-324.64892578125,-551.65966796875,42.838134765625,-342.017578125,-552.24853515625,44.5200805664063,-343.5498046875,-195.96533203125,457.817626953125,0,-193.80517578125,458.00537109375,0,-175.7294921875,479.520141601563,0,-175.916015625,481.679443359375,0,-378.4111328125,240.491516113281,0,-376.25244140625,240.679077148438,0,-378.4111328125,240.491516113281,-400,-376.25244140625,240.679077148438,-400,-358.176513671875,262.194396972656,0,-358.3642578125,264.353271484375,0,-358.3642578125,264.353271484375,-400,-358.176513671875,262.194396972656,-400,-532.885498046875,59.2925415039063,0,-533.073486328125,61.4514770507813,0,-533.073486328125,61.4514770507813,-400,-532.885498046875,59.2925415039063,-400,-192.59423828125,458.933227539063,-259.013671875,-174.06103515625,480.993530273438,-259.013671875,-174.25341796875,483.207275390625,-259.013671875,-195.5078125,501.065063476563,-259.013671875,-216.06494140625,476.598510742188,-259.013671875,-194.80810546875,458.740600585938,-259.013671875,-194.57666015625,456.706420898438,-152.04296875,-177.216796875,477.369140625,-152.04296875,-177.39697265625,479.44287109375,-152.04296875,-197.3056640625,496.168823242188,-152.04296875,-216.55908203125,473.252563476563,-152.04296875,-196.64990234375,456.526245117188,-152.04296875,-193.80517578125,458.00537109375,-69.998046875,-175.7294921875,479.520141601563,-69.998046875,-175.916015625,481.679443359375,-69.998046875,-196.64599609375,499.095458984375,-69.998046875,-216.69287109375,475.233520507813,-69.998046875,-195.96533203125,457.817626953125,-69.998046875,-175.7294921875,479.520141601563,-376.0859375,-193.80517578125,458.00537109375,-376.0859375,-195.96533203125,457.817626953125,-376.0859375,-216.69287109375,475.233520507813,-376.0859375,-196.64599609375,499.095458984375,-376.0859375,
- -175.916015625,481.679443359375,-376.0859375,-359.32568359375,261.785827636719,-218.6171875,-376.81689453125,240.965698242188,-218.6171875,-378.906494140625,240.784240722656,-218.6171875,-398.96630859375,257.637451171875,-218.6171875,-379.566650390625,280.727783203125,-218.6171875,-359.50634765625,263.874938964844,-218.6171875,-356.971435546875,263.255187988281,-346.97412109375,-374.87890625,241.940246582031,-346.97412109375,-377.018310546875,241.754455566406,-346.97412109375,-397.554931640625,259.008361816406,-346.97412109375,-377.693359375,282.647399902344,-346.97412109375,-357.15673828125,265.39404296875,-346.97412109375,-360.119140625,260.461669921875,-98.76708984375,-377.931640625,239.259155273438,-98.76708984375,-380.0595703125,239.074279785156,-98.76708984375,-400.48779296875,256.237060546875,-98.76708984375,-380.731689453125,279.751220703125,-98.76708984375,-360.30322265625,262.589111328125,-98.76708984375,-533.6279296875,58.1318359375,-238.7255859375,-552.68994140625,35.4436645507813,-238.7255859375,-574.592529296875,53.8446655273438,-238.7255859375,-554.545166015625,77.7068481445313,-238.7255859375,-533.8154296875,60.2907104492188,-238.7255859375,-532.0439453125,60.00634765625,-127.017578125,-551.10546875,37.3180541992188,-127.017578125,-573.00830078125,55.7191772460938,-127.017578125,-552.961181640625,79.5813598632813,-127.017578125,-532.231689453125,62.165283203125,-127.017578125,-532.885498046875,59.2925415039063,-340.78125,-551.947509765625,36.6043090820313,-340.78125,-573.8505859375,55.0053100585938,-340.78125,-553.802734375,78.867431640625,-340.78125,-533.073486328125,61.4514770507813,-340.78125,-188.6572265625,474.89208984375,-75.3505859375,-188.6572265625,474.89208984375,-57.98193359375,-189.3046875,476.502807617188,-56.44970703125,-199.26220703125,501.272338867188,-56.44970703125,-199.26220703125,501.272338867188,-76.8828125,-189.3046875,476.502807617188,-76.8828125,-253.20068359375,396.26806640625,-71.046875,-253.20068359375,396.26806640625,-53.67822265625,-253.8388671875,397.892028808594,-52.14599609375,
- -263.6318359375,422.856323242188,-52.14599609375,-263.6318359375,422.856323242188,-72.5791015625,-253.8388671875,397.892028808594,-72.5791015625,-370.186767578125,258.831359863281,-75.3505859375,-370.186767578125,258.831359863281,-57.98193359375,-370.8037109375,260.477966308594,-56.44970703125,-380.30419921875,285.790466308594,-56.44970703125,-380.30419921875,285.790466308594,-76.8828125,-370.8037109375,260.477966308594,-76.8828125,-444.392578125,171.466186523438,-77.94921875,-444.392578125,171.466186523438,-60.58056640625,-444.9990234375,173.127014160156,-59.04833984375,-454.31494140625,198.658142089844,-59.04833984375,-454.31494140625,198.658142089844,-79.4814453125,-444.9990234375,173.127014160156,-79.4814453125,-372.993408203125,255.490356445313,-342.017578125,-372.993408203125,255.490356445313,-324.64892578125,-373.6103515625,257.137512207031,-323.11669921875,-383.103271484375,282.458312988281,-323.11669921875,-383.103271484375,282.458312988281,-343.5498046875,-373.6103515625,257.137512207031,-343.5498046875,-418.3310546875,201.336547851563,-327.42041015625,-418.3310546875,201.336547851563,-344.7890625,-418.941650390625,202.992248535156,-346.3212890625,-428.32470703125,228.444213867188,-346.3212890625,-428.32470703125,228.444213867188,-325.88818359375,-418.941650390625,202.992248535156,-325.88818359375,-280.25146484375,364.356750488281,-340.02685546875,-280.25146484375,364.356750488281,-322.1025390625,-280.90478515625,366.037963867188,-320.52099609375,-290.939453125,391.882995605469,-320.52099609375,-290.939453125,391.882995605469,-341.6083984375,-280.90478515625,366.037963867188,-341.6083984375,-192.30810546875,470.547607421875,-324.64892578125,-192.30810546875,470.547607421875,-342.017578125,-192.95361328125,472.159423828125,-343.5498046875,-202.90087890625,496.939331054688,-343.5498046875,-202.90087890625,496.939331054688,-323.11669921875,-192.95361328125,472.159423828125,-323.11669921875,-124.4921875,588.409301757813,-318.56982421875,-141.11181640625,532.56396484375,-78.46142578125,-141.11181640625,532.56396484375,-61.0927734375,
- -141.7666015625,534.165771484375,-59.560546875,-151.845703125,558.789916992188,-59.560546875,-151.845703125,558.789916992188,-79.99365234375,-141.7666015625,534.165771484375,-79.99365234375,-323.400390625,315.768371582031,-326.333984375,-323.400390625,315.768371582031,-343.1513671875,-324.00634765625,317.353759765625,-344.634765625,-333.322509765625,341.723876953125,-344.634765625,-333.322509765625,341.723876953125,-324.8505859375,-324.00634765625,317.353759765625,-324.8505859375,0,733.25146484375,0,0,746.99365234375,0,0,701.85400390625,-56.66796875,0,699.477172851563,-75.58251953125,0,699.477172851563,-58.21435546875,0,733.25146484375,-56.45556640625,0,733.25146484375,-76.88916015625,0,701.85400390625,-77.10107421875,-585.4560546875,36.593994140625,-400,-585.4560546875,36.593994140625,0,-585.3623046875,-0.065673828125,0,-585.3623046875,-0.065673828125,-400,-548.40771484375,35.1563720703125,-400,-549.94384765625,36.684814453125,-400,-549.94384765625,36.684814453125,0,-548.40771484375,35.1563720703125,0,-549.8505859375,0.02490234375,0,-548.322265625,1.5611572265625,0,-548.322265625,1.5611572265625,-400,-549.8505859375,0.02490234375,-400,-621.59033203125,6.8597412109375,-821.590576171875,-614.85693359375,1.202392578125,-814.85693359375,-561.291748046875,70.375732421875,-456.44970703125,-561.291748046875,70.375732421875,-476.8828125,-552.24853515625,44.5200805664063,-456.44970703125,-551.65966796875,42.838134765625,-457.98193359375,-551.65966796875,42.838134765625,-475.3505859375,-552.24853515625,44.5200805664063,-476.8828125,-360.119140625,260.461669921875,-498.76708984375,-377.931640625,239.259155273438,-498.76708984375,-380.0595703125,239.074279785156,-498.76708984375,-400.48779296875,256.237060546875,-498.76708984375,-380.731689453125,279.751220703125,-498.76708984375,-360.30322265625,262.589111328125,-498.76708984375,-533.6279296875,58.1318359375,-638.7255859375,-552.68994140625,35.4436645507813,-638.7255859375,-574.592529296875,53.8446655273438,-638.7255859375,-554.545166015625,77.7068481445313,-638.7255859375,
- -533.8154296875,60.2907104492188,-638.7255859375,-532.0439453125,60.00634765625,-527.017578125,-551.10546875,37.3180541992188,-527.017578125,-573.00830078125,55.7191772460938,-527.017578125,-552.961181640625,79.5813598632813,-527.017578125,-532.231689453125,62.165283203125,-527.017578125,-253.8388671875,397.892028808594,-452.14599609375,-263.6318359375,422.856323242188,-452.14599609375,-370.186767578125,258.831359863281,-475.3505859375,-370.186767578125,258.831359863281,-457.98193359375,-370.8037109375,260.477966308594,-456.44970703125,-380.30419921875,285.790466308594,-456.44970703125,-380.30419921875,285.790466308594,-476.8828125,-370.8037109375,260.477966308594,-476.8828125,-444.392578125,171.466186523438,-477.94921875,-444.392578125,171.466186523438,-460.58056640625,-444.9990234375,173.127014160156,-459.04833984375,-454.31494140625,198.658142089844,-459.04833984375,-454.31494140625,198.658142089844,-479.4814453125,-444.9990234375,173.127014160156,-479.4814453125,-88.51171875,641.361206054688,-288.51171875,-81.77978515625,635.704345703125,-281.77978515625,-115.7939453125,608.8896484375,-315.7939453125,-109.060546875,603.232299804688,-309.06103515625,-129.732421875,578.627685546875,-329.732421875,-136.46533203125,584.284912109375,-336.465576171875,-109.42724609375,602.797241210938,-309.42724609375,-116.16015625,608.454467773438,-316.16015625,-137.02880859375,583.614501953125,-337.02880859375,-130.29541015625,577.95703125,-330.29541015625,-162.93505859375,552.77978515625,-362.93505859375,-156.201171875,547.12255859375,-356.201171875,-163.5498046875,552.048706054688,-363.5498046875,-156.8154296875,546.391723632813,-356.8154296875,-186.5791015625,524.638061523438,-386.57958984375,-179.84375,518.980346679688,-379.84423828125,-186.822265625,524.34716796875,-386.822265625,-180.0888671875,518.689697265625,-380.0888671875,-32.08837890625,708.436279296875,-232.08837890625,-25.35595703125,702.778930664063,-225.35595703125,-32.7041015625,707.705322265625,-232.7041015625,-25.9677734375,702.048095703125,-225.9677734375,-55.7333984375,680.29443359375,-255.7333984375,
- -48.99951171875,674.636962890625,-248.99951171875,-55.97705078125,680.004028320313,-255.97705078125,-49.2431640625,674.346069335938,-249.2431640625,-88.1044921875,641.7626953125,-288.1044921875,-81.37109375,636.10498046875,-281.37109375,-196.64599609375,499.095458984375,-396.646240234375,-193.80517578125,458.00537109375,-393.80517578125,-175.724609375,479.524658203125,-375.724609375,-176.0859375,479.095947265625,-376.0859375,-195.96533203125,457.817626953125,-395.96533203125,-175.91357421875,481.681762695313,-375.91357421875,-176.0859375,481.822021484375,-376.0859375,-120.42529296875,555.588012695313,-320.42529296875,-140.01611328125,534.734741210938,-340.01611328125,-139.31298828125,571.119873046875,-339.31298828125,-138.4580078125,534.254516601563,-338.4580078125,-118.77734375,595.058349609375,-318.77734375,-124.4921875,588.409301757813,-324.4921875,-118.80859375,559.803466796875,-318.808837890625,-118.5693359375,574.071166992188,-318.569580078125,0,746.99365234375,-200,0,733.25146484375,-200,-219.47119140625,485.487060546875,-419.47119140625,-212.7373046875,479.830200195313,-412.7373046875,-246.7529296875,453.015869140625,-446.7529296875,-240.0185546875,447.35791015625,-440.0185546875,-260.6904296875,422.753662109375,-460.6904296875,-267.42431640625,428.41015625,-467.424072265625,-240.3837890625,446.923217773438,-440.3837890625,-247.1181640625,452.580688476563,-447.11865234375,-267.98828125,427.740356445313,-467.98828125,-261.2529296875,422.083129882813,-461.25341796875,-293.89453125,396.905029296875,-493.89453125,-287.15966796875,391.248168945313,-487.159912109375,-294.5068359375,396.174743652344,-494.5068359375,-287.7724609375,390.517944335938,-487.77294921875,-317.5361328125,368.763793945313,-517.5361328125,-310.80322265625,363.106323242188,-510.80322265625,-317.9541015625,368.265869140625,-517.9541015625,-311.22119140625,362.608154296875,-511.22119140625,-350.08251953125,330.024658203125,-550.08251953125,-343.349365234375,324.366943359375,-543.349609375,-350.603515625,329.405517578125,-550.603515625,-343.86865234375,323.748718261719,-543.869140625,
- -377.884765625,296.933349609375,-577.884765625,-371.150390625,291.276550292969,-571.150390625,-391.82275390625,266.671630859375,-591.82275390625,-398.55615234375,272.328552246094,-598.556640625,-371.5166015625,290.841674804688,-571.51708984375,-378.24951171875,296.498779296875,-578.24951171875,-399.11865234375,271.65869140625,-599.118896484375,-392.38525390625,266.001159667969,-592.3857421875,-425.025390625,240.823669433594,-625.025390625,-418.29150390625,235.166259765625,-618.2919921875,-425.638671875,240.093139648438,-625.63916015625,-418.9052734375,234.436157226563,-618.9052734375,-448.66943359375,212.681640625,-648.6689453125,-441.9345703125,207.025085449219,-641.9345703125,-449.0166015625,212.267639160156,-649.016845703125,-442.283935546875,206.609741210938,-642.2841796875,-481.14501953125,174.026245117188,-681.14501953125,-474.412109375,168.36865234375,-674.412109375,-481.66552734375,173.407104492188,-681.66552734375,-474.93115234375,167.750244140625,-674.93115234375,-508.947265625,140.934997558594,-708.947021484375,-502.212646484375,135.2783203125,-702.212646484375,-522.885009765625,110.67333984375,-722.88525390625,-529.618408203125,116.330688476563,-729.61865234375,-502.5791015625,134.84326171875,-702.5791015625,-509.3115234375,140.500732421875,-709.3115234375,-530.181640625,115.66015625,-730.181640625,-523.447265625,110.003051757813,-723.447509765625,-556.087158203125,84.825439453125,-756.087158203125,-549.3544921875,79.168701171875,-749.3544921875,-556.70166015625,84.094970703125,-756.70166015625,-549.9677734375,78.4378662109375,-749.968017578125,-579.7314453125,56.6832885742188,-779.731201171875,-572.99755859375,51.0267333984375,-772.99755859375,-580.2255859375,56.0950317382813,-780.2255859375,-573.491943359375,50.438232421875,-773.4921875,-574.12841796875,54.53515625,-774.12841796875,-554.149169921875,78.32568359375,-754.1494140625,-216.69287109375,475.233520507813,-416.69287109375,-377.201904296875,240.376037597656,-577.201904296875,-399.21240234375,257.410705566406,-599.21240234375,-379.942626953125,280.41259765625,-579.9423828125,
- -359.896728515625,263.244934082031,-559.89697265625,-359.7158203125,261.135009765625,-559.71533203125,-379.284912109375,240.223022460938,-579.284912109375,-533.183837890625,58.8259887695313,-733.18408203125,-552.287353515625,36.0731811523438,-752.287353515625,-533.37158203125,60.98486328125,-733.371826171875,-252.25146484375,399.825561523438,-452.251953125,-271.728515625,374.50146484375,-471.728515625,-253.34130859375,396.625305175781,-453.34130859375,-252.865234375,435.971923828125,-452.86572265625,-263.6318359375,422.856323242188,-463.632080078125,-253.6962890625,395.685668945313,-453.696533203125,-272.92138671875,411.94287109375,-472.921630859375,-273.294921875,375.034362792969,-473.294921875,-585.4560546875,36.593994140625,-785.4560546875,-585.3623046875,-0.065673828125,-785.3623046875,-549.94384765625,36.684814453125,-749.94384765625,-548.40771484375,35.1563720703125,-748.40771484375,-549.8505859375,0.02490234375,-749.8505859375,-548.322265625,1.5611572265625,-748.322265625,-561.291748046875,70.375732421875,-584.04248046875,-561.291748046875,70.375732421875,-604.4755859375,-552.24853515625,44.5200805664063,-584.04248046875,-551.65966796875,42.838134765625,-585.57470703125,-551.65966796875,42.838134765625,-602.943359375,-552.24853515625,44.5200805664063,-604.4755859375,-444.392578125,171.466186523438,-605.5419921875,-444.392578125,171.466186523438,-588.17333984375,-444.9990234375,173.127014160156,-586.64111328125,-454.31494140625,198.658142089844,-586.64111328125,-454.31494140625,198.658142089844,-607.07421875,-444.9990234375,173.127014160156,-607.07421875,-424.9580078125,194.347229003906,-604.861328125,-403.984375,221.414184570313,-585.20458984375,-405.626953125,217.1064453125,-586.81591796875,-404.93896484375,256.787963867188,-584.9072265625,-427.68310546875,230.011779785156,-606.13916015625,-426.725830078125,194.640258789063,-606.434326171875,-400,212.267639160156,-649.016845703125,-400,206.609802246094,-642.283935546875,-400,174.026245117188,-681.14501953125,-400,168.368591308594,-674.412109375,-400,173.407165527344,-681.66552734375,
- -400,167.750244140625,-674.93115234375,-400,140.934997558594,-708.947021484375,-400,135.2783203125,-702.212646484375,-400,110.67333984375,-722.88525390625,-400,116.330688476563,-729.618408203125,-400,140.500793457031,-709.3115234375,-400,134.843322753906,-702.5791015625,-400,115.66015625,-730.181640625,-400,110.003112792969,-723.447509765625,-400,84.825439453125,-756.087158203125,-400,79.168701171875,-749.3544921875,-400,84.094970703125,-756.70166015625,-400,78.4379272460938,-749.968017578125,-400,56.6832885742188,-779.731201171875,-400,51.0267333984375,-772.99755859375,-400,56.094970703125,-780.2255859375,-400,50.438232421875,-773.4921875,-400,6.8597412109375,-821.590576171875,-400,1.202392578125,-814.85693359375,-400,55.0053100585938,-773.8505859375,-400,36.6043090820313,-751.947509765625,-400,78.867431640625,-753.802734375,-400,61.4514770507813,-733.073486328125,-400,59.2925415039063,-732.885498046875,-459.21875,59.2925415039063,-732.885498046875,-459.21875,36.6043090820313,-751.947509765625,-459.21875,55.0053100585938,-773.8505859375,-459.21875,78.867431640625,-753.802734375,-459.21875,61.4514770507813,-733.073486328125,-400,36.593994140625,-785.4560546875,-400,-0.065673828125,-785.3623046875,-400,35.1563720703125,-748.40771484375,-400,36.684814453125,-749.94384765625,-400,1.5611572265625,-748.322265625,-400,0.02490234375,-749.8505859375,0,641.361206054688,-288.51171875,0,635.704345703125,-281.77978515625,0,608.8896484375,-315.7939453125,0,603.232299804688,-309.06103515625,0,578.627685546875,-329.732421875,0,584.284912109375,-336.46533203125,0,608.454467773438,-316.16015625,0,602.797241210938,-309.42724609375,0,583.614501953125,-337.02880859375,0,577.95703125,-330.29541015625,0,552.77978515625,-362.93505859375,0,547.12255859375,-356.201171875,0,552.048706054688,-363.5498046875,0,546.391723632813,-356.8154296875,0,524.638061523438,-386.57958984375,0,518.980346679688,-379.84423828125,0,524.34716796875,-386.822265625,0,518.689697265625,-380.0888671875,0,486.105834960938,-418.951171875,0,480.4482421875,-412.21826171875,
- 0,485.487060546875,-419.47119140625,0,479.830200195313,-412.7373046875,0,453.015625,-446.75341796875,0,447.35791015625,-440.0185546875,0,422.753479003906,-460.6904296875,0,428.410522460938,-467.423828125,0,452.580688476563,-447.11865234375,0,446.923217773438,-440.3837890625,0,427.740356445313,-467.98828125,0,422.083190917969,-461.25341796875,0,396.905029296875,-493.89453125,0,391.248229980469,-487.16015625,0,396.174743652344,-494.5068359375,0,390.517944335938,-487.77294921875,0,368.763793945313,-517.536376953125,0,363.106262207031,-510.80322265625,0,368.265808105469,-517.9541015625,0,362.608215332031,-511.22119140625,0,330.024658203125,-550.08251953125,0,324.367004394531,-543.349365234375,0,329.405517578125,-550.603515625,0,323.748718261719,-543.868896484375,0,296.933349609375,-577.885009765625,0,291.276550292969,-571.150390625,0,266.671630859375,-591.82275390625,0,272.328552246094,-598.556396484375,0,296.498718261719,-578.24951171875,0,290.841674804688,-571.516845703125,0,271.65869140625,-599.118896484375,0,266.001159667969,-592.385498046875,0,240.823669433594,-625.025390625,0,235.166259765625,-618.29150390625,0,240.093139648438,-625.638916015625,0,234.436157226563,-618.9052734375,0,212.681640625,-648.669189453125,0,207.025085449219,-641.9345703125,0,212.267639160156,-649.016845703125,0,206.609802246094,-642.283935546875,0,174.026245117188,-681.14501953125,0,168.368591308594,-674.412109375,0,173.407165527344,-681.66552734375,0,167.750244140625,-674.93115234375,0,140.934997558594,-708.947021484375,0,135.2783203125,-702.212646484375,0,110.67333984375,-722.88525390625,0,116.330688476563,-729.618408203125,0,140.500793457031,-709.3115234375,0,134.843322753906,-702.5791015625,0,115.66015625,-730.181640625,0,110.003112792969,-723.447509765625,0,84.825439453125,-756.087158203125,0,79.168701171875,-749.3544921875,0,84.094970703125,-756.70166015625,0,78.4379272460938,-749.968017578125,0,56.6832885742188,-779.731201171875,0,51.0267333984375,-772.99755859375,0,56.0950927734375,-780.2255859375,0,50.438232421875,-773.4921875,0,6.8597412109375,-821.590576171875,
- 0,1.202392578125,-814.85693359375,0,708.436279296875,-232.08837890625,0,702.778930664063,-225.35595703125,0,707.705322265625,-232.7041015625,0,702.048095703125,-225.9677734375,0,680.29443359375,-255.7333984375,0,674.637084960938,-248.99951171875,0,680.004028320313,-255.97705078125,0,674.346069335938,-249.2431640625,0,641.7626953125,-288.1044921875,0,636.10498046875,-281.37109375,0,475.233520507813,-416.69287109375,0,499.095458984375,-396.64599609375,0,257.907348632813,-599.141357421875,0,281.768798828125,-579.093505859375,0,52.9227905273438,-771.371826171875,0,36.6043090820313,-751.947509765625,0,76.806396484375,-751.349609375,0,457.817626953125,-395.96533203125,0,458.00537109375,-393.80517578125,0,481.679443359375,-375.916015625,0,479.520141601563,-375.7294921875,0,240.491516113281,-578.4111328125,0,240.679077148438,-576.25244140625,0,264.353271484375,-558.3642578125,0,262.194396972656,-558.176513671875,0,61.4514770507813,-733.073486328125,0,59.2925415039063,-732.885498046875,-140.986328125,458.933227539063,-392.59423828125,-140.986328125,480.993530273438,-374.06103515625,-140.986328125,483.207275390625,-374.25341796875,-140.986328125,501.065063476563,-395.5078125,-140.986328125,476.598510742188,-416.06494140625,-140.986328125,458.740600585938,-394.80810546875,-23.9140625,479.520141601563,-375.7294921875,-23.9140625,458.00537109375,-393.80517578125,-23.9140625,457.817626953125,-395.96533203125,-23.9140625,475.233520507813,-416.69287109375,-23.9140625,499.095458984375,-396.64599609375,-23.9140625,481.679443359375,-375.916015625,-181.3828125,261.785827636719,-559.32568359375,-181.3828125,240.965698242188,-576.81689453125,-181.3828125,240.784240722656,-578.906494140625,-181.3828125,257.637451171875,-598.96630859375,-181.3828125,280.727783203125,-579.566650390625,-181.3828125,263.874938964844,-559.50634765625,-53.02587890625,263.255187988281,-556.971435546875,-53.02587890625,241.940246582031,-574.87890625,-53.02587890625,241.754455566406,-577.018310546875,-53.02587890625,259.008361816406,-597.554931640625,-53.02587890625,282.647399902344,-577.693359375,
- -53.02587890625,265.39404296875,-557.15673828125,-301.23291015625,260.461669921875,-560.119140625,-301.23291015625,239.259155273438,-577.931640625,-301.23291015625,239.074279785156,-580.0595703125,-301.23291015625,256.237060546875,-600.48779296875,-301.23291015625,279.751220703125,-580.731689453125,-301.23291015625,262.589111328125,-560.30322265625,-161.2744140625,58.1318359375,-733.6279296875,-161.2744140625,35.4436645507813,-752.68994140625,-161.2744140625,53.8446655273438,-774.592529296875,-161.2744140625,77.7068481445313,-754.545166015625,-161.2744140625,60.2907104492188,-733.8154296875,-272.982421875,60.00634765625,-732.0439453125,-272.982421875,37.3180541992188,-751.10546875,-272.982421875,55.7191772460938,-773.00830078125,-272.982421875,79.5813598632813,-752.961181640625,-272.982421875,62.165283203125,-732.231689453125,-59.21875,59.2925415039063,-732.885498046875,-59.21875,36.6043090820313,-751.947509765625,-59.21875,55.0053100585938,-773.8505859375,-59.21875,78.867431640625,-753.802734375,-59.21875,61.4514770507813,-733.073486328125,0,36.593994140625,-785.4560546875,0,-0.065673828125,-785.3623046875,0,35.1563720703125,-748.40771484375,0,36.684814453125,-749.94384765625,0,1.5611572265625,-748.322265625,0,0.02490234375,-749.8505859375,-399.999755859375,256.9375,-600.00048828125,-378.76513671875,240.186828613281,-578.765380859375,-358.983154296875,261.474853515625,-558.9833984375,-193.568359375,457.838623046875,-393.56884765625,-175.26025390625,482.001098632813,-375.2607421875,-196.43994140625,498.52685546875,-396.43994140625,-216.41357421875,474.2392578125,-416.4130859375,-175.06640625,479.8388671875,-375.06640625,-195.7509765625,457.60693359375,-395.7509765625,-376.6494140625,240.343383789063,-576.6494140625,-399.152587890625,257.893005371094,-599.15283203125,-379.434326171875,281.348693847656,-579.4345703125,-359.16552734375,263.623901367188,-559.166015625,-343.550537109375,70.375732421875,-761.2919921875,-323.117431640625,70.375732421875,-761.2919921875,-76.8837890625,70.375732421875,-761.2919921875,-56.4501953125,70.375732421875,-761.2919921875,
- -212.9541015625,52.2416381835938,-774.25634765625,-187.0458984375,52.2416381835938,-774.25634765625,-343.55029296875,44.5200805664063,-752.24853515625,-342.01806640625,42.838134765625,-751.65966796875,-324.6494140625,42.838134765625,-751.65966796875,-323.1171875,44.5200805664063,-752.24853515625,-76.88330078125,44.5200805664063,-752.24853515625,-75.35107421875,42.838134765625,-751.65966796875,-57.982421875,42.838134765625,-751.65966796875,-56.4501953125,44.5200805664063,-752.24853515625,-212.9541015625,13.3156127929688,-750.28125,-211.421875,11.941162109375,-749.43408203125,-188.578125,11.941162109375,-749.43408203125,-187.0458984375,13.3156127929688,-750.28125,-182.697265625,373.18505859375,-458.7373046875,-182.697265625,398.412841796875,-483.43212890625,-210.10205078125,398.412841796875,-483.43212890625,-210.10205078125,373.18505859375,-458.7373046875,-208.4814453125,371.840759277344,-457.865234375,-184.31787109375,371.840759277344,-457.865234375,-188.80908203125,249.074829101563,-550.22119140625,-211.19091796875,249.074829101563,-550.22119140625,-212.6923828125,250.429016113281,-551.0849609375,-212.6923828125,288.782531738281,-575.541015625,-187.3076171875,288.782531738281,-575.541015625,-187.3076171875,250.429016113281,-551.0849609375,-190.89990234375,158.39111328125,-630.283203125,-190.89990234375,194.762390136719,-654.53564453125,-216.80810546875,194.762390136719,-654.53564453125,-216.80810546875,158.39111328125,-630.283203125,-215.27587890625,157.028259277344,-629.427734375,-192.43212890625,157.028259277344,-629.427734375,-324.649169921875,258.831359863281,-570.1865234375,-342.017822265625,258.831359863281,-570.1865234375,-343.55029296875,260.477966308594,-570.8037109375,-343.55029296875,285.790466308594,-580.30419921875,-323.1171875,285.790466308594,-580.30419921875,-323.1171875,260.477966308594,-570.8037109375,-322.05078125,171.466186523438,-644.392578125,-339.41943359375,171.466186523438,-644.392578125,-340.95166015625,173.127014160156,-644.9990234375,-340.95166015625,198.658142089844,-654.31494140625,-320.5185546875,198.658142089844,-654.31494140625,
- -320.5185546875,173.127014160156,-644.9990234375,-57.982421875,255.490356445313,-572.9931640625,-75.3505859375,255.490356445313,-572.9931640625,-76.88330078125,257.137512207031,-573.6103515625,-76.8837890625,282.458312988281,-583.103515625,-56.4501953125,282.458312988281,-583.103515625,-56.4501953125,257.137512207031,-573.6103515625,-77.85693359375,201.336547851563,-618.3310546875,-60.48828125,201.336547851563,-618.3310546875,-58.9560546875,202.992248535156,-618.94140625,-58.9560546875,228.444213867188,-628.32470703125,-79.38916015625,228.444213867188,-628.32470703125,-79.388671875,202.992248535156,-618.94140625,-59.97314453125,364.356750488281,-480.25146484375,-77.8974609375,364.356750488281,-480.25146484375,-79.47900390625,366.037963867188,-480.90478515625,-79.47900390625,391.882995605469,-490.939453125,-58.3916015625,391.882995605469,-490.939453125,-58.3916015625,366.037963867188,-480.90478515625,-75.35107421875,470.547607421875,-392.30810546875,-57.982421875,470.547607421875,-392.30810546875,-56.4501953125,472.159423828125,-392.95361328125,-56.4501953125,496.939331054688,-402.90087890625,-76.88330078125,496.939331054688,-402.90087890625,-76.88330078125,472.159423828125,-392.95361328125,-79.94921875,563.130615234375,-314.0498046875,-63.1552734375,563.130615234375,-314.0498046875,-61.67431640625,564.67431640625,-314.68798828125,-61.67431640625,588.409301757813,-324.4921875,-81.43017578125,588.409301757813,-324.4921875,-81.4306640625,564.67431640625,-314.68798828125,-73.666015625,315.768371582031,-523.400390625,-56.8486328125,315.768371582031,-523.400390625,-55.365234375,317.353759765625,-524.00634765625,-55.365234375,341.723876953125,-533.322265625,-75.1494140625,341.723876953125,-533.322265625,-75.1494140625,317.353759765625,-524.00634765625,-210.26220703125,404.697387695313,-432.261474609375,-185.5537109375,432.045654296875,-407.2822265625,-184.05322265625,436.234985351563,-405.7646484375,-184.67431640625,490.107788085938,-406.392578125,-210.4111328125,459.138305664063,-432.412109375,-208.6767578125,404.2216796875,-430.659423828125,
- -325.439453125,284.068359375,-548.705078125,-343.684814453125,264.770141601563,-567.150146484375,-342.185546875,264.179260253906,-565.634521484375,-344.02294921875,300.841735839844,-567.492431640625,-324.324462890625,324.237670898438,-547.57763671875,-323.984619140625,288.1689453125,-547.233642578125,-79.43603515625,579.912109375,-299.99755859375,-60.26025390625,605.390991210938,-280.611328125,-59.826171875,639.973510742188,-280.1728515625,-80.58349609375,615.557983398438,-301.157958984375,-80.95556640625,580.391479492188,-301.533935546875,-61.84765625,601.147338867188,-282.2158203125,-153.81689453125,457.0615234375,-385.212890625,-169.45556640625,507.624145507813,-400.8515625,-194.5185546875,507.624145507813,-375.78857421875,-178.8798828125,457.0615234375,-360.14990234375,-176.84375,455.27587890625,-361.0791015625,-154.74609375,455.27587890625,-383.1767578125,-253.42578125,324.642700195313,-492.77734375,-268.796875,369.210998535156,-508.14794921875,-295.80712890625,369.210998535156,-481.1376953125,-280.4365234375,324.642700195313,-465.7666015625,-278.29638671875,322.845886230469,-466.8212890625,-254.48046875,322.845886230469,-490.63720703125,-354.98779296875,218.966430664063,-579.435546875,-377.0478515625,218.966430664063,-557.37548828125,-379.061767578125,220.773315429688,-556.4306640625,-394.187744140625,271.947082519531,-571.556640625,-369.168212890625,271.947082519531,-596.576171875,-354.042236328125,220.773315429688,-581.4501953125,-438.362060546875,124.022644042969,-659.466796875,-453.279052734375,168.253173828125,-674.3837890625,-478.814697265625,168.253173828125,-648.8486328125,-463.897705078125,124.022644042969,-633.931640625,-461.86083984375,122.206909179688,-634.9150390625,-439.345703125,122.206909179688,-657.43017578125,-330.642578125,246.116577148438,-558.22607421875,-352.8115234375,246.116577148438,-536.05712890625,-354.834716796875,247.920776367188,-535.10546875,-370.02001953125,286.034057617188,-550.291015625,-344.8759765625,286.034057617188,-575.43505859375,-329.690673828125,247.920776367188,-560.25,
- -544.27734375,6.61224365234375,-768.45263671875,-543.28564453125,8.43865966796875,-770.48046875,-557.94921875,37.5536499023438,-785.14404296875,-583.484375,37.5536499023438,-759.60888671875,-568.82080078125,8.43865966796875,-744.9453125,-566.79248046875,6.61224365234375,-745.9375,0.0087890625,626.379638671875,-222.877685546875,0.0087890625,704.548217773438,-223.645263671875,0.0087890625,733.265014648438,-171.42041015625,0.0087890625,650.26025390625,-173.6533203125,0.0087890625,654.40283203125,-170.55126953125,0.0087890625,625.563842773438,-219.79248046875,-574.25634765625,52.2416381835938,-187.0458984375,-574.25634765625,52.2416381835938,-212.9541015625,-550.281005859375,13.3156127929688,-187.0458984375,-549.43408203125,11.941162109375,-188.578125,-549.43408203125,11.941162109375,-211.421875,-550.281005859375,13.3156127929688,-212.9541015625,-157.66455078125,480.643798828125,-214.7158203125,-182.62060546875,518.40185546875,-214.7158203125,-182.62060546875,518.40185546875,-189.287109375,-157.66455078125,480.643798828125,-189.287109375,-156.78173828125,479.310546875,-190.791015625,-156.78173828125,479.310546875,-213.2119140625,-258.7373046875,360.343627929688,-211.619140625,-283.43212890625,398.412841796875,-211.619140625,-283.43212890625,398.412841796875,-184.21435546875,-258.7373046875,360.343627929688,-184.21435546875,-257.865234375,358.999328613281,-185.8349609375,-257.865234375,358.999328613281,-209.99853515625,-350.22119140625,249.074829101563,-211.19091796875,-350.22119140625,249.074829101563,-188.80908203125,-351.0849609375,250.429016113281,-187.3076171875,-375.540771484375,288.782531738281,-187.3076171875,-375.540771484375,288.782531738281,-212.6923828125,-351.0849609375,250.429016113281,-212.6923828125,-430.283447265625,156.165100097656,-212.75390625,-454.53564453125,194.762390136719,-212.75390625,-454.53564453125,194.762390136719,-186.845703125,-430.283447265625,156.165100097656,-186.845703125,-429.427490234375,154.80224609375,-188.3779296875,-429.427490234375,154.80224609375,-211.2216796875,-327.996337890625,275.527221679688,-212.78173828125,
- -327.996337890625,275.527221679688,-190.2890625,-328.86181640625,276.878845214844,-188.7802734375,-353.37548828125,315.163940429688,-188.7802734375,-353.37548828125,315.163940429688,-214.291015625,-328.86181640625,276.878845214844,-214.291015625,-24.38720703125,639.03662109375,-213.439453125,-24.21630859375,704.76171875,-213.195556640625,-5.9697265625,726.227783203125,-187.1298828125,-7.2744140625,656.99365234375,-188.992919921875,-6.18798828125,660.665283203125,-187.441650390625,-23.318359375,637.925415039063,-211.913330078125,-630.828857421875,-4.1412353515625,0,-630.830322265625,-4.14068603515625,-400,-636.330078125,0.4791259765625,0,-636.330810546875,0.47930908203125,-400,-80.189453125,651.485717773438,0,-85.69091796875,656.106323242188,0,-169.44970703125,545.206787109375,0,-174.95068359375,549.8271484375,0,-258.7099609375,438.928100585938,0,-264.2119140625,443.548461914063,0,-277.41357421875,426.873168945313,-405.55810546875,-258.7099609375,438.928100585938,-400,-347.968505859375,332.6494140625,0,-353.470458984375,337.269714355469,0,-362.716796875,326.092590332031,-391.9580078125,-347.968505859375,332.6494140625,-400,-437.228515625,226.370788574219,0,-442.72998046875,230.991149902344,0,-454.43017578125,217.145751953125,-400,-437.228515625,226.370788574219,-400,-526.489013671875,120.091918945313,0,-531.990234375,124.712463378906,0,-541.820556640625,113.079833984375,-391.35107421875,-526.489013671875,120.091918945313,-400,-636.330078125,0.4791259765625,-133.33349609375,-539.191650390625,116.349548339844,-133.6513671875,-447.8349609375,225.510559082031,-134.19873046875,-360.630859375,334.594909667969,-126.93017578125,-263.57421875,444.599609375,-139.282470703125,-180.4580078125,542.150756835938,-140.3544921875,-93.60888671875,645.427001953125,-133.51171875,-636.330078125,0.4791259765625,-266.6669921875,-534.916748046875,121.626281738281,-266.98681640625,-452.50537109375,217.798217773438,-259.166015625,-359.904541015625,330.081665039063,-275.54833984375,-274.29736328125,435.36328125,-271.69287109375,-185.05859375,536.35400390625,-268.093994140625,
- -92.7470703125,649.755615234375,-292.7470703125,0,758.1650390625,-133.33544921875,0,746.99365234375,0,0,758.1650390625,0,-630.83056640625,-4.140625,-830.8291015625,-636.330810546875,0.479248046875,-836.329833984375,-636.330078125,0.479248046875,-533.33349609375,-535.970458984375,120.255493164063,-532.180419921875,-447.8349609375,225.510559082031,-534.19873046875,-360.29248046875,332.45263671875,-560.29248046875,-636.330078125,0.479248046875,-666.6669921875,-532.253173828125,125.760559082031,-668.02880859375,-80.189453125,651.485717773438,-280.189453125,-197.57763671875,522.154174804688,-397.57763671875,-200,508.831787109375,-400,-169.44921875,545.206787109375,-369.44970703125,0,746.99365234375,-200,0,758.1650390625,-200,-272.09228515625,432.95654296875,-472.09228515625,-452.029296875,218.977661132813,-652.029296875,-533.32421875,123.020324707031,-733.800048828125,-258.7099609375,438.928100585938,-458.7099609375,-347.96826171875,332.6494140625,-547.968505859375,-437.228515625,226.370849609375,-637.228515625,-526.48876953125,120.091918945313,-726.489013671875,-400,-4.14068603515625,-830.830322265625,-400,0.47930908203125,-836.330810546875,-400,217.145751953125,-654.43017578125,-400,226.370788574219,-637.228515625,-408.64892578125,113.079833984375,-741.820556640625,-400,120.091918945313,-726.489013671875,-533.3330078125,0.47906494140625,-836.329833984375,0,-4.14013671875,-830.83154296875,0,0.47943115234375,-836.33154296875,0,656.106323242188,-285.69091796875,0,651.485717773438,-280.189453125,0,549.8271484375,-374.95068359375,0,545.206787109375,-369.44970703125,0,443.548461914063,-464.2119140625,0,438.928100585938,-458.7099609375,0,337.269714355469,-553.470458984375,0,332.6494140625,-547.968505859375,0,230.991149902344,-642.72998046875,0,226.370788574219,-637.228515625,0,124.712463378906,-731.990234375,0,120.091918945313,-726.489013671875,-266.66650390625,0.479248046875,-836.330078125,-267.8193359375,120.255493164063,-735.970458984375,-265.80126953125,225.510559082031,-647.8349609375,-273.06982421875,334.594909667969,-560.630859375,
- -133.3330078125,0.479248046875,-836.330078125,-131.97119140625,125.760559082031,-732.253173828125,-137.2236328125,220.031860351563,-650.63232421875,-126.6865234375,340.689758300781,-551.14404296875,-127.55712890625,436.523193359375,-473.13037109375,-128.31787109375,544.28857421875,-378.68017578125,-405.2744140625,276.153076171875,-605.2744140625,-400,270.697143554688,-600.000244140625,-423.80419921875,247.505859375,-617.56689453125,-427.554931640625,249.978271484375,-616.751953125,-430.39501953125,253.356689453125,-617.9208984375,-431.56396484375,256.735595703125,-620.76123046875,-430.74755859375,259.209228515625,-624.51025390625,-428.1669921875,260.114501953125,-628.16552734375,-424.5107421875,259.208740234375,-630.7490234375,-420.76123046875,256.736083984375,-631.5625,-417.92041015625,253.357666015625,-630.39404296875,-416.75244140625,249.978759765625,-627.5537109375,-417.56689453125,247.505126953125,-623.80517578125,-420.149169921875,246.600341796875,-620.147705078125,-438.22314453125,229.301513671875,-630.8955078125,-442.62841796875,232.206298828125,-629.9384765625,-445.964111328125,236.175537109375,-631.3115234375,-447.337890625,240.143798828125,-634.64794921875,-446.3798828125,243.049560546875,-639.05224609375,-443.34765625,244.113037109375,-643.34619140625,-439.052734375,243.049560546875,-646.37939453125,-434.64794921875,240.144287109375,-647.3369140625,-431.31103515625,236.175048828125,-645.96533203125,-429.9384765625,232.206787109375,-642.62744140625,-430.89599609375,229.301513671875,-638.22265625,-433.92919921875,228.238037109375,-633.927734375,-437.87939453125,246.110107421875,-646.86767578125,-443.147705078125,247.4150390625,-643.146240234375,-446.867431640625,246.110595703125,-637.879150390625,-448.04248046875,242.547119140625,-632.47509765625,-446.35791015625,237.678466796875,-628.38427734375,-442.266357421875,232.810791015625,-626.698974609375,-436.862548828125,229.247314453125,-627.874267578125,-431.59521484375,227.942626953125,-631.59375,-427.87451171875,229.246826171875,-636.86279296875,-426.700439453125,232.810791015625,-642.264892578125,
- -428.38427734375,237.678955078125,-646.357421875,-432.4765625,242.547119140625,-648.041015625,-425.376953125,259.345947265625,-632.771484375,-429.7119140625,260.419189453125,-629.710205078125,-432.77197265625,259.345458984375,-625.37744140625,-433.739501953125,256.413330078125,-620.929443359375,-432.35302734375,252.407470703125,-617.562744140625,-428.986328125,248.40185546875,-616.17626953125,-424.5390625,245.468994140625,-617.14453125,-420.20556640625,244.396240234375,-620.203857421875,-417.144287109375,245.469482421875,-624.538818359375,-416.177978515625,248.40185546875,-628.984619140625,-417.562744140625,252.406982421875,-632.353515625,-420.93115234375,256.413330078125,-633.73779296875,-455.731201171875,208.93408203125,-648.806640625,-459.89306640625,211.679443359375,-647.9013671875,-463.04443359375,215.428955078125,-649.199462890625,-464.342529296875,219.178955078125,-652.350830078125,-463.437744140625,221.923583984375,-656.51318359375,-460.572021484375,222.928466796875,-660.570556640625,-456.513671875,221.923828125,-663.436767578125,-452.35205078125,219.178466796875,-664.34228515625,-449.199462890625,215.428466796875,-663.044921875,-447.902587890625,211.678955078125,-659.892822265625,-448.80712890625,208.934326171875,-655.730224609375,-451.67333984375,207.9296875,-651.671875,-455.3642578125,225.364501953125,-664.3505859375,-460.6318359375,226.668701171875,-660.63037109375,-464.3515625,225.363525390625,-655.36474609375,-465.52685546875,221.800537109375,-649.95947265625,-463.84228515625,216.931884765625,-645.869140625,-459.75048828125,212.064697265625,-644.18310546875,-454.3466796875,208.500244140625,-645.35986328125,-449.07958984375,207.196533203125,-649.078125,-445.359375,208.500732421875,-654.345703125,-444.1845703125,212.064697265625,-659.7490234375,-445.868408203125,216.932373046875,-663.841796875,-449.9609375,221.800537109375,-665.525390625,-465.96142578125,195.697509765625,-658.6337890625,-470.36669921875,198.602294921875,-657.6767578125,-473.7021484375,202.571533203125,-659.04931640625,-475.07568359375,206.539794921875,-662.3857421875,
- -474.11767578125,209.445556640625,-666.7900390625,-471.085693359375,210.509033203125,-671.08447265625,-466.79052734375,209.445556640625,-674.1171875,-462.3857421875,206.540283203125,-675.07470703125,-459.049072265625,202.571044921875,-673.70361328125,-457.6767578125,198.602783203125,-670.36572265625,-458.63427734375,195.697509765625,-665.9609375,-461.66748046875,194.634033203125,-661.666015625,-465.885009765625,212.732177734375,-675.410400390625,-471.46875,214.114501953125,-671.46728515625,-475.4111328125,212.731201171875,-665.8857421875,-476.656982421875,208.954833984375,-660.156005859375,-474.871337890625,203.794677734375,-655.81884765625,-470.5341796875,198.634521484375,-654.033203125,-464.805908203125,194.856201171875,-655.2802734375,-459.22314453125,193.474365234375,-659.2216796875,-455.27978515625,194.857177734375,-664.80517578125,-454.034912109375,198.634521484375,-670.532470703125,-455.819580078125,203.794189453125,-674.87158203125,-460.15771484375,208.954833984375,-676.6552734375,-479.05126953125,179.536865234375,-672.126953125,-483.2138671875,182.281494140625,-671.2216796875,-486.365234375,186.03125,-672.52001953125,-487.6630859375,189.78125,-675.6708984375,-486.7578125,192.526123046875,-679.83349609375,-483.892578125,193.530517578125,-683.89111328125,-479.83349609375,192.526123046875,-686.757568359375,-475.671875,189.78125,-687.662109375,-472.5205078125,186.03076171875,-686.36572265625,-471.22265625,182.281494140625,-683.212890625,-472.126953125,179.536865234375,-679.051025390625,-474.993896484375,178.531494140625,-674.9921875,-478.21142578125,196.52734375,-687.19873046875,-483.479736328125,197.831787109375,-683.478271484375,-487.198486328125,196.52734375,-678.211669921875,-488.37451171875,192.96337890625,-672.80712890625,-486.690185546875,188.094970703125,-668.71630859375,-482.59814453125,183.227294921875,-667.03076171875,-477.31396484375,179.866455078125,-668.3271484375,-472.04736328125,178.56201171875,-672.0458984375,-468.32666015625,179.866455078125,-677.31396484375,-467.031982421875,183.2275390625,-682.596923828125,
- -468.71630859375,188.095703125,-686.689453125,-472.808349609375,192.963623046875,-688.373291015625,-494.87646484375,162.078369140625,-687.54833984375,-499.281982421875,164.98291015625,-686.5908203125,-502.6171875,168.952392578125,-687.9638671875,-503.9912109375,172.920654296875,-691.30029296875,-503.033203125,175.82666015625,-695.705078125,-500.0009765625,176.889892578125,-699.999267578125,-495.7060546875,175.82666015625,-703.0322265625,-491.30029296875,172.921142578125,-703.990234375,-487.9638671875,168.95166015625,-702.61865234375,-486.591064453125,164.983642578125,-699.28076171875,-487.54931640625,162.078369140625,-694.87548828125,-490.582275390625,161.0146484375,-690.580810546875,-494.532470703125,178.887451171875,-703.519775390625,-499.80078125,180.19189453125,-699.79931640625,-503.51953125,178.887451171875,-694.53271484375,-504.69580078125,175.32373046875,-689.12841796875,-503.01123046875,170.454833984375,-685.03759765625,-498.91943359375,165.587646484375,-683.35205078125,-493.5146484375,162.024169921875,-684.52783203125,-488.248291015625,160.719970703125,-688.246826171875,-484.527587890625,162.024169921875,-693.514892578125,-483.35302734375,165.587646484375,-698.91796875,-485.037109375,170.455810546875,-703.01025390625,-489.12939453125,175.323974609375,-704.6943359375,-505.1630859375,149.8720703125,-697.83544921875,-509.568359375,152.77685546875,-696.87841796875,-512.90380859375,156.74609375,-698.2509765625,-514.27783203125,160.714599609375,-701.587890625,-513.31982421875,163.620361328125,-705.9921875,-510.28759765625,164.683837890625,-710.2861328125,-505.99267578125,163.620361328125,-713.3193359375,-501.587890625,160.715087890625,-714.27685546875,-498.2509765625,156.74560546875,-712.9052734375,-496.87841796875,152.77734375,-709.5673828125,-497.8359375,149.8720703125,-705.16259765625,-500.869140625,148.80859375,-700.86767578125,-504.850341796875,167.18701171875,-714.375732421875,-510.43408203125,168.570068359375,-710.4326171875,-514.375732421875,167.18701171875,-704.850341796875,-515.62255859375,163.409423828125,-699.12158203125,
- -513.837646484375,158.2490234375,-694.784423828125,-509.499755859375,153.089599609375,-692.998779296875,-503.770751953125,149.312255859375,-694.245361328125,-498.1884765625,147.9296875,-698.18701171875,-494.245361328125,149.312255859375,-703.770751953125,-493.00048828125,153.089599609375,-709.498046875,-494.78515625,158.248779296875,-713.8369140625,-499.123291015625,163.409423828125,-715.620849609375,-523.384765625,128.773193359375,-716.05712890625,-527.79052734375,131.677978515625,-715.099609375,-531.1259765625,135.647705078125,-716.47314453125,-532.499755859375,139.615966796875,-719.808837890625,-531.54150390625,142.521728515625,-724.2138671875,-528.50927734375,143.585205078125,-728.5078125,-524.21435546875,142.521728515625,-731.541015625,-519.8095703125,139.616455078125,-732.49853515625,-516.472412109375,135.647216796875,-731.127197265625,-515.10009765625,131.678466796875,-727.7890625,-516.0576171875,128.773193359375,-723.38427734375,-519.0908203125,127.710205078125,-719.08935546875,-523.580322265625,146.49169921875,-732.5673828125,-528.8486328125,147.796142578125,-728.84716796875,-532.5673828125,146.49169921875,-723.58056640625,-533.74365234375,142.927978515625,-718.176025390625,-532.05908203125,138.059326171875,-714.08544921875,-527.96728515625,133.191650390625,-712.399658203125,-522.5625,129.628173828125,-713.57568359375,-516.57470703125,127.108154296875,-716.5732421875,-513.575439453125,129.628173828125,-722.5625,-512.40087890625,133.19189453125,-727.9658203125,-514.0849609375,138.06005859375,-732.05810546875,-518.17724609375,142.927978515625,-733.7421875,-534.18505859375,114.94189453125,-727.39599609375,-538.266845703125,117.633544921875,-726.508056640625,-541.35693359375,121.310302734375,-727.78076171875,-542.629638671875,124.987060546875,-730.870849609375,-541.74169921875,127.678466796875,-734.952392578125,-538.932373046875,128.663330078125,-738.93115234375,-534.95361328125,127.678466796875,-741.740478515625,-530.871826171875,124.987060546875,-742.628662109375,-527.7822265625,121.310302734375,-741.35546875,
- -526.509033203125,117.633544921875,-738.265869140625,-527.39697265625,114.94189453125,-734.18408203125,-530.20703125,113.956298828125,-730.20556640625,-534.30224609375,132.228759765625,-743.4736328125,-539.6787109375,133.56005859375,-739.67724609375,-543.474609375,132.228759765625,-734.30126953125,-544.674560546875,128.59130859375,-728.785400390625,-542.955322265625,123.621826171875,-724.609375,-538.778564453125,118.653564453125,-722.889404296875,-533.2626953125,115.015869140625,-724.08935546875,-527.88671875,113.6845703125,-727.88525390625,-524.09033203125,115.015869140625,-733.26171875,-522.89013671875,118.6533203125,-738.77783203125,-524.609619140625,123.622314453125,-742.9541015625,-528.7861328125,128.591064453125,-744.673828125,-551.168701171875,94.247314453125,-743.841064453125,-555.573974609375,97.15185546875,-742.884033203125,-558.90966796875,101.121337890625,-744.2568359375,-560.283203125,105.089599609375,-747.59326171875,-559.3251953125,107.995361328125,-751.99755859375,-556.293212890625,109.058837890625,-756.291748046875,-551.998046875,107.995361328125,-759.32470703125,-547.59326171875,105.090087890625,-760.2822265625,-544.256591796875,101.120849609375,-758.910888671875,-542.884033203125,97.152587890625,-755.572998046875,-543.841552734375,94.247314453125,-751.168212890625,-546.87451171875,93.183837890625,-746.873046875,-550.825439453125,111.056396484375,-759.8115234375,-556.09326171875,112.361083984375,-756.091796875,-559.811767578125,111.056396484375,-750.8251953125,-560.988037109375,107.492919921875,-745.42041015625,-559.30322265625,102.624267578125,-741.330078125,-555.2119140625,97.756591796875,-739.64453125,-549.80712890625,94.193115234375,-740.82080078125,-544.54052734375,92.888916015625,-744.5390625,-540.82080078125,94.193115234375,-749.80712890625,-539.64599609375,97.756591796875,-755.21044921875,-541.32958984375,102.624755859375,-759.302734375,-545.422119140625,107.492919921875,-760.986328125,-567.42431640625,75.30419921875,-760.09619140625,-571.829345703125,78.209228515625,-759.139404296875,-575.1650390625,82.178466796875,-760.51171875,
- -576.53857421875,86.146728515625,-763.848388671875,-575.5810546875,89.052490234375,-768.2529296875,-572.54833984375,90.115966796875,-772.546875,-568.25390625,89.052490234375,-775.580078125,-563.84814453125,86.147216796875,-776.5380859375,-560.51171875,82.177978515625,-775.166015625,-559.13916015625,78.209716796875,-771.8291015625,-560.09716796875,75.30419921875,-767.42333984375,-563.1298828125,74.240966796875,-763.12841796875,-567.111328125,92.619384765625,-776.63671875,-572.69482421875,94.001953125,-772.693359375,-576.63671875,92.619384765625,-767.111328125,-577.88330078125,88.842041015625,-761.38232421875,-576.0986328125,83.681396484375,-757.04541015625,-571.760498046875,78.521728515625,-755.259765625,-566.03173828125,74.744384765625,-756.50634765625,-560.44921875,73.361572265625,-760.44775390625,-556.50634765625,74.744384765625,-766.03173828125,-555.26123046875,78.521728515625,-771.7587890625,-557.046142578125,83.681396484375,-776.097900390625,-561.3837890625,88.842041015625,-777.88134765625,-581.4130859375,59.383056640625,-774.7587890625,-585.41357421875,62.0205078125,-773.8896484375,-588.4423828125,65.625,-775.1357421875,-589.68994140625,69.228271484375,-778.166015625,-588.819580078125,71.866943359375,-782.16552734375,-586.066162109375,72.832275390625,-786.064697265625,-582.166748046875,71.866943359375,-788.818359375,-578.166015625,69.228759765625,-789.68896484375,-575.13720703125,65.624267578125,-788.4423828125,-573.8896484375,62.021240234375,-785.41259765625,-574.76025390625,59.383056640625,-781.41162109375,-577.513916015625,58.417236328125,-777.512451171875,-581.031005859375,75.559814453125,-790.018310546875,-586.29931640625,76.864501953125,-786.2978515625,-590.01806640625,75.559814453125,-781.03125,-591.194091796875,71.996337890625,-775.626708984375,-589.509521484375,67.127685546875,-771.535888671875,-585.417724609375,62.260009765625,-769.850341796875,-580.01318359375,58.696533203125,-771.0263671875,-574.74658203125,57.39208984375,-774.7451171875,-571.026123046875,58.696533203125,-780.013427734375,-569.8515625,62.260009765625,-785.41650390625,
- -571.53564453125,67.128173828125,-789.5087890625,-575.6279296875,71.996337890625,-791.19287109375,-592.86865234375,46.839111328125,-785.54052734375,-597.27392578125,49.743896484375,-784.5830078125,-600.609375,53.713134765625,-785.9560546875,-601.9833984375,57.681396484375,-789.29248046875,-601.025390625,60.587158203125,-793.697265625,-597.99267578125,61.65087890625,-797.9912109375,-593.6982421875,60.587158203125,-801.0244140625,-589.29248046875,57.681884765625,-801.982421875,-585.9560546875,53.712646484375,-800.61083984375,-584.5830078125,49.744384765625,-797.27294921875,-585.54150390625,46.839111328125,-792.86767578125,-588.57421875,45.775634765625,-788.57275390625,-592.5244140625,63.648193359375,-801.51171875,-597.792724609375,64.95263671875,-797.79150390625,-601.51171875,63.648193359375,-792.52490234375,-602.687255859375,60.084716796875,-787.120361328125,-601.003173828125,55.216064453125,-783.029541015625,-596.910888671875,50.3486328125,-781.343994140625,-591.5068359375,46.784912109375,-782.52001953125,-586.240234375,45.480712890625,-786.23876953125,-582.51953125,46.784912109375,-791.5068359375,-581.34521484375,50.348388671875,-796.91015625,-583.029296875,55.216552734375,-801.00244140625,-587.12158203125,60.084716796875,-802.6865234375,-611.833984375,22.757568359375,-803.966064453125,-616.562744140625,25.876220703125,-802.939208984375,-620.14453125,30.137451171875,-804.412353515625,-621.61865234375,34.397705078125,-807.9951171875,-620.5908203125,37.517578125,-812.72314453125,-617.3349609375,38.6591796875,-817.33349609375,-612.723876953125,37.517822265625,-820.589599609375,-607.99560546875,34.3984375,-821.6171875,-604.4130859375,30.136962890625,-820.144775390625,-602.939697265625,25.876708984375,-816.561279296875,-603.966796875,22.7578125,-811.83251953125,-607.223388671875,21.615966796875,-807.221923828125,-611.56689453125,40.831298828125,-821.361328125,-617.30810546875,42.253173828125,-817.306640625,-621.361328125,40.831298828125,-811.56640625,-622.6435546875,36.947021484375,-805.67578125,-620.806640625,31.64013671875,-801.21728515625,
- -616.347412109375,26.334716796875,-799.3798828125,-610.45654296875,22.450439453125,-800.66162109375,-604.716064453125,21.029052734375,-804.714599609375,-600.66162109375,22.450439453125,-810.4560546875,-599.38134765625,26.334716796875,-816.345703125,-601.217041015625,31.640869140625,-820.80615234375,-605.67724609375,36.947021484375,-822.6416015625,-620.8193359375,12.637451171875,-813.4912109375,-625.224853515625,15.542236328125,-812.533935546875,-628.56005859375,19.511474609375,-813.906982421875,-629.93408203125,23.479736328125,-817.2431640625,-628.975830078125,26.385498046875,-821.647705078125,-625.943603515625,27.448974609375,-825.9423828125,-621.648681640625,26.385498046875,-828.974853515625,-617.2431640625,23.480224609375,-829.93310546875,-613.90673828125,19.510986328125,-828.561279296875,-612.533935546875,15.542724609375,-825.223876953125,-613.4921875,12.637451171875,-820.818359375,-616.52490234375,11.573974609375,-816.5234375,-620.4755859375,29.44677734375,-829.462890625,-625.74365234375,30.751220703125,-825.7421875,-629.462890625,29.446044921875,-820.4765625,-630.638427734375,25.883056640625,-815.071044921875,-628.9541015625,21.014404296875,-810.98046875,-624.8623046875,16.14697265625,-809.294921875,-619.4580078125,12.582763671875,-810.4716796875,-614.191162109375,11.27880859375,-814.189697265625,-610.470703125,12.583251953125,-819.4580078125,-609.296142578125,16.14697265625,-824.861083984375,-610.97998046875,21.014892578125,-828.953125,-615.072265625,25.883056640625,-830.63720703125,-636.5087890625,-5.979736328125,-829.18115234375,-640.91455078125,-3.0751953125,-828.224609375,-644.249755859375,0.894287109375,-829.5966796875,-645.62353515625,4.862548828125,-832.93359375,-644.66552734375,7.768310546875,-837.337890625,-641.63330078125,8.831787109375,-841.6318359375,-637.33837890625,7.768310546875,-844.6650390625,-632.93359375,4.863037109375,-845.62255859375,-629.596923828125,0.893798828125,-844.25146484375,-628.22412109375,-3.074462890625,-840.9130859375,-629.181640625,-5.979736328125,-836.50830078125,-632.21484375,-7.043212890625,-832.21337890625,
- -636.16552734375,10.828857421875,-845.15283203125,-641.43359375,12.1337890625,-841.43212890625,-645.15283203125,10.828857421875,-836.166015625,-646.328125,7.265869140625,-830.7607421875,-644.6435546875,2.397216796875,-826.67041015625,-640.552001953125,-2.470458984375,-824.98486328125,-635.14794921875,-6.03466796875,-826.1611328125,-629.881103515625,-7.338623046875,-829.879638671875,-626.160888671875,-6.03466796875,-835.1484375,-624.986083984375,-2.470458984375,-840.55078125,-626.669921875,2.397705078125,-844.64306640625,-630.76220703125,7.265869140625,-846.32666015625,1.2041015625,751.808349609375,-192.55908203125,-2.54736328125,754.280517578125,-191.744384765625,-5.38720703125,757.658935546875,-192.913330078125,-6.55615234375,761.037841796875,-195.75341796875,-5.73974609375,763.511962890625,-199.502685546875,-3.15966796875,764.4169921875,-203.157958984375,0.49755859375,763.510986328125,-205.741455078125,4.24658203125,761.038330078125,-206.554931640625,7.087890625,757.659912109375,-205.386474609375,8.25537109375,754.281494140625,-202.546142578125,7.44091796875,751.807373046875,-198.7978515625,4.8583984375,750.902587890625,-195.14013671875,-13.21533203125,733.603759765625,-205.88818359375,-17.62060546875,736.508544921875,-204.930908203125,-20.9560546875,740.477783203125,-206.3037109375,-22.330078125,744.446044921875,-209.64013671875,-21.3720703125,747.352294921875,-214.044921875,-18.33984375,748.415283203125,-218.3388671875,-14.04443359375,747.352294921875,-221.3720703125,-9.64013671875,744.446533203125,-222.329345703125,-6.30322265625,740.477294921875,-220.9580078125,-4.9306640625,736.509033203125,-217.6201171875,-5.88818359375,733.603759765625,-213.215576171875,-8.92138671875,732.540283203125,-208.92041015625,-12.87158203125,750.412841796875,-221.860107421875,-18.14013671875,751.71728515625,-218.138427734375,-21.859375,750.412841796875,-212.87158203125,-23.0341796875,746.849365234375,-207.4677734375,-21.349609375,741.980712890625,-203.376708984375,-17.25830078125,737.113037109375,-201.691650390625,-11.8544921875,733.549560546875,-202.86669921875,
- -6.58740234375,732.244873046875,-206.5859375,-2.86669921875,733.549072265625,-211.855224609375,-1.6923828125,737.113037109375,-217.25732421875,-3.37646484375,741.981201171875,-221.349609375,-7.46875,746.849365234375,-223.03369140625,-0.369140625,763.648193359375,-207.76416015625,-4.70361328125,764.7216796875,-204.702880859375,-7.76416015625,763.647705078125,-200.369873046875,-8.73193359375,760.715576171875,-195.921875,-7.34521484375,756.709716796875,-192.5556640625,-3.97900390625,752.7041015625,-191.168701171875,0.46875,749.771484375,-192.13720703125,4.802734375,748.698486328125,-195.196533203125,7.86376953125,749.771728515625,-199.531494140625,8.82958984375,752.7041015625,-203.977294921875,7.4453125,756.709716796875,-207.346435546875,4.07666015625,760.715576171875,-208.73046875,-30.72314453125,713.236572265625,-223.798828125,-34.88525390625,715.981689453125,-222.893798828125,-38.03662109375,719.731689453125,-224.191650390625,-39.33447265625,723.481201171875,-227.34326171875,-38.4296875,726.22607421875,-231.50537109375,-35.56396484375,727.231201171875,-235.56298828125,-31.50537109375,726.226318359375,-238.429443359375,-27.34423828125,723.480712890625,-239.3349609375,-24.19140625,719.731201171875,-238.037841796875,-22.89501953125,715.981201171875,-234.885498046875,-23.798828125,713.23681640625,-230.722900390625,-26.66552734375,712.232177734375,-226.664306640625,-30.3564453125,729.666748046875,-239.34326171875,-35.62353515625,730.97119140625,-235.623291015625,-39.34326171875,729.666259765625,-230.357177734375,-40.5185546875,726.103271484375,-224.9521484375,-38.833984375,721.234130859375,-220.86181640625,-34.74267578125,716.366943359375,-219.176025390625,-29.33837890625,712.802490234375,-220.352294921875,-24.0712890625,711.498779296875,-224.07080078125,-20.3515625,712.803466796875,-229.33837890625,-19.1767578125,716.366943359375,-234.74169921875,-20.8603515625,721.235107421875,-238.83447265625,-24.953125,726.103271484375,-240.51806640625,-40.95361328125,700.000244140625,-233.626220703125,-45.35888671875,702.904541015625,-232.6689453125,
- -48.6943359375,706.874267578125,-234.0419921875,-50.06787109375,710.842041015625,-237.378173828125,-49.10986328125,713.748291015625,-241.78271484375,-46.07763671875,714.811767578125,-246.07666015625,-41.78271484375,713.748291015625,-249.110107421875,-37.3779296875,710.843017578125,-250.0673828125,-34.041015625,706.873291015625,-248.69580078125,-32.66845703125,702.905517578125,-245.358154296875,-33.6259765625,700.000244140625,-240.95361328125,-36.65966796875,698.936767578125,-236.658447265625,-40.876953125,717.034423828125,-250.40283203125,-46.4609375,718.417236328125,-246.45947265625,-50.40283203125,717.033935546875,-240.8779296875,-51.64892578125,713.257080078125,-235.148681640625,-49.86328125,708.096923828125,-230.81103515625,-45.52587890625,702.936767578125,-229.02587890625,-39.7978515625,699.158935546875,-230.27294921875,-34.21533203125,697.777099609375,-234.2138671875,-30.27197265625,699.159423828125,-239.7978515625,-29.02685546875,702.936767578125,-245.524658203125,-30.8115234375,708.096435546875,-249.8642578125,-35.14990234375,713.257080078125,-251.6474609375,-54.04345703125,683.839111328125,-247.119140625,-58.20556640625,686.583984375,-246.214111328125,-61.357421875,690.333740234375,-247.512451171875,-62.6552734375,694.083740234375,-250.66357421875,-61.75,696.828857421875,-254.82568359375,-58.88525390625,697.833251953125,-258.883544921875,-54.82568359375,696.828857421875,-261.75,-50.6640625,694.083740234375,-262.65478515625,-47.51220703125,690.3330078125,-261.358642578125,-46.21435546875,686.583984375,-258.205322265625,-47.119140625,683.839111328125,-254.04345703125,-49.986328125,682.833984375,-249.984619140625,-53.20361328125,700.829833984375,-262.19091796875,-58.4716796875,702.13427734375,-258.470703125,-62.1904296875,700.829833984375,-253.2041015625,-63.36669921875,697.265869140625,-247.7998046875,-61.68212890625,692.3974609375,-243.708984375,-57.59033203125,687.52978515625,-242.0234375,-52.3056640625,684.1689453125,-243.3193359375,-47.03955078125,682.864501953125,-247.038330078125,-43.31884765625,684.1689453125,-252.30615234375,
- -42.02392578125,687.530029296875,-257.58935546875,-43.7080078125,692.398193359375,-261.681640625,-47.80029296875,697.26611328125,-263.36572265625,-69.8681640625,666.380859375,-262.54052734375,-74.2744140625,669.28515625,-261.583984375,-77.60888671875,673.2548828125,-262.956298828125,-78.98388671875,677.222900390625,-266.293212890625,-78.02490234375,680.129150390625,-270.697265625,-74.9931640625,681.192138671875,-274.991455078125,-70.69775390625,680.129150390625,-278.0244140625,-66.29248046875,677.223876953125,-278.982421875,-62.9560546875,673.25390625,-277.611328125,-61.5830078125,669.2861328125,-274.27294921875,-62.541015625,666.380859375,-269.86767578125,-65.57470703125,665.317138671875,-265.572998046875,-69.52490234375,683.189697265625,-278.511962890625,-74.79248046875,684.494140625,-274.791748046875,-78.51123046875,683.189697265625,-269.525146484375,-79.6875,679.626220703125,-264.12060546875,-78.0029296875,674.757568359375,-260.02978515625,-73.9111328125,669.889892578125,-258.34423828125,-68.50634765625,666.326416015625,-259.520263671875,-63.240234375,665.022216796875,-263.2392578125,-59.52001953125,666.326416015625,-268.507080078125,-58.34521484375,669.889892578125,-273.910400390625,-60.02880859375,674.758056640625,-278.002685546875,-64.12158203125,679.626220703125,-279.686767578125,-80.1552734375,654.174560546875,-272.828125,-84.560546875,657.079345703125,-271.87060546875,-87.89599609375,661.048583984375,-273.24365234375,-89.27001953125,665.016845703125,-276.580078125,-88.31201171875,667.9228515625,-280.984619140625,-85.27978515625,668.986083984375,-285.27880859375,-80.984375,667.9228515625,-288.31201171875,-76.57958984375,665.017333984375,-289.269287109375,-73.24267578125,661.048095703125,-287.897705078125,-71.87060546875,657.079833984375,-284.56005859375,-72.82763671875,654.174560546875,-280.1552734375,-75.86083984375,653.111083984375,-275.860107421875,-79.84228515625,671.489501953125,-289.3681640625,-85.42578125,672.872314453125,-285.42529296875,-89.36767578125,671.489501953125,-279.8427734375,-90.6142578125,667.712158203125,-274.1142578125,
- -88.82958984375,662.55126953125,-269.77685546875,-84.49169921875,657.39208984375,-267.991455078125,-78.7626953125,653.614501953125,-269.23779296875,-73.18017578125,652.232177734375,-273.1796875,-69.2373046875,653.614501953125,-278.76318359375,-67.99267578125,657.39208984375,-284.490234375,-69.77783203125,662.55126953125,-288.829345703125,-74.11572265625,667.712158203125,-290.613037109375,-98.376953125,633.07568359375,-291.0498046875,-102.7822265625,635.98046875,-290.092041015625,-106.11767578125,639.949951171875,-291.465576171875,-107.49169921875,643.918212890625,-294.80126953125,-106.53369140625,646.823974609375,-299.206298828125,-103.50146484375,647.887451171875,-303.50048828125,-99.2060546875,646.823974609375,-306.533935546875,-94.80126953125,643.918701171875,-307.490966796875,-91.46435546875,639.949462890625,-306.11962890625,-90.09228515625,635.98095703125,-302.78173828125,-91.04931640625,633.07568359375,-298.377197265625,-94.0830078125,632.012451171875,-294.08203125,-98.57275390625,650.794189453125,-307.559814453125,-103.8408203125,652.098876953125,-303.839599609375,-107.5595703125,650.794189453125,-298.572998046875,-108.7353515625,647.230224609375,-293.168701171875,-107.05078125,642.36181640625,-289.077880859375,-102.958984375,637.494140625,-287.392333984375,-97.5546875,633.930908203125,-288.568115234375,-91.56689453125,631.410888671875,-291.56591796875,-88.56787109375,633.930908203125,-297.554931640625,-87.39306640625,637.494384765625,-302.958251953125,-89.0771484375,642.362548828125,-307.05078125,-93.16943359375,647.230712890625,-308.734619140625,-109.1767578125,619.244384765625,-302.388427734375,-113.2587890625,621.935791015625,-301.50048828125,-116.3486328125,625.612548828125,-302.773193359375,-117.62158203125,629.289306640625,-305.86328125,-116.7333984375,631.98095703125,-309.945068359375,-113.9248046875,632.965576171875,-313.92333984375,-109.9453125,631.98095703125,-316.733154296875,-105.86376953125,629.289306640625,-317.62109375,-102.77392578125,625.612548828125,-316.34814453125,-101.5009765625,621.935791015625,-313.25830078125,
- -102.388671875,619.244384765625,-309.176513671875,-105.19921875,618.2587890625,-305.19775390625,-109.2939453125,636.531005859375,-318.466064453125,-114.67041015625,637.862548828125,-314.66943359375,-118.46630859375,636.531005859375,-309.293701171875,-119.666015625,632.893798828125,-303.778076171875,-117.947265625,627.924560546875,-299.60205078125,-113.77001953125,622.955810546875,-297.882080078125,-108.25439453125,619.318359375,-299.08154296875,-102.87841796875,617.987060546875,-302.877685546875,-99.08203125,619.318359375,-308.25390625,-97.8818359375,622.955810546875,-313.770263671875,-99.6015625,627.924560546875,-317.94677734375,-103.77783203125,632.893798828125,-319.666259765625,-126.16064453125,598.549560546875,-318.83349609375,-130.56591796875,601.454345703125,-317.876220703125,-133.9013671875,605.423828125,-319.249267578125,-135.275390625,609.391845703125,-322.58544921875,-134.3173828125,612.298095703125,-326.990234375,-131.28515625,613.361328125,-331.2841796875,-126.98974609375,612.298095703125,-334.3173828125,-122.5849609375,609.392578125,-335.274658203125,-119.24853515625,605.423095703125,-333.9033203125,-117.8759765625,601.454833984375,-330.5654296875,-118.8330078125,598.549560546875,-326.160888671875,-121.86669921875,597.486083984375,-321.86572265625,-125.8173828125,615.35888671875,-334.804443359375,-131.0849609375,616.663330078125,-331.08447265625,-134.8037109375,615.35888671875,-325.818115234375,-135.97998046875,611.795166015625,-320.413330078125,-134.294921875,606.926513671875,-316.322998046875,-130.20361328125,602.05908203125,-314.63720703125,-124.798828125,598.495361328125,-315.813232421875,-119.5322265625,597.191162109375,-319.53173828125,-115.8125,598.495361328125,-324.799560546875,-114.6376953125,602.05908203125,-330.202880859375,-116.3212890625,606.92724609375,-334.29541015625,-120.4140625,611.795166015625,-335.979248046875,-142.416015625,579.606689453125,-335.088623046875,-146.8212890625,582.51171875,-334.131591796875,-150.1572265625,586.48095703125,-335.50439453125,-151.53076171875,590.44921875,-338.840576171875,
- -150.57275390625,593.35498046875,-343.245361328125,-147.5400390625,594.41845703125,-347.53955078125,-143.24560546875,593.35498046875,-350.572509765625,-138.84033203125,590.44970703125,-351.5302734375,-135.50341796875,586.48046875,-350.158447265625,-134.13134765625,582.51220703125,-346.8212890625,-135.0888671875,579.606689453125,-342.415771484375,-138.12158203125,578.54345703125,-338.12109375,-142.10302734375,596.921875,-351.629150390625,-147.6865234375,598.304443359375,-347.686279296875,-151.62841796875,596.921875,-342.103759765625,-152.875,593.144287109375,-336.375,-151.09033203125,587.983642578125,-332.037841796875,-146.75244140625,582.82421875,-330.25244140625,-141.0234375,579.046630859375,-331.498779296875,-135.44091796875,577.6640625,-335.440673828125,-131.498046875,579.046630859375,-341.024169921875,-130.25341796875,582.82421875,-346.7509765625,-132.0380859375,587.983642578125,-351.090087890625,-136.3759765625,593.144287109375,-352.873779296875,-156.4052734375,563.685546875,-349.75146484375,-160.40576171875,566.322998046875,-348.88232421875,-163.4345703125,569.927490234375,-350.12841796875,-164.681640625,573.530517578125,-353.158447265625,-163.8115234375,576.169189453125,-357.15771484375,-161.05810546875,577.134765625,-361.056884765625,-157.15869140625,576.169189453125,-363.810546875,-153.158203125,573.53125,-364.68115234375,-150.12890625,569.9267578125,-363.434814453125,-148.8818359375,566.323486328125,-360.40478515625,-149.75244140625,563.685546875,-356.404296875,-152.505859375,562.7197265625,-352.504638671875,-156.02294921875,579.862060546875,-365.010498046875,-161.291015625,581.166748046875,-361.290283203125,-165.009765625,579.862060546875,-356.023681640625,-166.18603515625,576.298583984375,-350.619140625,-164.50146484375,571.43017578125,-346.528564453125,-160.40966796875,566.5625,-344.8427734375,-155.0048828125,562.998779296875,-346.018798828125,-149.73828125,561.694580078125,-349.737548828125,-146.01806640625,562.998779296875,-355.005615234375,-144.84326171875,566.5625,-360.408935546875,-146.52734375,571.4306640625,-364.501220703125,
- -150.61962890625,576.298583984375,-366.185302734375,-167.8603515625,551.141357421875,-360.53271484375,-172.26611328125,554.046142578125,-359.57568359375,-175.60107421875,558.015869140625,-360.948486328125,-176.9755859375,561.983642578125,-364.28515625,-176.01708984375,564.889892578125,-368.689453125,-172.984375,565.953369140625,-372.98388671875,-168.68994140625,564.889892578125,-376.0166015625,-164.28466796875,561.984619140625,-376.974365234375,-160.94775390625,558.014892578125,-375.603271484375,-159.5751953125,554.046875,-372.26513671875,-160.533203125,551.141357421875,-367.85986328125,-163.56591796875,550.078125,-363.5654296875,-167.5166015625,567.950439453125,-376.504150390625,-172.78466796875,569.2548828125,-372.78369140625,-176.50341796875,567.950439453125,-367.517333984375,-177.67919921875,564.38720703125,-362.11279296875,-175.9951171875,559.518310546875,-358.02197265625,-171.90283203125,554.651123046875,-356.33642578125,-166.49853515625,551.087158203125,-357.512451171875,-161.23193359375,549.782958984375,-361.231201171875,-157.51171875,551.087158203125,-366.499267578125,-156.3369140625,554.650634765625,-371.902587890625,-158.02099609375,559.518798828125,-375.994873046875,-162.11328125,564.386962890625,-377.678955078125,-186.82568359375,527.06005859375,-378.958740234375,-191.5546875,530.178466796875,-377.931396484375,-195.13623046875,534.43994140625,-379.405029296875,-196.61083984375,538.700439453125,-382.9873046875,-195.58251953125,541.820068359375,-387.715576171875,-192.32666015625,542.961669921875,-392.325927734375,-187.7158203125,541.820068359375,-395.582275390625,-182.9873046875,538.700927734375,-396.60986328125,-179.4052734375,534.439453125,-395.136962890625,-177.93115234375,530.178955078125,-391.553955078125,-178.958984375,527.060302734375,-386.825439453125,-182.21533203125,525.918212890625,-382.21435546875,-186.55859375,545.133544921875,-396.353759765625,-192.2998046875,546.555419921875,-392.29931640625,-196.35302734375,545.1337890625,-386.558837890625,-197.634765625,541.249755859375,-380.668212890625,
- -195.798828125,535.942626953125,-376.2099609375,-191.3388671875,530.637451171875,-374.372314453125,-185.4482421875,526.7529296875,-375.65380859375,-179.70751953125,525.331298828125,-379.707275390625,-175.65380859375,526.752685546875,-385.44873046875,-174.37353515625,530.637451171875,-391.337646484375,-176.208984375,535.943359375,-395.798095703125,-180.66943359375,541.249755859375,-397.6337890625,-195.8115234375,516.93994140625,-388.48388671875,-200.216796875,519.8447265625,-387.5263671875,-203.55224609375,523.81396484375,-388.8994140625,-204.92626953125,527.7822265625,-392.23583984375,-203.9677734375,530.68798828125,-396.64013671875,-200.93603515625,531.75146484375,-400.9345703125,-196.640625,530.68798828125,-403.96728515625,-192.2353515625,527.78271484375,-404.92529296875,-188.8984375,523.8134765625,-403.55419921875,-187.5263671875,519.84521484375,-400.21630859375,-188.484375,516.93994140625,-395.81103515625,-191.51708984375,515.876220703125,-391.515869140625,-195.4677734375,533.749267578125,-404.455078125,-200.7353515625,535.053466796875,-400.73486328125,-204.455078125,533.74853515625,-395.46923828125,-205.63037109375,530.185302734375,-390.0634765625,-203.94580078125,525.316650390625,-385.97265625,-199.85400390625,520.449462890625,-384.287353515625,-194.4501953125,516.885009765625,-385.46435546875,-189.18310546875,515.581298828125,-389.18212890625,-185.462890625,516.8857421875,-394.4501953125,-184.2880859375,520.449462890625,-399.853515625,-185.9716796875,525.3173828125,-403.94580078125,-190.06396484375,530.185302734375,-405.62939453125,-211.5009765625,498.322509765625,-404.173583984375,-215.90673828125,501.227294921875,-403.216796875,-219.24169921875,505.19677734375,-404.589599609375,-220.61572265625,509.164794921875,-407.92578125,-219.6572265625,512.07080078125,-412.330322265625,-216.62548828125,513.13427734375,-416.624267578125,-212.330078125,512.07080078125,-419.65771484375,-207.92529296875,509.16552734375,-420.614990234375,-204.5888671875,505.196044921875,-419.24365234375,-203.21630859375,501.227783203125,-415.90576171875,
- -204.17333984375,498.322509765625,-411.501220703125,-207.20654296875,497.259033203125,-407.205810546875,-211.15771484375,515.131103515625,-420.145263671875,-216.42578125,516.436279296875,-416.42431640625,-220.14453125,515.131103515625,-411.158447265625,-221.3203125,511.568115234375,-405.75341796875,-219.63525390625,506.699462890625,-401.6630859375,-215.5439453125,501.83203125,-399.97705078125,-210.14013671875,498.267822265625,-401.15380859375,-204.873046875,496.964111328125,-404.871826171875,-201.1533203125,498.267822265625,-410.140625,-199.97802734375,501.83203125,-415.54296875,-201.662109375,506.7001953125,-419.63525390625,-205.75439453125,511.568115234375,-421.3193359375,-211.19921875,499.7763671875,-404.962646484375,-214.9501953125,502.248779296875,-404.14794921875,-217.7900390625,505.627197265625,-405.31640625,-218.958984375,509.006103515625,-408.15673828125,-218.14306640625,511.479736328125,-411.90625,-215.5625,512.38525390625,-415.56103515625,-211.90576171875,511.479248046875,-418.14453125,-208.15673828125,509.006591796875,-418.9580078125,-205.31591796875,505.628173828125,-417.7900390625,-204.14794921875,502.249755859375,-414.94921875,-204.9619140625,499.775634765625,-411.200927734375,-207.54443359375,498.870849609375,-407.543212890625,-225.61865234375,481.572021484375,-418.29150390625,-230.02392578125,484.476806640625,-417.334228515625,-233.359375,488.446044921875,-418.70703125,-234.7333984375,492.414306640625,-422.04345703125,-233.77490234375,495.320068359375,-426.4482421875,-230.74267578125,496.383544921875,-430.7421875,-226.44775390625,495.320068359375,-433.775390625,-222.04296875,492.414794921875,-434.732421875,-218.70654296875,488.445556640625,-433.361328125,-217.333984375,484.477294921875,-430.0234375,-218.291015625,481.572021484375,-425.61865234375,-221.32421875,480.508544921875,-421.32373046875,-225.27490234375,498.380615234375,-434.263671875,-230.54345703125,499.685546875,-430.5419921875,-234.2626953125,498.381103515625,-425.27490234375,-235.43798828125,494.817626953125,-419.87109375,-233.7529296875,489.948974609375,-415.7802734375,
- -229.66162109375,485.081298828125,-414.0947265625,-224.2578125,481.517822265625,-415.27001953125,-218.99072265625,480.213134765625,-418.9892578125,-215.27001953125,481.517333984375,-424.2587890625,-214.095703125,485.081298828125,-429.66064453125,-215.77978515625,489.949462890625,-433.7529296875,-219.8720703125,494.817626953125,-435.43701171875,-212.7724609375,511.616455078125,-420.16748046875,-217.1064453125,512.689697265625,-417.10595703125,-220.1669921875,511.615966796875,-412.773193359375,-221.13525390625,508.683837890625,-408.3251953125,-219.748046875,504.677978515625,-404.958984375,-216.3818359375,500.67236328125,-403.57177734375,-211.9345703125,497.739501953125,-404.54052734375,-207.60009765625,496.666748046875,-407.599609375,-204.53955078125,497.739990234375,-411.9345703125,-203.5732421875,500.67236328125,-416.38037109375,-204.9580078125,504.677490234375,-419.749755859375,-208.32666015625,508.683837890625,-421.1337890625,-243.12646484375,461.204833984375,-436.2021484375,-247.2880859375,463.949951171875,-435.297119140625,-250.43994140625,467.699951171875,-436.594970703125,-251.73779296875,471.449462890625,-439.74658203125,-250.8330078125,474.1943359375,-443.90869140625,-247.96728515625,475.199462890625,-447.96630859375,-243.90869140625,474.194580078125,-450.832763671875,-239.74755859375,471.448486328125,-451.73828125,-236.5947265625,467.698974609375,-450.441162109375,-235.2978515625,463.948974609375,-447.28857421875,-236.2021484375,461.205078125,-443.126220703125,-239.068359375,460.200439453125,-439.067626953125,-242.759765625,477.635009765625,-451.74658203125,-248.02685546875,478.939453125,-448.0263671875,-251.74658203125,477.634033203125,-442.760498046875,-252.92236328125,474.071044921875,-437.35546875,-251.2373046875,469.202392578125,-433.26513671875,-247.14599609375,464.335205078125,-431.5791015625,-241.74169921875,460.770751953125,-432.755615234375,-236.474609375,459.467041015625,-436.47412109375,-232.7548828125,460.771240234375,-441.74169921875,-231.580078125,464.335205078125,-447.14501953125,-233.26318359375,469.203369140625,-451.23779296875,
- -237.3564453125,474.071044921875,-452.92138671875,-253.3564453125,447.968017578125,-446.029296875,-257.76220703125,450.872802734375,-445.072265625,-261.09716796875,454.842041015625,-446.4453125,-262.47119140625,458.810302734375,-449.78125,-261.51318359375,461.716064453125,-454.18603515625,-258.48095703125,462.779541015625,-458.47998046875,-254.185546875,461.716064453125,-461.51318359375,-249.78125,458.810791015625,-462.470703125,-246.4443359375,454.841552734375,-461.09912109375,-245.07177734375,450.873291015625,-457.76123046875,-246.029296875,447.968017578125,-453.35693359375,-249.0625,446.904541015625,-449.0615234375,-253.2802734375,465.002685546875,-462.80615234375,-258.8642578125,466.385498046875,-458.86279296875,-262.80615234375,465.001708984375,-453.28125,-264.0517578125,461.225341796875,-447.552001953125,-262.2666015625,456.065185546875,-443.21435546875,-257.92919921875,450.905029296875,-441.42919921875,-252.201171875,447.126708984375,-442.67626953125,-246.61865234375,445.744873046875,-446.6171875,-242.67529296875,447.127685546875,-452.201171875,-241.43017578125,450.905029296875,-457.927978515625,-243.21484375,456.064697265625,-462.267578125,-247.55322265625,461.225341796875,-464.05078125,-266.44677734375,431.806884765625,-459.5224609375,-270.60888671875,434.5517578125,-458.617431640625,-273.76025390625,438.3017578125,-459.91552734375,-275.05859375,442.051513671875,-463.06689453125,-274.1533203125,444.796630859375,-467.22900390625,-271.2880859375,445.801025390625,-471.28662109375,-267.22900390625,444.796630859375,-474.1533203125,-263.0673828125,442.051513671875,-475.05810546875,-259.91552734375,438.30126953125,-473.76123046875,-258.61767578125,434.5517578125,-470.608642578125,-259.5224609375,431.807373046875,-466.44677734375,-262.38916015625,430.802001953125,-462.3876953125,-265.60693359375,448.7978515625,-474.59423828125,-270.875,450.102294921875,-470.8740234375,-274.59375,448.7978515625,-465.607421875,-275.77001953125,445.23388671875,-460.203125,-274.08544921875,440.365478515625,-456.1123046875,-269.99365234375,435.497802734375,-454.4267578125,
- -264.708984375,432.136962890625,-455.72265625,-259.4423828125,430.83251953125,-459.441650390625,-255.72216796875,432.136962890625,-464.70947265625,-254.42724609375,435.498046875,-469.99267578125,-256.111328125,440.3662109375,-474.0849609375,-260.20361328125,445.234130859375,-475.76904296875,-282.271484375,414.348876953125,-474.94384765625,-286.67724609375,417.25341796875,-473.987060546875,-290.0126953125,421.222900390625,-475.35986328125,-291.38671875,425.191162109375,-478.6962890625,-290.42822265625,428.09716796875,-483.1005859375,-287.396484375,429.160400390625,-487.394775390625,-283.10107421875,428.09716796875,-490.427734375,-278.69580078125,425.191650390625,-491.3857421875,-275.35888671875,421.22216796875,-490.014404296875,-273.986328125,417.254150390625,-486.67626953125,-274.9443359375,414.348876953125,-482.27099609375,-277.9775390625,413.285400390625,-477.976318359375,-281.92822265625,431.157958984375,-490.91552734375,-287.1962890625,432.46240234375,-487.1953125,-290.9150390625,431.157958984375,-481.9287109375,-292.0908203125,427.59423828125,-476.524169921875,-290.40625,422.7255859375,-472.43310546875,-286.314453125,417.858154296875,-470.747802734375,-280.91015625,414.294677734375,-471.923828125,-275.6435546875,412.990478515625,-475.642578125,-271.92333984375,414.294677734375,-480.91064453125,-270.74853515625,417.858154296875,-486.31396484375,-272.4326171875,422.726318359375,-490.40625,-276.52490234375,427.594482421875,-492.09033203125,-292.55810546875,402.142822265625,-485.2314453125,-296.9638671875,405.04736328125,-484.27392578125,-300.29931640625,409.016845703125,-485.64697265625,-301.67333984375,412.985107421875,-488.9833984375,-300.71484375,415.89111328125,-493.3876953125,-297.6826171875,416.954345703125,-497.68212890625,-293.3876953125,415.89111328125,-500.71533203125,-288.98291015625,412.985595703125,-501.67236328125,-285.64599609375,409.01611328125,-500.30078125,-284.2734375,405.048095703125,-496.96337890625,-285.23095703125,402.142822265625,-492.55859375,-288.26416015625,401.079345703125,-488.26318359375,
- -292.24560546875,419.45751953125,-501.771484375,-297.8291015625,420.840576171875,-497.82861328125,-301.77099609375,419.45751953125,-492.24609375,-303.017578125,415.679931640625,-486.517578125,-301.23291015625,410.51953125,-482.18017578125,-296.89501953125,405.360107421875,-480.39501953125,-291.166015625,401.582763671875,-481.64111328125,-285.58349609375,400.2001953125,-485.5830078125,-281.640625,401.582763671875,-491.16650390625,-280.39599609375,405.360107421875,-496.8935546875,-282.1806640625,410.519287109375,-501.232666015625,-286.51904296875,415.679931640625,-503.0166015625,-310.7802734375,381.0439453125,-503.453125,-315.185791015625,383.94873046875,-502.495361328125,-318.52099609375,387.918212890625,-503.86865234375,-319.89501953125,391.886474609375,-507.20458984375,-318.936767578125,394.792236328125,-511.609375,-315.90478515625,395.855712890625,-515.90380859375,-311.609375,394.792236328125,-518.93701171875,-307.20458984375,391.886962890625,-519.89404296875,-303.86767578125,387.917724609375,-518.52294921875,-302.49560546875,383.94921875,-515.18505859375,-303.45263671875,381.0439453125,-510.7802734375,-306.486328125,379.980712890625,-506.4853515625,-310.975830078125,398.76220703125,-519.962890625,-316.243896484375,400.066650390625,-516.24267578125,-319.962646484375,398.76220703125,-510.97607421875,-321.138671875,395.198486328125,-505.57177734375,-319.454345703125,390.329833984375,-501.481201171875,-315.3623046875,385.46240234375,-499.79541015625,-309.957763671875,381.898681640625,-500.97119140625,-303.97021484375,379.378662109375,-503.96923828125,-300.970703125,381.898681640625,-509.9580078125,-299.7958984375,385.46240234375,-515.361328125,-301.48046875,390.33056640625,-519.4541015625,-305.572509765625,395.198486328125,-521.1376953125,-321.58056640625,367.212158203125,-514.7919921875,-325.662109375,369.90380859375,-513.90380859375,-328.751953125,373.58056640625,-515.1767578125,-330.02490234375,377.257568359375,-518.2666015625,-329.136962890625,379.948974609375,-522.3486328125,-326.328125,380.933837890625,-526.32666015625,
- -322.3486328125,379.94921875,-529.136474609375,-318.26708984375,377.257568359375,-530.0244140625,-315.17724609375,373.58056640625,-528.75146484375,-313.904296875,369.90380859375,-525.66162109375,-314.792236328125,367.212646484375,-521.579833984375,-317.6025390625,366.22705078125,-517.60107421875,-321.697265625,384.499267578125,-530.869140625,-327.07373046875,385.830810546875,-527.07275390625,-330.86962890625,384.499267578125,-521.69677734375,-332.0693359375,380.862060546875,-516.18115234375,-330.3505859375,375.892333984375,-512.00537109375,-326.17333984375,370.924072265625,-510.28515625,-320.65771484375,367.28662109375,-511.48486328125,-315.28173828125,365.955322265625,-515.28076171875,-311.4853515625,367.28662109375,-520.6572265625,-310.285400390625,370.924072265625,-526.173583984375,-312.0048828125,375.892822265625,-530.35009765625,-316.181396484375,380.862060546875,-532.069580078125,-338.56396484375,346.517822265625,-531.23681640625,-342.969482421875,349.422607421875,-530.279541015625,-346.304931640625,353.39208984375,-531.652587890625,-347.6787109375,357.360107421875,-534.98876953125,-346.720703125,360.266357421875,-539.3935546875,-343.6884765625,361.32958984375,-543.6875,-339.39306640625,360.266357421875,-546.720703125,-334.98828125,357.36083984375,-547.67822265625,-331.65185546875,353.391357421875,-546.306640625,-330.279052734375,349.423095703125,-542.968994140625,-331.236572265625,346.517822265625,-538.564208984375,-334.27001953125,345.454345703125,-534.26904296875,-338.220458984375,363.326904296875,-547.20751953125,-343.48828125,364.631591796875,-543.48779296875,-347.20703125,363.326904296875,-538.22119140625,-348.38330078125,359.763427734375,-532.81640625,-346.698486328125,354.89453125,-528.726318359375,-342.60693359375,350.027099609375,-527.0400390625,-337.2021484375,346.463623046875,-528.21630859375,-331.935546875,345.1591796875,-531.93505859375,-328.2158203125,346.463623046875,-537.203125,-327.041015625,350.027099609375,-542.60595703125,-328.724609375,354.895263671875,-546.69873046875,-332.8173828125,359.763427734375,-548.38232421875,
- -354.819580078125,327.57470703125,-547.491943359375,-359.22509765625,330.479736328125,-546.53515625,-362.560546875,334.448974609375,-547.90771484375,-363.93408203125,338.417236328125,-551.244140625,-362.976318359375,341.322998046875,-555.648681640625,-359.943359375,342.386474609375,-559.94287109375,-355.649169921875,341.322998046875,-562.975830078125,-351.24365234375,338.417724609375,-563.93359375,-347.9072265625,334.448486328125,-562.56201171875,-346.53466796875,330.480224609375,-559.224609375,-347.492431640625,327.57470703125,-554.819091796875,-350.52490234375,326.511474609375,-550.5244140625,-354.506591796875,344.889892578125,-564.032470703125,-360.08984375,346.272705078125,-560.08935546875,-364.031982421875,344.889892578125,-554.507080078125,-365.278564453125,341.1123046875,-548.778076171875,-363.493896484375,335.951904296875,-544.441162109375,-359.15576171875,330.792236328125,-542.6552734375,-353.427001953125,327.014892578125,-543.902099609375,-347.84423828125,325.63232421875,-547.84375,-343.901611328125,327.014892578125,-553.427490234375,-342.65673828125,330.792236328125,-559.154296875,-344.44189453125,335.95166015625,-563.49365234375,-348.779541015625,341.1123046875,-565.277099609375,-368.80859375,311.653564453125,-562.15478515625,-372.80908203125,314.291259765625,-561.28564453125,-375.837890625,317.8955078125,-562.53173828125,-377.085205078125,321.498779296875,-565.561767578125,-376.21484375,324.137451171875,-569.56103515625,-373.46142578125,325.10302734375,-573.4599609375,-369.56201171875,324.137451171875,-576.2138671875,-365.5615234375,321.499267578125,-577.08447265625,-362.532470703125,317.89501953125,-575.838134765625,-361.28515625,314.291748046875,-572.80810546875,-362.15576171875,311.653564453125,-568.8076171875,-364.9091796875,310.68798828125,-564.90771484375,-368.426513671875,327.830322265625,-577.413818359375,-373.694580078125,329.135009765625,-573.693603515625,-377.413330078125,327.830322265625,-568.427001953125,-378.58935546875,324.2666015625,-563.0224609375,-376.90478515625,319.398193359375,-558.931640625,
- -372.81298828125,314.530517578125,-557.24609375,-367.408447265625,310.967041015625,-558.422119140625,-362.141845703125,309.662841796875,-562.140869140625,-358.421630859375,310.967041015625,-567.408935546875,-357.246826171875,314.53076171875,-572.812255859375,-358.930908203125,319.39892578125,-576.904541015625,-363.023193359375,324.266845703125,-578.588623046875,-380.263671875,299.109619140625,-572.93603515625,-384.6689453125,302.014404296875,-571.97900390625,-388.0048828125,305.983642578125,-573.35205078125,-389.37841796875,309.951904296875,-576.6884765625,-388.42041015625,312.857666015625,-581.0927734375,-385.3876953125,313.921630859375,-585.38720703125,-381.09326171875,312.857666015625,-588.419921875,-376.68798828125,309.952392578125,-589.3779296875,-373.35107421875,305.983154296875,-588.00634765625,-371.978515625,302.014892578125,-584.66845703125,-372.9365234375,299.109619140625,-580.26318359375,-375.96923828125,298.04638671875,-575.96875,-379.920166015625,315.918701171875,-588.907470703125,-385.18798828125,317.22314453125,-585.18701171875,-388.906982421875,315.918701171875,-579.920654296875,-390.08251953125,312.355224609375,-574.51611328125,-388.3984375,307.486572265625,-570.42529296875,-384.30615234375,302.618896484375,-568.73974609375,-378.902099609375,299.055419921875,-569.915771484375,-373.635498046875,297.751220703125,-573.634521484375,-369.915283203125,299.055419921875,-578.902587890625,-368.740478515625,302.618896484375,-584.305908203125,-370.424560546875,307.487060546875,-588.398193359375,-374.516845703125,312.355224609375,-590.082275390625,-399.22900390625,275.028076171875,-591.362060546875,-403.95849609375,278.146728515625,-590.3349609375,-407.53955078125,282.407958984375,-591.808349609375,-409.01416015625,286.668212890625,-595.390625,-407.986083984375,289.787841796875,-600.118896484375,-404.730224609375,290.929443359375,-604.729248046875,-400.119140625,289.788330078125,-607.9853515625,-395.390625,286.668701171875,-609.01318359375,-391.80859375,282.407470703125,-607.54052734375,-390.334716796875,278.147216796875,-603.957275390625,
- -391.3623046875,275.0283203125,-599.228515625,-394.61865234375,273.886474609375,-594.61767578125,-398.962158203125,293.101806640625,-608.757080078125,-404.703125,294.523681640625,-604.70263671875,-408.7568359375,293.101806640625,-598.96240234375,-410.03857421875,289.217529296875,-593.0712890625,-408.20166015625,283.910888671875,-588.61328125,-403.74267578125,278.605224609375,-586.775390625,-397.8515625,274.720947265625,-588.05712890625,-392.111083984375,273.299560546875,-592.110595703125,-388.05712890625,274.720947265625,-597.85205078125,-386.77685546875,278.605224609375,-603.7412109375,-388.6123046875,283.911376953125,-608.20166015625,-393.07275390625,289.217529296875,-610.037109375,-408.21484375,264.908203125,-600.88720703125,-412.6201171875,267.812744140625,-599.93017578125,-415.95556640625,271.7822265625,-601.302734375,-417.3291015625,275.750244140625,-604.63916015625,-416.37109375,278.65625,-609.04345703125,-413.339111328125,279.7197265625,-613.337890625,-409.0439453125,278.65625,-616.37060546875,-404.638671875,275.7509765625,-617.32861328125,-401.302001953125,271.781494140625,-615.95751953125,-399.9296875,267.8134765625,-612.61962890625,-400.8876953125,264.908203125,-608.21435546875,-403.92041015625,263.844482421875,-603.9189453125,-407.87109375,281.71728515625,-616.8583984375,-413.138916015625,283.021728515625,-613.13818359375,-416.858154296875,281.716796875,-607.872314453125,-418.03369140625,278.153564453125,-602.466796875,-416.34912109375,273.284912109375,-598.3759765625,-412.257568359375,268.41748046875,-596.690673828125,-406.853271484375,264.853271484375,-597.867431640625,-401.58642578125,263.54931640625,-601.58544921875,-397.8662109375,264.853759765625,-606.853515625,-396.69140625,268.41748046875,-612.2568359375,-398.375244140625,273.285400390625,-616.34912109375,-402.46728515625,278.153564453125,-618.03271484375,-423.904296875,246.290771484375,-616.576904296875,-428.309814453125,249.195556640625,-615.619873046875,-431.64501953125,253.1650390625,-616.992919921875,-433.01904296875,257.133056640625,-620.3291015625,
- -432.060791015625,260.0390625,-624.733642578125,-429.02880859375,261.1025390625,-629.027587890625,-424.7333984375,260.0390625,-632.06103515625,-420.32861328125,257.1337890625,-633.0185546875,-416.9921875,253.164306640625,-631.646728515625,-415.619384765625,249.196044921875,-628.309326171875,-416.57666015625,246.290771484375,-623.904541015625,-419.610107421875,245.227294921875,-619.609130859375,-423.561279296875,263.09912109375,-632.548583984375,-428.8291015625,264.404541015625,-628.82763671875,-432.548095703125,263.09912109375,-623.561767578125,-433.7236328125,259.536376953125,-618.15673828125,-432.03857421875,254.66748046875,-614.06640625,-427.947265625,249.80029296875,-612.38037109375,-422.54345703125,246.235595703125,-613.55712890625,-417.276611328125,244.93212890625,-617.275146484375,-413.556640625,246.235595703125,-622.5439453125,-412.38134765625,249.80029296875,-627.9462890625,-414.0654296875,254.668212890625,-632.03857421875,-418.15771484375,259.536376953125,-633.72265625,-626.3701171875,-42.3463745117188,-400,-626.3701171875,-42.3463745117188,0,-636.88671875,-35.7080078125,0,-636.886962890625,-35.7080078125,-400,-646.052001953125,1.4066162109375,-400,-646.0517578125,1.4066162109375,0,-595.81005859375,1.4066162109375,0,-595.81005859375,1.4066162109375,-400,-595.81005859375,-42.3463745117188,-400,-595.81005859375,-42.3463745117188,0,-647.2412109375,0.33148193359375,0,-647.241455078125,0.33148193359375,-400,-647.241455078125,-16.4122314453125,-400,-647.2412109375,-16.4122314453125,0,-636.886962890625,-22.7757568359375,-400,-636.88671875,-22.7757568359375,0,-626.3701171875,-42.3463745117188,-800,-636.886962890625,-35.7080078125,-800,-646.052001953125,1.4066162109375,-800,-647.241455078125,0.33148193359375,-800,-647.241455078125,-16.4122314453125,-800,-636.886962890625,-22.7757568359375,-800,0,-42.3463745117188,-826.3701171875,-400,-42.3463745117188,-826.3701171875,-400,-35.7080078125,-836.886962890625,0,-35.7080078125,-836.88720703125,0,1.4066162109375,-846.05224609375,-400,1.4066162109375,-846.052001953125,-400,1.4066162109375,-795.81005859375,
- 0,1.4066162109375,-795.81005859375,0,-42.3463745117188,-795.81005859375,-400,-42.3463745117188,-795.81005859375,-400,0.33148193359375,-847.241455078125,0,0.33148193359375,-847.24169921875,0,-16.4122314453125,-847.24169921875,-400,-16.4122314453125,-847.241455078125,0,-22.7757568359375,-836.88720703125,-400,-22.7757568359375,-836.886962890625,-626.3701171875,-42.3463745117188,-826.3701171875,-636.88720703125,-35.7080078125,-836.88671875,-646.05224609375,1.4066162109375,-846.0517578125,-595.810302734375,1.4066162109375,-795.809814453125,-595.81005859375,-42.3463134765625,-795.81005859375,-647.24169921875,0.3314208984375,-847.2412109375,-647.241455078125,-16.4122314453125,-847.2412109375,-636.886962890625,-22.7757568359375,-836.88671875,4.2333984375,748.268310546875,-200.86083984375,7.33203125,751.366943359375,-200.8603515625,8.4658203125,755.599975585938,-200.86083984375,7.33203125,759.832763671875,-200.8603515625,4.2333984375,762.931396484375,-200.86083984375,0.0009765625,764.065551757813,-200.86083984375,-4.23291015625,762.931396484375,-200.86083984375,-7.3310546875,759.832763671875,-200.86083984375,-8.466796875,755.599975585938,-200.8603515625,-7.3310546875,751.366943359375,-200.86083984375,-4.23291015625,748.268310546875,-200.86083984375,0.0009765625,747.134399414063,-200.86083984375,4.80078125,746.092895507813,-172.80908203125,8.314453125,749.606323242188,-172.80908203125,9.599609375,754.405883789063,-172.80908203125,8.314453125,759.205444335938,-172.80908203125,4.80078125,762.718872070313,-172.80908203125,0.0009765625,764.004760742188,-172.80908203125,-4.798828125,762.718872070313,-172.80908203125,-8.3134765625,759.205444335938,-172.80908203125,-9.59765625,754.405883789063,-172.80908203125,-8.3134765625,749.606323242188,-172.80908203125,-4.798828125,746.092895507813,-172.80908203125,0.0009765625,744.806762695313,-172.80908203125,-6.4853515625,766.696411132813,-175.20703125,0.0009765625,768.434204101563,-175.20703125,6.486328125,766.696411132813,-175.20703125,11.2353515625,761.948120117188,-175.20703125,12.97265625,755.461791992188,-175.2060546875,
- 11.2353515625,748.975708007813,-175.20703125,6.486328125,744.227416992188,-175.20703125,0.0009765625,742.489379882813,-175.20703125,-6.4853515625,744.227416992188,-175.20703125,-11.234375,748.975708007813,-175.20703125,-12.9716796875,755.461791992188,-175.20703125,-11.234375,761.948120117188,-175.20703125,5.181640625,745.432495117188,-152.33935546875,8.9736328125,749.224975585938,-152.33837890625,10.361328125,754.405883789063,-152.33935546875,8.9736328125,759.586547851563,-152.33837890625,5.181640625,763.379028320313,-152.33935546875,0.0009765625,764.767211914063,-152.33935546875,-5.1806640625,763.379028320313,-152.33935546875,-8.97265625,759.586547851563,-152.33935546875,-10.3623046875,754.405883789063,-152.33837890625,-8.97265625,749.224975585938,-152.33935546875,-5.1806640625,745.432495117188,-152.33935546875,0.0009765625,744.044311523438,-152.33935546875,-6.3544921875,765.412231445313,-154.73779296875,0.0009765625,767.115112304688,-154.73779296875,6.3544921875,765.412231445313,-154.73779296875,11.0078125,760.760375976563,-154.73779296875,12.708984375,754.405883789063,-154.73681640625,11.0078125,748.051147460938,-154.73779296875,6.3544921875,743.399291992188,-154.73779296875,0.0009765625,741.696655273438,-154.73779296875,-6.3544921875,743.399291992188,-154.73779296875,-11.005859375,748.051147460938,-154.73779296875,-12.708984375,754.405883789063,-154.73779296875,-11.005859375,760.760375976563,-154.73779296875,5.181640625,745.696899414063,-128.42919921875,8.9736328125,749.489624023438,-128.42822265625,10.361328125,754.670288085938,-128.42919921875,8.9736328125,759.850952148438,-128.42822265625,5.181640625,763.643432617188,-128.42919921875,0.0009765625,765.031616210938,-128.42919921875,-5.1806640625,763.643432617188,-128.42919921875,-8.97265625,759.850952148438,-128.42919921875,-10.3623046875,754.670288085938,-128.42822265625,-8.97265625,749.489624023438,-128.42919921875,-5.1806640625,745.696899414063,-128.42919921875,0.0009765625,744.308959960938,-128.42919921875,-6.7353515625,766.337036132813,-130.82861328125,0.0009765625,768.141723632813,-130.82861328125,
- 6.7353515625,766.337036132813,-130.82861328125,11.66796875,761.405883789063,-130.82861328125,13.47265625,754.670288085938,-130.82763671875,11.66796875,747.934448242188,-130.82861328125,6.7353515625,743.003540039063,-130.82861328125,0.0009765625,741.198608398438,-130.82861328125,-6.7353515625,743.003540039063,-130.82861328125,-11.6650390625,747.934448242188,-130.82861328125,-13.4716796875,754.670288085938,-130.82763671875,-11.6650390625,761.405883789063,-130.82861328125,4.705078125,746.522338867188,-102.01806640625,8.1484375,749.965942382813,-102.01708984375,9.4091796875,754.670288085938,-102.01806640625,8.1484375,759.374633789063,-102.01708984375,4.705078125,762.818237304688,-102.01806640625,0.0009765625,764.078735351563,-102.01806640625,-4.703125,762.818237304688,-102.01806640625,-8.1474609375,759.374633789063,-102.01806640625,-9.408203125,754.670288085938,-102.01708984375,-8.1474609375,749.965942382813,-102.01806640625,-4.703125,746.522338867188,-102.01806640625,0.0009765625,745.261840820313,-102.01806640625,-6.3544921875,765.676635742188,-104.41748046875,0.0009765625,767.379516601563,-104.41748046875,6.3544921875,765.676635742188,-104.41748046875,11.0078125,761.024780273438,-104.41748046875,12.708984375,754.670288085938,-104.41650390625,11.0078125,748.315551757813,-104.41748046875,6.3544921875,743.663696289063,-104.41748046875,0.0009765625,741.961059570313,-104.41748046875,-6.3544921875,743.663696289063,-104.41748046875,-11.005859375,748.315551757813,-104.41748046875,-12.708984375,754.670288085938,-104.41748046875,-11.005859375,761.024780273438,-104.41748046875,5.181640625,747.019409179688,-81.39697265625,8.9736328125,750.811889648438,-81.39599609375,10.361328125,755.992797851563,-81.39697265625,8.9736328125,761.173461914063,-81.39599609375,5.181640625,764.965942382813,-81.39697265625,0.0009765625,766.354125976563,-81.39697265625,-5.1806640625,764.965942382813,-81.39697265625,-8.97265625,761.173461914063,-81.39697265625,-10.3623046875,755.992797851563,-81.39599609375,-8.97265625,750.811889648438,-81.39697265625,
- -5.1806640625,747.019409179688,-81.39697265625,0.0009765625,745.631225585938,-81.39697265625,-6.3544921875,766.999145507813,-83.79541015625,0.0009765625,768.701782226563,-83.79541015625,6.3544921875,766.999145507813,-83.79541015625,11.0078125,762.347290039063,-83.79541015625,12.708984375,755.992797851563,-83.79443359375,11.0078125,749.638061523438,-83.79541015625,6.3544921875,744.986206054688,-83.79541015625,0.0009765625,743.283569335938,-83.79541015625,-6.3544921875,744.986206054688,-83.79541015625,-11.005859375,749.638061523438,-83.79541015625,-12.708984375,755.992797851563,-83.79541015625,-11.005859375,762.347290039063,-83.79541015625,5.5634765625,745.565551757813,-44.751953125,9.6337890625,749.637084960938,-44.7509765625,11.1240234375,755.199096679688,-44.751953125,9.6337890625,760.761108398438,-44.7509765625,5.5634765625,764.832641601563,-44.751953125,0.0009765625,766.322875976563,-44.751953125,-5.5615234375,764.832641601563,-44.751953125,-9.6318359375,760.761108398438,-44.751953125,-11.1240234375,755.199096679688,-44.7509765625,-9.6318359375,749.637084960938,-44.751953125,-5.5615234375,745.565551757813,-44.751953125,0.0009765625,744.075317382813,-44.751953125,-6.92578125,767.195922851563,-47.1513671875,0.0009765625,769.051879882813,-47.1513671875,6.92578125,767.195922851563,-47.1513671875,11.998046875,762.125610351563,-47.1513671875,13.8515625,755.199096679688,-47.150390625,11.998046875,748.272827148438,-47.1513671875,6.92578125,743.202270507813,-47.1513671875,0.0009765625,741.346557617188,-47.1513671875,-6.92578125,743.202270507813,-47.1513671875,-11.9951171875,748.272827148438,-47.1513671875,-13.8515625,755.199096679688,-47.1513671875,-11.9951171875,762.125610351563,-47.1513671875,5.181640625,746.225952148438,-27.798828125,8.9736328125,750.018432617188,-27.7978515625,10.361328125,755.199096679688,-27.798828125,8.9736328125,760.379760742188,-27.7978515625,5.181640625,764.172241210938,-27.798828125,0.0009765625,765.560424804688,-27.798828125,-5.1806640625,764.172241210938,-27.798828125,-8.97265625,760.379760742188,-27.798828125,
- -10.3623046875,755.199096679688,-27.7978515625,-8.97265625,750.018432617188,-27.798828125,-5.1806640625,746.225952148438,-27.798828125,0.0009765625,744.837524414063,-27.798828125,-6.3544921875,766.205688476563,-30.19677734375,0.0009765625,767.908325195313,-30.19677734375,6.3544921875,766.205688476563,-30.19580078125,11.0078125,761.553588867188,-30.19677734375,12.708984375,755.199096679688,-30.19580078125,11.0078125,748.844604492188,-30.19677734375,6.3544921875,744.192749023438,-30.19580078125,0.0009765625,742.489868164063,-30.19677734375,-6.3544921875,744.192749023438,-30.19677734375,-11.005859375,748.844604492188,-30.19677734375,-12.708984375,755.199096679688,-30.19677734375,-11.005859375,761.553588867188,-30.19677734375,5.181640625,746.225708007813,1.90478515625,8.9736328125,750.018188476563,1.90576171875,10.361328125,755.199096679688,1.90478515625,8.9736328125,760.379760742188,1.90576171875,5.181640625,764.172241210938,1.90478515625,0.0009765625,765.560424804688,1.90478515625,-5.1806640625,764.172241210938,1.90478515625,-8.97265625,760.379760742188,1.90478515625,-10.3623046875,755.199096679688,1.90576171875,-8.97265625,750.018188476563,1.90478515625,-5.1806640625,746.225708007813,1.90478515625,0.0009765625,744.837524414063,1.90478515625,-6.3544921875,766.205444335938,-0.4921875,0.0009765625,767.908325195313,-0.4931640625,6.3544921875,766.205444335938,-0.4921875,11.0078125,761.553588867188,-0.4931640625,12.708984375,755.199096679688,-0.4921875,11.0078125,748.844360351563,-0.4931640625,6.3544921875,744.192504882813,-0.4921875,0.0009765625,742.489868164063,-0.4931640625,-6.3544921875,744.192504882813,-0.4921875,-11.005859375,748.844360351563,-0.4931640625,-12.708984375,755.199096679688,-0.4931640625,-11.005859375,761.553588867188,-0.4931640625,-5.3125,764.787841796875,-198.9375,0.0009765625,766.21142578125,-198.9375,5.3134765625,764.787841796875,-198.9375,9.2021484375,760.898681640625,-198.9365234375,10.62548828125,755.5859375,-198.9375,9.2021484375,750.273071289063,-198.9365234375,5.3134765625,746.383911132813,-198.9375,
- 0.0009765625,744.960571289063,-198.9375,-5.3125,746.383911132813,-198.9375,-9.201171875,750.273071289063,-198.9375,-10.6259765625,755.5859375,-198.9365234375,-9.201171875,760.898681640625,-198.9375,-28.4697265625,708.068603515625,0,28.4697265625,708.068603515625,0,-25.623046875,641.702880859375,0,-28.4697265625,644.549560546875,0,28.4697265625,644.549560546875,0,25.623046875,641.702880859375,0,-28.4697265625,708.068603515625,-227.1328125,28.4697265625,708.068603515625,-227.1328125,-25.623046875,641.702880859375,-283.01953125,-28.4697265625,644.549560546875,-280.6220703125,28.4697265625,644.549560546875,-280.6220703125,25.623046875,641.702880859375,-283.01953125
- }
- PolygonVertexIndex: *9105 {
- a: 2,3,1,-1,1,369,368,-1,4,372,374,-8,6,5,4,-8,6,7,374,-376,10,11,9,-9,9,377,376,-9,14,15,13,-13,19,18,16,-385,18,21,17,-17,20,21,18,-20,17,385,384,-17,27,26,22,-24,24,25,29,-29,26,29,25,-23,28,29,26,-28,25,24,23,-23,30,31,33,-33,32,33,34,-36,31,30,36,-38,34,33,31,-38,34,37,36,-36,43,42,38,-40,40,41,45,-45,42,45,41,-39,44,45,42,-44,41,40,39,-39,46,47,49,-49,51,50,47,-47,48,49,53,-53,50,53,49,-48,52,53,50,-52,59,58,54,-56,56,57,61,-61,58,61,57,-55,60,61,58,-60,57,56,55,-55,67,66,62,-64,64,65,69,-69,66,69,65,-63,68,69,66,-68,65,64,63,-63,70,71,73,-73,72,73,74,-76,71,70,76,-78,74,73,71,-78,74,77,76,-76,83,82,78,-80,80,81,85,-85,82,85,81,-79,84,85,82,-84,81,80,79,-79,86,87,89,-89,91,90,87,-87,88,89,93,-93,90,93,89,-88,92,93,90,-92,99,98,94,-96,96,97,101,-101,98,101,97,-95,100,101,98,-100,97,96,95,-95,107,106,102,-104,104,105,109,-109,106,109,105,-103,108,109,106,-108,105,104,103,-103,110,111,113,-113,112,113,114,-116,111,110,116,-118,114,113,111,-118,114,117,116,-116,123,122,118,-120,120,121,125,-125,122,125,121,-119,124,125,122,-124,121,120,119,-119,126,127,129,-129,131,130,127,-127,128,129,133,-133,130,133,129,-128,132,133,130,-132,139,138,134,-136,136,137,141,-141,138,141,137,-135,140,141,138,-140,137,136,135,-135,142,143,310,-312,146,147,145,-145,150,151,149,-149,149,393,392,-149,303,302,316,-318,295,294,289,-289,292,291,286,-286,290,289,294,-294,296,295,288,-288,195,214,213,-197,211,399,398,193,-193,215,402,-402,197,196,213,-213,161,232,231,-160,229,228,184,-182,233,232,161,-186,180,159,231,-231,167,242,241,-164,164,188,189,167,-164,164,240,239,-189,243,242,167,-190,240,164,163,-242,177,178,179,157,156,-177,181,184,185,161,159,-181,296,287,286,-292,292,285,290,-294,197,212,211,-193,193,398,401,-195,180,230,229,-182,184,228,233,-186,188,239,243,-190,192,193,199,-199,199,193,194,-201,195,201,200,-195,201,195,196,-203,203,202,196,-198,203,197,192,-199,198,199,205,-205,205,199,200,-207,201,207,206,-201,207,201,202,-209,209,208,202,-204,209,203,198,-205,204,205,178,-178,178,205,206,-180,207,157,179,-207,
- 157,207,208,-157,176,156,208,-210,176,209,204,-178,212,400,397,-212,213,214,396,-474,223,222,216,-218,218,224,223,-218,219,225,224,-219,220,226,225,-220,227,226,220,-222,216,222,227,-222,183,187,222,-224,224,182,183,-224,225,158,182,-225,226,160,158,-226,186,160,226,-228,222,187,186,-228,217,216,228,-230,230,218,217,-230,231,219,218,-231,232,220,219,-232,221,220,232,-234,228,216,221,-234,235,245,244,-235,245,235,236,-247,237,247,246,-237,248,247,237,-239,234,244,248,-239,240,235,234,-240,235,240,241,-237,242,237,236,-242,238,237,242,-244,239,234,238,-244,245,165,191,-245,165,245,246,-163,247,166,162,-247,190,166,247,-249,244,191,190,-249,249,250,256,-256,251,257,256,-251,252,258,257,-252,253,259,258,-253,260,259,253,-255,249,255,260,-255,255,256,262,-262,257,263,262,-257,258,264,263,-258,259,265,264,-259,266,265,259,-261,255,261,266,-261,261,262,268,-268,263,269,268,-263,264,270,269,-264,265,271,270,-265,272,271,265,-267,261,267,272,-267,267,268,169,-171,269,168,169,-269,270,152,168,-270,271,153,152,-271,171,153,271,-273,267,170,171,-273,280,279,173,-175,284,172,173,-280,283,154,172,-285,282,155,154,-284,175,155,282,-282,280,174,175,-282,273,274,279,-281,273,280,281,-279,282,277,278,-282,277,282,283,-277,276,283,284,-276,275,284,279,-275,305,304,274,-274,309,275,274,-305,308,276,275,-310,307,277,276,-309,278,277,307,-307,305,273,278,-307,294,405,404,-294,297,408,405,294,-296,298,299,250,-250,300,251,250,-300,301,252,251,-301,302,253,252,-302,254,253,302,-304,298,249,254,-304,285,286,304,-306,285,305,306,-291,307,289,290,-307,289,307,308,-289,288,308,309,-288,287,309,304,-287,315,316,302,-302,313,314,299,-299,312,315,301,-301,314,312,300,-300,317,313,298,-304,315,312,314,313,317,-317,319,324,323,-319,326,320,321,-330,320,319,318,-322,328,322,325,-328,327,325,324,319,320,-327,323,324,325,-323,326,329,328,-328,24,414,413,-24,30,417,419,-37,35,36,419,-421,40,422,421,-40,56,430,429,-56,64,434,433,-64,70,437,439,-77,75,76,439,-441,80,442,441,-80,96,450,449,-96,104,454,453,-104,110,457,459,-117,115,116,459,-461,120,462,461,
- -120,330,139,135,-470,331,140,139,-331,136,470,469,-136,160,342,341,-159,339,338,187,-184,343,342,160,-187,182,158,341,-341,166,352,351,-163,165,350,349,-192,353,352,166,-191,350,165,162,-352,182,340,339,-184,187,338,343,-187,191,349,353,-191,340,479,474,-340,341,475,479,-341,342,476,475,-342,338,478,477,-344,344,480,482,-349,350,345,344,-350,345,350,351,-347,352,347,346,-352,348,347,352,-354,349,344,348,-354,345,481,480,-345,347,472,471,-347,354,358,357,488,-486,355,359,358,-355,361,360,489,-491,356,357,363,-363,358,364,363,-358,359,365,364,-359,360,366,365,-360,367,366,360,-362,356,362,367,-362,362,363,335,-337,364,334,335,-364,365,332,334,-365,366,333,332,-366,337,333,366,-368,362,336,337,-368,318,323,493,-492,329,321,492,-496,321,318,491,-493,329,495,496,-329,368,370,2,-1,371,369,1,-4,370,371,3,-3,373,372,4,-6,375,373,5,-7,376,378,10,-9,379,377,9,-12,378,379,11,-11,381,380,12,-14,380,382,14,-13,383,381,13,-16,382,383,15,-15,20,385,17,-22,411,386,142,-312,386,387,143,-143,389,388,144,-146,388,390,146,-145,391,389,145,-148,390,391,147,-147,392,394,150,-149,395,393,149,-152,394,395,151,-151,398,399,-211,401,402,214,195,-195,401,398,210,-216,397,399,-212,402,396,-215,406,403,291,-293,404,406,292,-294,409,410,297,295,-297,403,409,296,-292,387,412,310,-144,407,408,-298,410,407,-298,412,411,311,-311,413,415,27,-24,416,414,24,-29,415,416,28,-28,418,417,30,-33,420,418,32,-36,421,423,43,-40,424,422,40,-45,423,424,44,-44,426,425,46,-49,425,427,51,-47,428,426,48,-53,427,428,52,-52,429,431,59,-56,432,430,56,-61,431,432,60,-60,433,435,67,-64,436,434,64,-69,435,436,68,-68,438,437,70,-73,440,438,72,-76,441,443,83,-80,444,442,80,-85,443,444,84,-84,446,445,86,-89,445,447,91,-87,448,446,88,-93,447,448,92,-92,449,451,99,-96,452,450,96,-101,451,452,100,-100,453,455,107,-104,456,454,104,-109,455,456,108,-108,458,457,110,-113,460,458,112,-116,461,463,123,-120,464,462,120,-125,463,464,124,-124,466,465,126,-129,465,467,131,-127,468,466,128,-133,467,468,132,-132,331,470,136,-141,213,473,400,-213,474,478,338,-340,477,476,342,-344,346,471,
- 481,-346,482,472,347,-349,485,483,-355,483,486,355,-355,486,487,-356,484,488,357,-357,487,489,360,359,-356,490,484,356,-362,496,494,322,-329,494,493,323,-323,508,507,513,-515,503,504,500,-502,505,499,500,-505,506,497,499,-506,507,498,497,-507,502,498,507,-509,503,501,502,-509,509,511,504,-504,511,510,505,-505,510,512,506,-506,512,513,507,-507,514,509,503,-509,517,451,449,-516,516,450,452,-519,518,452,451,-518,521,455,453,-520,520,454,456,-523,522,456,455,-522,523,457,458,-525,524,458,460,-526,529,463,461,-528,528,462,464,-531,530,464,463,-530,531,465,466,-533,533,467,465,-532,532,466,468,-535,534,468,467,-534,537,330,469,-536,536,470,331,-539,538,331,330,-538,471,546,545,-482,548,547,472,-483,545,540,543,-545,540,545,546,-540,547,541,539,-547,542,541,547,-549,544,543,542,-549,553,551,494,-497,552,493,494,-552,557,370,368,-556,556,558,557,-556,556,369,371,-559,558,371,370,-558,559,372,373,-561,560,373,375,-562,559,560,561,-563,565,378,376,-564,564,566,565,-564,564,377,379,-567,566,379,378,-566,567,380,381,-569,569,382,380,-568,568,570,569,-568,568,381,383,-571,570,383,382,-570,573,19,384,-572,572,574,573,-572,572,385,20,-575,574,20,19,-574,577,415,413,-576,576,578,577,-576,576,414,416,-579,578,416,415,-578,579,417,418,-581,580,418,420,-582,579,580,581,-583,585,423,421,-584,584,586,585,-584,584,422,424,-587,586,424,423,-586,587,425,426,-589,589,427,425,-588,588,590,589,-588,588,426,428,-591,590,428,427,-590,593,431,429,-592,592,594,593,-592,592,430,432,-595,594,432,431,-594,597,435,433,-596,596,598,597,-596,596,434,436,-599,598,436,435,-598,599,437,438,-601,600,438,440,-602,599,600,601,-603,605,443,441,-604,604,606,605,-604,604,442,713,444,-607,606,444,443,-606,607,445,446,-609,609,447,445,-608,608,610,609,-608,608,446,448,-611,610,448,447,-610,613,517,515,-612,612,614,613,-612,612,516,518,-615,614,518,517,-614,516,612,611,-516,617,521,519,-616,616,618,617,-616,616,520,522,-619,618,522,521,-618,520,616,615,-520,619,523,524,-621,620,524,525,-622,523,619,622,-527,619,620,621,-623,525,526,622,-622,625,529,527,-624,624,
- 626,625,-624,624,528,530,-627,626,530,529,-626,528,624,623,-528,627,531,532,-629,629,533,531,-628,628,630,629,-628,628,532,534,-631,630,534,533,-630,633,537,535,-632,632,634,633,-632,632,536,538,-635,634,538,537,-634,536,632,631,-536,635,386,-412,636,387,386,-636,637,388,389,-639,639,390,388,-638,638,640,639,-638,638,389,391,-641,640,391,390,-640,643,394,392,-642,642,644,643,-642,642,393,395,-645,644,395,394,-644,665,672,671,-667,669,668,663,-663,646,654,655,653,652,-646,673,672,665,-665,667,666,671,-671,687,686,715,-723,648,658,659,657,656,-648,691,690,724,-726,541,700,699,-540,540,698,697,-544,651,660,661,650,-650,701,700,541,-543,698,540,539,-700,667,670,669,-663,663,668,673,-665,543,697,701,-543,662,663,720,-717,665,718,717,-665,653,655,668,-670,670,652,653,-670,671,645,652,-671,672,646,645,-672,654,646,672,-674,668,655,654,-674,681,680,674,-676,676,682,681,-676,677,683,682,-677,678,684,683,-678,685,684,678,-680,674,680,685,-680,657,659,680,-682,682,656,657,-682,683,647,656,-683,684,648,647,-684,658,648,684,-686,680,659,658,-686,675,674,686,-688,688,676,675,-688,689,677,676,-689,690,678,677,-690,679,678,690,-692,686,674,679,-692,693,703,702,-693,703,693,694,-705,695,705,704,-695,706,705,695,-697,692,702,706,-697,698,693,692,-698,693,698,699,-695,700,695,694,-700,696,695,700,-702,697,692,696,-702,703,650,661,-703,650,703,704,-650,705,651,649,-705,660,651,705,-707,702,661,660,-707,549,552,710,-708,554,550,708,-713,707,710,709,711,712,-709,550,549,707,-709,711,709,551,-554,710,552,551,-710,554,712,711,-554,449,450,516,-516,453,454,520,-520,459,457,523,-527,460,459,526,-526,461,462,528,-528,469,470,536,-536,480,481,545,-545,471,472,547,-547,482,480,544,-549,491,493,552,-550,495,492,550,-555,492,491,549,-551,496,495,554,-554,368,369,556,-556,374,372,559,-563,375,374,562,-562,376,377,564,-564,384,385,572,-572,413,414,576,-576,419,417,579,-583,420,419,582,-582,421,422,584,-584,429,430,592,-592,433,434,596,-596,439,437,599,-603,440,439,602,-602,441,442,604,-604,392,393,642,-642,723,724,690,-690,714,723,689,-689,722,714,
- 688,-688,725,715,686,-692,717,720,663,-665,719,718,665,-667,721,719,666,-668,716,721,667,-663,411,412,636,-636,412,387,-637,796,795,790,-790,793,792,787,-787,791,790,795,-795,797,796,789,-789,797,788,787,-793,793,786,791,-795,744,745,813,-813,749,811,815,-749,741,742,761,-761,759,740,741,-761,758,730,740,-760,757,731,730,-759,743,731,757,-757,761,742,743,-757,756,757,754,-756,754,757,758,-754,753,758,759,-753,752,759,760,-752,761,750,751,-761,750,761,756,-756,751,750,749,-749,752,751,748,-748,753,752,747,-747,754,753,746,-746,755,754,745,-745,749,750,755,-745,767,766,820,-822,762,763,769,-769,764,770,769,-764,765,771,770,-765,766,772,771,-766,773,772,766,-768,762,768,773,-768,768,769,733,-735,770,732,733,-770,771,726,732,-771,772,727,726,-772,735,727,772,-774,768,734,735,-774,781,780,737,-739,785,736,737,-781,784,728,736,-786,783,729,728,-785,739,729,783,-783,781,738,739,-783,774,775,780,-782,774,781,782,-780,783,778,779,-783,778,783,784,-778,777,784,785,-777,776,785,780,-776,805,804,775,-775,809,776,775,-805,808,777,776,-810,807,778,777,-809,779,778,807,-807,805,774,779,-807,799,798,792,-794,799,793,794,-801,795,801,800,-795,802,801,795,-797,803,802,796,-798,803,797,792,-799,801,824,823,-801,786,787,804,-806,786,805,806,-792,807,790,791,-807,790,807,808,-790,789,808,809,-789,788,809,804,-788,814,813,745,-747,810,814,746,-748,815,810,747,-749,812,811,749,-745,816,818,763,-763,818,817,764,-764,817,819,765,-765,819,820,766,-766,821,816,762,-768,827,822,798,-800,823,827,799,-801,825,824,801,-803,826,825,802,-804,822,826,803,-799,835,856,855,-837,853,852,839,-839,857,856,835,-835,837,836,855,-855,837,854,853,-839,839,852,857,-835,828,829,865,-865,833,869,867,-833,834,835,829,-829,829,835,836,-831,831,830,836,-838,831,837,838,-833,839,833,832,-839,833,839,834,-829,863,858,851,-851,849,862,863,-851,848,861,862,-850,847,860,861,-849,859,860,847,-847,851,858,859,-847,846,847,844,-846,844,847,848,-844,843,848,849,-843,842,849,850,-842,851,840,841,-851,840,851,846,-846,841,840,852,-854,854,842,841,-854,855,843,842,-855,856,
- 844,843,-856,845,844,856,-858,852,840,845,-858,866,865,829,-831,868,866,830,-832,867,868,831,-833,864,869,833,-829,864,865,866,868,867,-870,883,904,903,-885,901,900,887,-887,905,904,883,-883,885,884,903,-903,885,902,901,-887,887,900,905,-883,876,877,907,-907,881,911,909,-881,882,883,877,-877,877,883,884,-879,879,878,884,-886,879,885,886,-881,887,881,880,-887,881,887,882,-877,873,874,899,-899,897,872,873,-899,896,870,872,-898,895,871,870,-897,875,871,895,-895,899,874,875,-895,894,895,892,-894,892,895,896,-892,891,896,897,-891,890,897,898,-890,899,888,889,-899,888,899,894,-894,889,888,900,-902,902,890,889,-902,903,891,890,-903,904,892,891,-904,893,892,904,-906,900,888,893,-906,908,907,877,-879,910,908,878,-880,909,910,879,-881,906,911,881,-877,943,944,934,-916,913,935,932,-913,932,933,914,-913,936,943,915,913,912,-915,916,917,919,-919,948,949,-963,918,919,921,-921,947,948,962,-923,923,963,964,918,-921,920,921,925,-925,946,947,922,-927,927,923,920,-925,924,925,929,-929,945,946,926,-931,931,927,924,-929,928,929,933,-933,944,945,930,-935,935,931,928,-933,933,937,936,-915,929,938,937,-934,925,939,938,-930,921,940,939,-926,919,941,940,-922,917,942,941,-920,936,937,944,-944,937,938,945,-945,938,939,946,-946,939,940,947,-947,940,941,948,-948,941,942,949,-949,951,952,917,-917,916,961,965,-952,952,950,942,-918,959,960,969,-955,953,973,935,-914,955,959,954,953,913,-916,968,969,960,956,-958,934,956,955,-916,930,957,956,-935,926,958,957,-931,955,956,960,-960,1005,968,957,-959,967,958,926,-923,964,961,916,-919,966,949,942,-951,965,966,950,952,-952,970,963,-924,971,970,923,-928,972,1006,971,927,-932,973,972,931,-936,962,967,-923,980,969,978,-976,974,979,973,-954,977,1006,-973,969,968,976,-979,979,977,972,-974,999,1000,993,-983,981,994,979,-975,995,999,982,981,974,-976,981,982,993,-995,984,983,966,-966,962,949,-1005,986,985,983,-985,986,984,961,-965,1003,1004,985,-988,988,987,985,-987,963,970,988,986,-965,1002,1003,987,-990,990,989,987,-989,990,988,970,-972,1001,1002,989,-992,992,991,989,-991,992,990,971,1006,-978,1000,1001,991,-994,
- 994,993,991,-993,994,992,977,-980,978,996,995,-976,976,997,996,-979,995,996,1000,-1000,996,997,1001,-1001,997,998,1002,-1002,998,967,1003,-1003,962,1004,1003,-968,953,954,980,975,-975,968,1005,-977,954,969,-981,1005,958,998,997,-977,958,967,-999,949,966,-984,965,961,-985,1004,949,983,-986,1007,1008,1048,-1050,1008,1009,1047,-1049,1009,1010,1046,-1048,1010,1011,1045,-1047,1011,1012,1044,-1046,1012,1013,1043,-1045,1013,1014,1054,-1044,1014,1015,1053,-1055,1015,1016,1052,-1054,1016,1017,1051,-1053,1017,1018,1050,-1052,1018,1007,1049,-1051,1017,1016,1015,1014,1013,1012,1011,1010,1009,1008,1007,-1019,1032,1031,1025,-1025,1033,1032,1024,-1024,1034,1033,1023,-1023,1035,1034,1022,-1022,1036,1035,1021,-1021,1037,1036,1020,-1020,1038,1037,1019,-1031,1039,1038,1030,-1030,1040,1039,1029,-1029,1041,1040,1028,-1028,1042,1041,1027,-1027,1031,1042,1026,-1026,1044,1043,1031,-1033,1045,1044,1032,-1034,1046,1045,1033,-1035,1047,1046,1034,-1036,1048,1047,1035,-1037,1049,1048,1036,-1038,1050,1049,1037,-1039,1051,1050,1038,-1040,1052,1051,1039,-1041,1053,1052,1040,-1042,1054,1053,1041,-1043,1043,1054,1042,-1032,1019,1020,1072,-1074,1020,1021,1071,-1073,1021,1022,1070,-1072,1022,1023,1069,-1071,1023,1024,1068,-1070,1024,1025,1067,-1069,1025,1026,1078,-1068,1026,1027,1077,-1079,1027,1028,1076,-1078,1028,1029,1075,-1077,1029,1030,1074,-1076,1030,1019,1073,-1075,1068,1067,1061,-1061,1069,1068,1060,-1060,1070,1069,1059,-1059,1071,1070,1058,-1058,1072,1071,1057,-1057,1073,1072,1056,-1056,1074,1073,1055,-1067,1075,1074,1066,-1066,1076,1075,1065,-1065,1077,1076,1064,-1064,1078,1077,1063,-1063,1067,1078,1062,-1062,1055,1056,1096,-1098,1056,1057,1095,-1097,1057,1058,1094,-1096,1058,1059,1093,-1095,1059,1060,1092,-1094,1060,1061,1091,-1093,1061,1062,1102,-1092,1062,1063,1101,-1103,1063,1064,1100,-1102,1064,1065,1099,-1101,1065,1066,1098,-1100,1066,1055,1097,-1099,1092,1091,1085,-1085,1093,1092,1084,-1084,1094,1093,1083,-1083,1095,1094,1082,-1082,1096,1095,1081,-1081,1097,1096,1080,-1080,1098,1097,1079,-1091,1099,1098,1090,-1090,1100,1099,1089,-1089,
- 1101,1100,1088,-1088,1102,1101,1087,-1087,1091,1102,1086,-1086,1079,1080,1120,-1122,1080,1081,1119,-1121,1081,1082,1118,-1120,1082,1083,1117,-1119,1083,1084,1116,-1118,1084,1085,1115,-1117,1085,1086,1126,-1116,1086,1087,1125,-1127,1087,1088,1124,-1126,1088,1089,1123,-1125,1089,1090,1122,-1124,1090,1079,1121,-1123,1116,1115,1109,-1109,1117,1116,1108,-1108,1118,1117,1107,-1107,1119,1118,1106,-1106,1120,1119,1105,-1105,1121,1120,1104,-1104,1122,1121,1103,-1115,1123,1122,1114,-1114,1124,1123,1113,-1113,1125,1124,1112,-1112,1126,1125,1111,-1111,1115,1126,1110,-1110,1103,1104,1144,-1146,1104,1105,1143,-1145,1105,1106,1142,-1144,1106,1107,1141,-1143,1107,1108,1140,-1142,1108,1109,1139,-1141,1109,1110,1150,-1140,1110,1111,1149,-1151,1111,1112,1148,-1150,1112,1113,1147,-1149,1113,1114,1146,-1148,1114,1103,1145,-1147,1140,1139,1133,-1133,1141,1140,1132,-1132,1142,1141,1131,-1131,1143,1142,1130,-1130,1144,1143,1129,-1129,1145,1144,1128,-1128,1146,1145,1127,-1139,1147,1146,1138,-1138,1148,1147,1137,-1137,1149,1148,1136,-1136,1150,1149,1135,-1135,1139,1150,1134,-1134,1127,1128,1168,-1170,1128,1129,1167,-1169,1129,1130,1166,-1168,1130,1131,1165,-1167,1131,1132,1164,-1166,1132,1133,1163,-1165,1133,1134,1174,-1164,1134,1135,1173,-1175,1135,1136,1172,-1174,1136,1137,1171,-1173,1137,1138,1170,-1172,1138,1127,1169,-1171,1164,1163,1157,-1157,1165,1164,1156,-1156,1166,1165,1155,-1155,1167,1166,1154,-1154,1168,1167,1153,-1153,1169,1168,1152,-1152,1170,1169,1151,-1163,1171,1170,1162,-1162,1172,1171,1161,-1161,1173,1172,1160,-1160,1174,1173,1159,-1159,1163,1174,1158,-1158,1151,1152,1192,-1194,1152,1153,1191,-1193,1153,1154,1190,-1192,1154,1155,1189,-1191,1155,1156,1188,-1190,1156,1157,1187,-1189,1157,1158,1198,-1188,1158,1159,1197,-1199,1159,1160,1196,-1198,1160,1161,1195,-1197,1161,1162,1194,-1196,1162,1151,1193,-1195,1188,1187,1181,-1181,1189,1188,1180,-1180,1190,1189,1179,-1179,1191,1190,1178,-1178,1192,1191,1177,-1177,1193,1192,1176,-1176,1194,1193,1175,-1187,1195,1194,1186,-1186,1196,1195,1185,-1185,1197,1196,1184,-1184,1198,1197,1183,
- -1183,1187,1198,1182,-1182,1175,1176,1216,-1218,1176,1177,1215,-1217,1177,1178,1214,-1216,1178,1179,1213,-1215,1179,1180,1212,-1214,1180,1181,1211,-1213,1181,1182,1222,-1212,1182,1183,1221,-1223,1183,1184,1220,-1222,1184,1185,1219,-1221,1185,1186,1218,-1220,1186,1175,1217,-1219,1212,1211,1205,-1205,1213,1212,1204,-1204,1214,1213,1203,-1203,1215,1214,1202,-1202,1216,1215,1201,-1201,1217,1216,1200,-1200,1218,1217,1199,-1211,1219,1218,1210,-1210,1220,1219,1209,-1209,1221,1220,1208,-1208,1222,1221,1207,-1207,1211,1222,1206,-1206,1199,1200,1240,-1242,1200,1201,1239,-1241,1201,1202,1238,-1240,1202,1203,1237,-1239,1203,1204,1236,-1238,1204,1205,1235,-1237,1205,1206,1246,-1236,1206,1207,1245,-1247,1207,1208,1244,-1246,1208,1209,1243,-1245,1209,1210,1242,-1244,1210,1199,1241,-1243,1236,1235,1229,-1229,1237,1236,1228,-1228,1238,1237,1227,-1227,1239,1238,1226,-1226,1240,1239,1225,-1225,1241,1240,1224,-1224,1242,1241,1223,-1235,1243,1242,1234,-1234,1244,1243,1233,-1233,1245,1244,1232,-1232,1246,1245,1231,-1231,1235,1246,1230,-1230,1223,1224,1264,-1266,1224,1225,1263,-1265,1225,1226,1262,-1264,1226,1227,1261,-1263,1227,1228,1260,-1262,1228,1229,1259,-1261,1229,1230,1270,-1260,1230,1231,1269,-1271,1231,1232,1268,-1270,1232,1233,1267,-1269,1233,1234,1266,-1268,1234,1223,1265,-1267,1260,1259,1253,-1253,1261,1260,1252,-1252,1262,1261,1251,-1251,1263,1262,1250,-1250,1264,1263,1249,-1249,1265,1264,1248,-1248,1266,1265,1247,-1259,1267,1266,1258,-1258,1268,1267,1257,-1257,1269,1268,1256,-1256,1270,1269,1255,-1255,1259,1270,1254,-1254,1247,1248,1288,-1290,1248,1249,1287,-1289,1249,1250,1286,-1288,1250,1251,1285,-1287,1251,1252,1284,-1286,1252,1253,1283,-1285,1253,1254,1294,-1284,1254,1255,1293,-1295,1255,1256,1292,-1294,1256,1257,1291,-1293,1257,1258,1290,-1292,1258,1247,1289,-1291,1284,1283,1277,-1277,1285,1284,1276,-1276,1286,1285,1275,-1275,1287,1286,1274,-1274,1288,1287,1273,-1273,1289,1288,1272,-1272,1290,1289,1271,-1283,1291,1290,1282,-1282,1292,1291,1281,-1281,1293,1292,1280,-1280,1294,1293,1279,-1279,1283,1294,1278,-1278,1271,1272,
- 1312,-1314,1272,1273,1311,-1313,1273,1274,1310,-1312,1274,1275,1309,-1311,1275,1276,1308,-1310,1276,1277,1307,-1309,1277,1278,1318,-1308,1278,1279,1317,-1319,1279,1280,1316,-1318,1280,1281,1315,-1317,1281,1282,1314,-1316,1282,1271,1313,-1315,1308,1307,1301,-1301,1309,1308,1300,-1300,1310,1309,1299,-1299,1311,1310,1298,-1298,1312,1311,1297,-1297,1313,1312,1296,-1296,1314,1313,1295,-1307,1315,1314,1306,-1306,1316,1315,1305,-1305,1317,1316,1304,-1304,1318,1317,1303,-1303,1307,1318,1302,-1302,1295,1296,1336,-1338,1296,1297,1335,-1337,1297,1298,1334,-1336,1298,1299,1333,-1335,1299,1300,1332,-1334,1300,1301,1331,-1333,1301,1302,1342,-1332,1302,1303,1341,-1343,1303,1304,1340,-1342,1304,1305,1339,-1341,1305,1306,1338,-1340,1306,1295,1337,-1339,1332,1331,1325,-1325,1333,1332,1324,-1324,1334,1333,1323,-1323,1335,1334,1322,-1322,1336,1335,1321,-1321,1337,1336,1320,-1320,1338,1337,1319,-1331,1339,1338,1330,-1330,1340,1339,1329,-1329,1341,1340,1328,-1328,1342,1341,1327,-1327,1331,1342,1326,-1326,1319,1320,1360,-1362,1320,1321,1359,-1361,1321,1322,1358,-1360,1322,1323,1357,-1359,1323,1324,1356,-1358,1324,1325,1355,-1357,1325,1326,1366,-1356,1326,1327,1365,-1367,1327,1328,1364,-1366,1328,1329,1363,-1365,1329,1330,1362,-1364,1330,1319,1361,-1363,1356,1355,1349,-1349,1357,1356,1348,-1348,1358,1357,1347,-1347,1359,1358,1346,-1346,1360,1359,1345,-1345,1361,1360,1344,-1344,1362,1361,1343,-1355,1363,1362,1354,-1354,1364,1363,1353,-1353,1365,1364,1352,-1352,1366,1365,1351,-1351,1355,1366,1350,-1350,1343,1344,1384,-1386,1344,1345,1383,-1385,1345,1346,1382,-1384,1346,1347,1381,-1383,1347,1348,1380,-1382,1348,1349,1379,-1381,1349,1350,1390,-1380,1350,1351,1389,-1391,1351,1352,1388,-1390,1352,1353,1387,-1389,1353,1354,1386,-1388,1354,1343,1385,-1387,1380,1379,1373,-1373,1381,1380,1372,-1372,1382,1381,1371,-1371,1383,1382,1370,-1370,1384,1383,1369,-1369,1385,1384,1368,-1368,1386,1385,1367,-1379,1387,1386,1378,-1378,1388,1387,1377,-1377,1389,1388,1376,-1376,1390,1389,1375,-1375,1379,1390,1374,-1374,1378,1367,1368,1369,1370,1371,1372,1373,1374,
- 1375,1376,-1378,1391,1392,1432,-1434,1392,1393,1431,-1433,1393,1394,1430,-1432,1394,1395,1429,-1431,1395,1396,1428,-1430,1396,1397,1427,-1429,1397,1398,1438,-1428,1398,1399,1437,-1439,1399,1400,1436,-1438,1400,1401,1435,-1437,1401,1402,1434,-1436,1402,1391,1433,-1435,1401,1400,1399,1398,1397,1396,1395,1394,1393,1392,1391,-1403,1416,1415,1409,-1409,1417,1416,1408,-1408,1418,1417,1407,-1407,1419,1418,1406,-1406,1420,1419,1405,-1405,1421,1420,1404,-1404,1422,1421,1403,-1415,1423,1422,1414,-1414,1424,1423,1413,-1413,1425,1424,1412,-1412,1426,1425,1411,-1411,1415,1426,1410,-1410,1428,1427,1415,-1417,1429,1428,1416,-1418,1430,1429,1417,-1419,1431,1430,1418,-1420,1432,1431,1419,-1421,1433,1432,1420,-1422,1434,1433,1421,-1423,1435,1434,1422,-1424,1436,1435,1423,-1425,1437,1436,1424,-1426,1438,1437,1425,-1427,1427,1438,1426,-1416,1403,1404,1456,-1458,1404,1405,1455,-1457,1405,1406,1454,-1456,1406,1407,1453,-1455,1407,1408,1452,-1454,1408,1409,1451,-1453,1409,1410,1462,-1452,1410,1411,1461,-1463,1411,1412,1460,-1462,1412,1413,1459,-1461,1413,1414,1458,-1460,1414,1403,1457,-1459,1452,1451,1445,-1445,1453,1452,1444,-1444,1454,1453,1443,-1443,1455,1454,1442,-1442,1456,1455,1441,-1441,1457,1456,1440,-1440,1458,1457,1439,-1451,1459,1458,1450,-1450,1460,1459,1449,-1449,1461,1460,1448,-1448,1462,1461,1447,-1447,1451,1462,1446,-1446,1439,1440,1480,-1482,1440,1441,1479,-1481,1441,1442,1478,-1480,1442,1443,1477,-1479,1443,1444,1476,-1478,1444,1445,1475,-1477,1445,1446,1486,-1476,1446,1447,1485,-1487,1447,1448,1484,-1486,1448,1449,1483,-1485,1449,1450,1482,-1484,1450,1439,1481,-1483,1476,1475,1469,-1469,1477,1476,1468,-1468,1478,1477,1467,-1467,1479,1478,1466,-1466,1480,1479,1465,-1465,1481,1480,1464,-1464,1482,1481,1463,-1475,1483,1482,1474,-1474,1484,1483,1473,-1473,1485,1484,1472,-1472,1486,1485,1471,-1471,1475,1486,1470,-1470,1463,1464,1504,-1506,1464,1465,1503,-1505,1465,1466,1502,-1504,1466,1467,1501,-1503,1467,1468,1500,-1502,1468,1469,1499,-1501,1469,1470,1510,-1500,1470,1471,1509,-1511,1471,1472,1508,-1510,1472,1473,1507,-1509,
- 1473,1474,1506,-1508,1474,1463,1505,-1507,1500,1499,1493,-1493,1501,1500,1492,-1492,1502,1501,1491,-1491,1503,1502,1490,-1490,1504,1503,1489,-1489,1505,1504,1488,-1488,1506,1505,1487,-1499,1507,1506,1498,-1498,1508,1507,1497,-1497,1509,1508,1496,-1496,1510,1509,1495,-1495,1499,1510,1494,-1494,1487,1488,1528,-1530,1488,1489,1527,-1529,1489,1490,1526,-1528,1490,1491,1525,-1527,1491,1492,1524,-1526,1492,1493,1523,-1525,1493,1494,1534,-1524,1494,1495,1533,-1535,1495,1496,1532,-1534,1496,1497,1531,-1533,1497,1498,1530,-1532,1498,1487,1529,-1531,1524,1523,1517,-1517,1525,1524,1516,-1516,1526,1525,1515,-1515,1527,1526,1514,-1514,1528,1527,1513,-1513,1529,1528,1512,-1512,1530,1529,1511,-1523,1531,1530,1522,-1522,1532,1531,1521,-1521,1533,1532,1520,-1520,1534,1533,1519,-1519,1523,1534,1518,-1518,1511,1512,1552,-1554,1512,1513,1551,-1553,1513,1514,1550,-1552,1514,1515,1549,-1551,1515,1516,1548,-1550,1516,1517,1547,-1549,1517,1518,1558,-1548,1518,1519,1557,-1559,1519,1520,1556,-1558,1520,1521,1555,-1557,1521,1522,1554,-1556,1522,1511,1553,-1555,1548,1547,1541,-1541,1549,1548,1540,-1540,1550,1549,1539,-1539,1551,1550,1538,-1538,1552,1551,1537,-1537,1553,1552,1536,-1536,1554,1553,1535,-1547,1555,1554,1546,-1546,1556,1555,1545,-1545,1557,1556,1544,-1544,1558,1557,1543,-1543,1547,1558,1542,-1542,1535,1536,1576,-1578,1536,1537,1575,-1577,1537,1538,1574,-1576,1538,1539,1573,-1575,1539,1540,1572,-1574,1540,1541,1571,-1573,1541,1542,1582,-1572,1542,1543,1581,-1583,1543,1544,1580,-1582,1544,1545,1579,-1581,1545,1546,1578,-1580,1546,1535,1577,-1579,1572,1571,1565,-1565,1573,1572,1564,-1564,1574,1573,1563,-1563,1575,1574,1562,-1562,1576,1575,1561,-1561,1577,1576,1560,-1560,1578,1577,1559,-1571,1579,1578,1570,-1570,1580,1579,1569,-1569,1581,1580,1568,-1568,1582,1581,1567,-1567,1571,1582,1566,-1566,1559,1560,1600,-1602,1560,1561,1599,-1601,1561,1562,1598,-1600,1562,1563,1597,-1599,1563,1564,1596,-1598,1564,1565,1595,-1597,1565,1566,1606,-1596,1566,1567,1605,-1607,1567,1568,1604,-1606,1568,1569,1603,-1605,1569,1570,1602,-1604,1570,1559,1601,
- -1603,1596,1595,1589,-1589,1597,1596,1588,-1588,1598,1597,1587,-1587,1599,1598,1586,-1586,1600,1599,1585,-1585,1601,1600,1584,-1584,1602,1601,1583,-1595,1603,1602,1594,-1594,1604,1603,1593,-1593,1605,1604,1592,-1592,1606,1605,1591,-1591,1595,1606,1590,-1590,1583,1584,1624,-1626,1584,1585,1623,-1625,1585,1586,1622,-1624,1586,1587,1621,-1623,1587,1588,1620,-1622,1588,1589,1619,-1621,1589,1590,1630,-1620,1590,1591,1629,-1631,1591,1592,1628,-1630,1592,1593,1627,-1629,1593,1594,1626,-1628,1594,1583,1625,-1627,1620,1619,1613,-1613,1621,1620,1612,-1612,1622,1621,1611,-1611,1623,1622,1610,-1610,1624,1623,1609,-1609,1625,1624,1608,-1608,1626,1625,1607,-1619,1627,1626,1618,-1618,1628,1627,1617,-1617,1629,1628,1616,-1616,1630,1629,1615,-1615,1619,1630,1614,-1614,1607,1608,1648,-1650,1608,1609,1647,-1649,1609,1610,1646,-1648,1610,1611,1645,-1647,1611,1612,1644,-1646,1612,1613,1643,-1645,1613,1614,1654,-1644,1614,1615,1653,-1655,1615,1616,1652,-1654,1616,1617,1651,-1653,1617,1618,1650,-1652,1618,1607,1649,-1651,1644,1643,1637,-1637,1645,1644,1636,-1636,1646,1645,1635,-1635,1647,1646,1634,-1634,1648,1647,1633,-1633,1649,1648,1632,-1632,1650,1649,1631,-1643,1651,1650,1642,-1642,1652,1651,1641,-1641,1653,1652,1640,-1640,1654,1653,1639,-1639,1643,1654,1638,-1638,1631,1632,1672,-1674,1632,1633,1671,-1673,1633,1634,1670,-1672,1634,1635,1669,-1671,1635,1636,1668,-1670,1636,1637,1667,-1669,1637,1638,1678,-1668,1638,1639,1677,-1679,1639,1640,1676,-1678,1640,1641,1675,-1677,1641,1642,1674,-1676,1642,1631,1673,-1675,1668,1667,1661,-1661,1669,1668,1660,-1660,1670,1669,1659,-1659,1671,1670,1658,-1658,1672,1671,1657,-1657,1673,1672,1656,-1656,1674,1673,1655,-1667,1675,1674,1666,-1666,1676,1675,1665,-1665,1677,1676,1664,-1664,1678,1677,1663,-1663,1667,1678,1662,-1662,1655,1656,1696,-1698,1656,1657,1695,-1697,1657,1658,1694,-1696,1658,1659,1693,-1695,1659,1660,1692,-1694,1660,1661,1691,-1693,1661,1662,1702,-1692,1662,1663,1701,-1703,1663,1664,1700,-1702,1664,1665,1699,-1701,1665,1666,1698,-1700,1666,1655,1697,-1699,1692,1691,1685,-1685,1693,1692,
- 1684,-1684,1694,1693,1683,-1683,1695,1694,1682,-1682,1696,1695,1681,-1681,1697,1696,1680,-1680,1698,1697,1679,-1691,1699,1698,1690,-1690,1700,1699,1689,-1689,1701,1700,1688,-1688,1702,1701,1687,-1687,1691,1702,1686,-1686,1679,1680,1720,-1722,1680,1681,1719,-1721,1681,1682,1718,-1720,1682,1683,1717,-1719,1683,1684,1716,-1718,1684,1685,1715,-1717,1685,1686,1726,-1716,1686,1687,1725,-1727,1687,1688,1724,-1726,1688,1689,1723,-1725,1689,1690,1722,-1724,1690,1679,1721,-1723,1716,1715,1709,-1709,1717,1716,1708,-1708,1718,1717,1707,-1707,1719,1718,1706,-1706,1720,1719,1705,-1705,1721,1720,1704,-1704,1722,1721,1703,-1715,1723,1722,1714,-1714,1724,1723,1713,-1713,1725,1724,1712,-1712,1726,1725,1711,-1711,1715,1726,1710,-1710,1703,1704,1744,-1746,1704,1705,1743,-1745,1705,1706,1742,-1744,1706,1707,1741,-1743,1707,1708,1740,-1742,1708,1709,1739,-1741,1709,1710,1750,-1740,1710,1711,1749,-1751,1711,1712,1748,-1750,1712,1713,1747,-1749,1713,1714,1746,-1748,1714,1703,1745,-1747,1740,1739,1733,-1733,1741,1740,1732,-1732,1742,1741,1731,-1731,1743,1742,1730,-1730,1744,1743,1729,-1729,1745,1744,1728,-1728,1746,1745,1727,-1739,1747,1746,1738,-1738,1748,1747,1737,-1737,1749,1748,1736,-1736,1750,1749,1735,-1735,1739,1750,1734,-1734,1727,1728,1768,-1770,1728,1729,1767,-1769,1729,1730,1766,-1768,1730,1731,1765,-1767,1731,1732,1764,-1766,1732,1733,1763,-1765,1733,1734,1774,-1764,1734,1735,1773,-1775,1735,1736,1772,-1774,1736,1737,1771,-1773,1737,1738,1770,-1772,1738,1727,1769,-1771,1764,1763,1757,-1757,1765,1764,1756,-1756,1766,1765,1755,-1755,1767,1766,1754,-1754,1768,1767,1753,-1753,1769,1768,1752,-1752,1770,1769,1751,-1763,1771,1770,1762,-1762,1772,1771,1761,-1761,1773,1772,1760,-1760,1774,1773,1759,-1759,1763,1774,1758,-1758,1762,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,-1762,1775,1776,1816,-1818,1776,1777,1815,-1817,1777,1778,1814,-1816,1778,1779,1813,-1815,1779,1780,1812,-1814,1780,1781,1811,-1813,1781,1782,1822,-1812,1782,1783,1821,-1823,1783,1784,1820,-1822,1784,1785,1819,-1821,1785,1786,1818,-1820,1786,1775,1817,-1819,1785,
- 1784,1783,1782,1781,1780,1779,1778,1777,1776,1775,-1787,1800,1799,1793,-1793,1801,1800,1792,-1792,1802,1801,1791,-1791,1803,1802,1790,-1790,1804,1803,1789,-1789,1805,1804,1788,-1788,1806,1805,1787,-1799,1807,1806,1798,-1798,1808,1807,1797,-1797,1809,1808,1796,-1796,1810,1809,1795,-1795,1799,1810,1794,-1794,1812,1811,1799,-1801,1813,1812,1800,-1802,1814,1813,1801,-1803,1815,1814,1802,-1804,1816,1815,1803,-1805,1817,1816,1804,-1806,1818,1817,1805,-1807,1819,1818,1806,-1808,1820,1819,1807,-1809,1821,1820,1808,-1810,1822,1821,1809,-1811,1811,1822,1810,-1800,1787,1788,1840,-1842,1788,1789,1839,-1841,1789,1790,1838,-1840,1790,1791,1837,-1839,1791,1792,1836,-1838,1792,1793,1835,-1837,1793,1794,1846,-1836,1794,1795,1845,-1847,1795,1796,1844,-1846,1796,1797,1843,-1845,1797,1798,1842,-1844,1798,1787,1841,-1843,1836,1835,1829,-1829,1837,1836,1828,-1828,1838,1837,1827,-1827,1839,1838,1826,-1826,1840,1839,1825,-1825,1841,1840,1824,-1824,1842,1841,1823,-1835,1843,1842,1834,-1834,1844,1843,1833,-1833,1845,1844,1832,-1832,1846,1845,1831,-1831,1835,1846,1830,-1830,1823,1824,1864,-1866,1824,1825,1863,-1865,1825,1826,1862,-1864,1826,1827,1861,-1863,1827,1828,1860,-1862,1828,1829,1859,-1861,1829,1830,1870,-1860,1830,1831,1869,-1871,1831,1832,1868,-1870,1832,1833,1867,-1869,1833,1834,1866,-1868,1834,1823,1865,-1867,1860,1859,1853,-1853,1861,1860,1852,-1852,1862,1861,1851,-1851,1863,1862,1850,-1850,1864,1863,1849,-1849,1865,1864,1848,-1848,1866,1865,1847,-1859,1867,1866,1858,-1858,1868,1867,1857,-1857,1869,1868,1856,-1856,1870,1869,1855,-1855,1859,1870,1854,-1854,1847,1848,1888,-1890,1848,1849,1887,-1889,1849,1850,1886,-1888,1850,1851,1885,-1887,1851,1852,1884,-1886,1852,1853,1883,-1885,1853,1854,1894,-1884,1854,1855,1893,-1895,1855,1856,1892,-1894,1856,1857,1891,-1893,1857,1858,1890,-1892,1858,1847,1889,-1891,1884,1883,1877,-1877,1885,1884,1876,-1876,1886,1885,1875,-1875,1887,1886,1874,-1874,1888,1887,1873,-1873,1889,1888,1872,-1872,1890,1889,1871,-1883,1891,1890,1882,-1882,1892,1891,1881,-1881,1893,1892,1880,-1880,1894,1893,1879,-1879,
- 1883,1894,1878,-1878,1871,1872,1912,-1914,1872,1873,1911,-1913,1873,1874,1910,-1912,1874,1875,1909,-1911,1875,1876,1908,-1910,1876,1877,1907,-1909,1877,1878,1918,-1908,1878,1879,1917,-1919,1879,1880,1916,-1918,1880,1881,1915,-1917,1881,1882,1914,-1916,1882,1871,1913,-1915,1908,1907,1901,-1901,1909,1908,1900,-1900,1910,1909,1899,-1899,1911,1910,1898,-1898,1912,1911,1897,-1897,1913,1912,1896,-1896,1914,1913,1895,-1907,1915,1914,1906,-1906,1916,1915,1905,-1905,1917,1916,1904,-1904,1918,1917,1903,-1903,1907,1918,1902,-1902,1895,1896,1936,-1938,1896,1897,1935,-1937,1897,1898,1934,-1936,1898,1899,1933,-1935,1899,1900,1932,-1934,1900,1901,1931,-1933,1901,1902,1942,-1932,1902,1903,1941,-1943,1903,1904,1940,-1942,1904,1905,1939,-1941,1905,1906,1938,-1940,1906,1895,1937,-1939,1932,1931,1925,-1925,1933,1932,1924,-1924,1934,1933,1923,-1923,1935,1934,1922,-1922,1936,1935,1921,-1921,1937,1936,1920,-1920,1938,1937,1919,-1931,1939,1938,1930,-1930,1940,1939,1929,-1929,1941,1940,1928,-1928,1942,1941,1927,-1927,1931,1942,1926,-1926,1919,1920,1960,-1962,1920,1921,1959,-1961,1921,1922,1958,-1960,1922,1923,1957,-1959,1923,1924,1956,-1958,1924,1925,1955,-1957,1925,1926,1966,-1956,1926,1927,1965,-1967,1927,1928,1964,-1966,1928,1929,1963,-1965,1929,1930,1962,-1964,1930,1919,1961,-1963,1956,1955,1949,-1949,1957,1956,1948,-1948,1958,1957,1947,-1947,1959,1958,1946,-1946,1960,1959,1945,-1945,1961,1960,1944,-1944,1962,1961,1943,-1955,1963,1962,1954,-1954,1964,1963,1953,-1953,1965,1964,1952,-1952,1966,1965,1951,-1951,1955,1966,1950,-1950,1943,1944,1984,-1986,1944,1945,1983,-1985,1945,1946,1982,-1984,1946,1947,1981,-1983,1947,1948,1980,-1982,1948,1949,1979,-1981,1949,1950,1990,-1980,1950,1951,1989,-1991,1951,1952,1988,-1990,1952,1953,1987,-1989,1953,1954,1986,-1988,1954,1943,1985,-1987,1980,1979,1973,-1973,1981,1980,1972,-1972,1982,1981,1971,-1971,1983,1982,1970,-1970,1984,1983,1969,-1969,1985,1984,1968,-1968,1986,1985,1967,-1979,1987,1986,1978,-1978,1988,1987,1977,-1977,1989,1988,1976,-1976,1990,1989,1975,-1975,1979,1990,1974,-1974,1967,1968,2008,
- -2010,1968,1969,2007,-2009,1969,1970,2006,-2008,1970,1971,2005,-2007,1971,1972,2004,-2006,1972,1973,2003,-2005,1973,1974,2014,-2004,1974,1975,2013,-2015,1975,1976,2012,-2014,1976,1977,2011,-2013,1977,1978,2010,-2012,1978,1967,2009,-2011,2004,2003,1997,-1997,2005,2004,1996,-1996,2006,2005,1995,-1995,2007,2006,1994,-1994,2008,2007,1993,-1993,2009,2008,1992,-1992,2010,2009,1991,-2003,2011,2010,2002,-2002,2012,2011,2001,-2001,2013,2012,2000,-2000,2014,2013,1999,-1999,2003,2014,1998,-1998,1991,1992,2032,-2034,1992,1993,2031,-2033,1993,1994,2030,-2032,1994,1995,2029,-2031,1995,1996,2028,-2030,1996,1997,2027,-2029,1997,1998,2038,-2028,1998,1999,2037,-2039,1999,2000,2036,-2038,2000,2001,2035,-2037,2001,2002,2034,-2036,2002,1991,2033,-2035,2028,2027,2021,-2021,2029,2028,2020,-2020,2030,2029,2019,-2019,2031,2030,2018,-2018,2032,2031,2017,-2017,2033,2032,2016,-2016,2034,2033,2015,-2027,2035,2034,2026,-2026,2036,2035,2025,-2025,2037,2036,2024,-2024,2038,2037,2023,-2023,2027,2038,2022,-2022,2015,2016,2056,-2058,2016,2017,2055,-2057,2017,2018,2054,-2056,2018,2019,2053,-2055,2019,2020,2052,-2054,2020,2021,2051,-2053,2021,2022,2062,-2052,2022,2023,2061,-2063,2023,2024,2060,-2062,2024,2025,2059,-2061,2025,2026,2058,-2060,2026,2015,2057,-2059,2052,2051,2045,-2045,2053,2052,2044,-2044,2054,2053,2043,-2043,2055,2054,2042,-2042,2056,2055,2041,-2041,2057,2056,2040,-2040,2058,2057,2039,-2051,2059,2058,2050,-2050,2060,2059,2049,-2049,2061,2060,2048,-2048,2062,2061,2047,-2047,2051,2062,2046,-2046,2039,2040,2080,-2082,2040,2041,2079,-2081,2041,2042,2078,-2080,2042,2043,2077,-2079,2043,2044,2076,-2078,2044,2045,2075,-2077,2045,2046,2086,-2076,2046,2047,2085,-2087,2047,2048,2084,-2086,2048,2049,2083,-2085,2049,2050,2082,-2084,2050,2039,2081,-2083,2076,2075,2069,-2069,2077,2076,2068,-2068,2078,2077,2067,-2067,2079,2078,2066,-2066,2080,2079,2065,-2065,2081,2080,2064,-2064,2082,2081,2063,-2075,2083,2082,2074,-2074,2084,2083,2073,-2073,2085,2084,2072,-2072,2086,2085,2071,-2071,2075,2086,2070,-2070,2063,2064,2104,-2106,2064,2065,2103,-2105,2065,2066,
- 2102,-2104,2066,2067,2101,-2103,2067,2068,2100,-2102,2068,2069,2099,-2101,2069,2070,2110,-2100,2070,2071,2109,-2111,2071,2072,2108,-2110,2072,2073,2107,-2109,2073,2074,2106,-2108,2074,2063,2105,-2107,2100,2099,2093,-2093,2101,2100,2092,-2092,2102,2101,2091,-2091,2103,2102,2090,-2090,2104,2103,2089,-2089,2105,2104,2088,-2088,2106,2105,2087,-2099,2107,2106,2098,-2098,2108,2107,2097,-2097,2109,2108,2096,-2096,2110,2109,2095,-2095,2099,2110,2094,-2094,2087,2088,2128,-2130,2088,2089,2127,-2129,2089,2090,2126,-2128,2090,2091,2125,-2127,2091,2092,2124,-2126,2092,2093,2123,-2125,2093,2094,2134,-2124,2094,2095,2133,-2135,2095,2096,2132,-2134,2096,2097,2131,-2133,2097,2098,2130,-2132,2098,2087,2129,-2131,2124,2123,2117,-2117,2125,2124,2116,-2116,2126,2125,2115,-2115,2127,2126,2114,-2114,2128,2127,2113,-2113,2129,2128,2112,-2112,2130,2129,2111,-2123,2131,2130,2122,-2122,2132,2131,2121,-2121,2133,2132,2120,-2120,2134,2133,2119,-2119,2123,2134,2118,-2118,2111,2112,2152,-2154,2112,2113,2151,-2153,2113,2114,2150,-2152,2114,2115,2149,-2151,2115,2116,2148,-2150,2116,2117,2147,-2149,2117,2118,2158,-2148,2118,2119,2157,-2159,2119,2120,2156,-2158,2120,2121,2155,-2157,2121,2122,2154,-2156,2122,2111,2153,-2155,2148,2147,2141,-2141,2149,2148,2140,-2140,2150,2149,2139,-2139,2151,2150,2138,-2138,2152,2151,2137,-2137,2153,2152,2136,-2136,2154,2153,2135,-2147,2155,2154,2146,-2146,2156,2155,2145,-2145,2157,2156,2144,-2144,2158,2157,2143,-2143,2147,2158,2142,-2142,2146,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,-2146,2159,2160,2161,-2163,2163,2164,2165,-2167,2167,2168,2160,-2160,2169,2170,2171,-2173,2173,2174,2172,-2172,2162,2161,2174,-2174,2163,2170,2169,-2165,2161,2160,2168,2165,2164,2169,2172,-2175,2166,2165,2168,-2168,2178,2202,2203,-2180,2175,2159,2162,-2177,2177,2163,2166,-2201,2170,2178,2179,-2172,2180,2173,2171,-2180,2176,2162,2173,-2181,2177,2178,2170,-2164,2181,2182,2183,-2185,2185,2186,2187,-2189,2189,2190,2182,-2182,2191,2192,2193,-2195,2195,2196,2194,-2194,2184,2183,2196,-2196,2185,2192,2191,-2187,2188,2189,2181,2184,2195,
- 2193,2192,-2186,2188,2187,2190,-2190,2182,2197,2198,-2184,2186,2199,2200,-2188,2190,2201,2197,-2183,2196,2204,2203,-2195,2183,2198,2204,-2197,2186,2191,2202,-2200,2187,2200,2201,-2191,2198,2197,2175,-2177,2200,2199,-2178,2197,2201,-2176,2203,2204,2180,-2180,2204,2198,2176,-2181,2199,2202,2178,-2178,2201,2167,2159,-2176,2201,2200,2166,-2168,2203,2202,2191,-2195,2205,2206,2414,-2416,2206,2207,2413,-2415,2207,2208,2412,-2414,2208,2209,2411,-2413,2209,2210,2410,-2412,2210,2211,2409,-2411,2211,2212,2420,-2410,2212,2213,2419,-2421,2213,2214,2418,-2420,2214,2215,2417,-2419,2215,2216,2416,-2418,2216,2205,2415,-2417,2230,2229,2223,-2223,2231,2230,2222,-2222,2232,2231,2221,-2221,2233,2232,2220,-2220,2234,2233,2219,-2219,2235,2234,2218,-2218,2236,2235,2217,-2229,2237,2236,2228,-2228,2238,2237,2227,-2227,2239,2238,2226,-2226,2240,2239,2225,-2225,2229,2240,2224,-2224,2217,2218,2258,-2260,2218,2219,2257,-2259,2219,2220,2256,-2258,2220,2221,2255,-2257,2221,2222,2254,-2256,2222,2223,2253,-2255,2223,2224,2264,-2254,2224,2225,2263,-2265,2225,2226,2262,-2264,2226,2227,2261,-2263,2227,2228,2260,-2262,2228,2217,2259,-2261,2254,2253,2247,-2247,2255,2254,2246,-2246,2256,2255,2245,-2245,2257,2256,2244,-2244,2258,2257,2243,-2243,2259,2258,2242,-2242,2260,2259,2241,-2253,2261,2260,2252,-2252,2262,2261,2251,-2251,2263,2262,2250,-2250,2264,2263,2249,-2249,2253,2264,2248,-2248,2241,2242,2282,-2284,2242,2243,2281,-2283,2243,2244,2280,-2282,2244,2245,2279,-2281,2245,2246,2278,-2280,2246,2247,2277,-2279,2247,2248,2288,-2278,2248,2249,2287,-2289,2249,2250,2286,-2288,2250,2251,2285,-2287,2251,2252,2284,-2286,2252,2241,2283,-2285,2278,2277,2271,-2271,2279,2278,2270,-2270,2280,2279,2269,-2269,2281,2280,2268,-2268,2282,2281,2267,-2267,2283,2282,2266,-2266,2284,2283,2265,-2277,2285,2284,2276,-2276,2286,2285,2275,-2275,2287,2286,2274,-2274,2288,2287,2273,-2273,2277,2288,2272,-2272,2265,2266,2306,-2308,2266,2267,2305,-2307,2267,2268,2304,-2306,2268,2269,2303,-2305,2269,2270,2302,-2304,2270,2271,2301,-2303,2271,2272,2312,-2302,2272,2273,2311,-2313,2273,2274,
- 2310,-2312,2274,2275,2309,-2311,2275,2276,2308,-2310,2276,2265,2307,-2309,2302,2301,2295,-2295,2303,2302,2294,-2294,2304,2303,2293,-2293,2305,2304,2292,-2292,2306,2305,2291,-2291,2307,2306,2290,-2290,2308,2307,2289,-2301,2309,2308,2300,-2300,2310,2309,2299,-2299,2311,2310,2298,-2298,2312,2311,2297,-2297,2301,2312,2296,-2296,2289,2290,2330,-2332,2290,2291,2329,-2331,2291,2292,2328,-2330,2292,2293,2327,-2329,2293,2294,2326,-2328,2294,2295,2325,-2327,2295,2296,2336,-2326,2296,2297,2335,-2337,2297,2298,2334,-2336,2298,2299,2333,-2335,2299,2300,2332,-2334,2300,2289,2331,-2333,2326,2325,2319,-2319,2327,2326,2318,-2318,2328,2327,2317,-2317,2329,2328,2316,-2316,2330,2329,2315,-2315,2331,2330,2314,-2314,2332,2331,2313,-2325,2333,2332,2324,-2324,2334,2333,2323,-2323,2335,2334,2322,-2322,2336,2335,2321,-2321,2325,2336,2320,-2320,2313,2314,2354,-2356,2314,2315,2353,-2355,2315,2316,2352,-2354,2316,2317,2351,-2353,2317,2318,2350,-2352,2318,2319,2349,-2351,2319,2320,2360,-2350,2320,2321,2359,-2361,2321,2322,2358,-2360,2322,2323,2357,-2359,2323,2324,2356,-2358,2324,2313,2355,-2357,2350,2349,2343,-2343,2351,2350,2342,-2342,2352,2351,2341,-2341,2353,2352,2340,-2340,2354,2353,2339,-2339,2355,2354,2338,-2338,2356,2355,2337,-2349,2357,2356,2348,-2348,2358,2357,2347,-2347,2359,2358,2346,-2346,2360,2359,2345,-2345,2349,2360,2344,-2344,2337,2338,2378,-2380,2338,2339,2377,-2379,2339,2340,2376,-2378,2340,2341,2375,-2377,2341,2342,2374,-2376,2342,2343,2373,-2375,2343,2344,2384,-2374,2344,2345,2383,-2385,2345,2346,2382,-2384,2346,2347,2381,-2383,2347,2348,2380,-2382,2348,2337,2379,-2381,2374,2373,2367,-2367,2375,2374,2366,-2366,2376,2375,2365,-2365,2377,2376,2364,-2364,2378,2377,2363,-2363,2379,2378,2362,-2362,2380,2379,2361,-2373,2381,2380,2372,-2372,2382,2381,2371,-2371,2383,2382,2370,-2370,2384,2383,2369,-2369,2373,2384,2368,-2368,2361,2362,2402,-2404,2362,2363,2401,-2403,2363,2364,2400,-2402,2364,2365,2399,-2401,2365,2366,2398,-2400,2366,2367,2397,-2399,2367,2368,2408,-2398,2368,2369,2407,-2409,2369,2370,2406,-2408,2370,2371,2405,-2407,2371,
- 2372,2404,-2406,2372,2361,2403,-2405,2398,2397,2391,-2391,2399,2398,2390,-2390,2400,2399,2389,-2389,2401,2400,2388,-2388,2402,2401,2387,-2387,2403,2402,2386,-2386,2404,2403,2385,-2397,2405,2404,2396,-2396,2406,2405,2395,-2395,2407,2406,2394,-2394,2408,2407,2393,-2393,2397,2408,2392,-2392,2396,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,-2396,2206,2205,2216,2215,2214,2213,2212,2211,2210,2209,2208,-2208,2410,2409,2229,-2231,2411,2410,2230,-2232,2412,2411,2231,-2233,2413,2412,2232,-2234,2414,2413,2233,-2235,2415,2414,2234,-2236,2416,2415,2235,-2237,2417,2416,2236,-2238,2418,2417,2237,-2239,2419,2418,2238,-2240,2420,2419,2239,-2241,2409,2420,2240,-2230,2422,2428,2427,-2422,2423,2429,2432,-2427,2425,2431,2428,-2423,2424,2423,2426,2425,2422,-2422,2423,2424,2430,-2430,2425,2426,2432,-2432,2427,2430,2424,-2422,2427,2428,2431,2432,2429,-2431
- }
- Edges: *4617 {
- a: 6,1,3,0,2,1208,13,12,11,15,19,26,21,23,20,22,1228,30,29,31,28,1244,34,37,33,35,32,38,36,43,40,50,55,65,53,52,49,51,56,58,48,63,54,68,70,71,69,73,77,86,79,78,83,75,74,90,95,105,93,92,89,91,96,98,88,103,94,108,110,111,109,119,117,113,115,120,112,127,118,130,135,145,133,132,129,131,128,138,136,143,134,150,155,165,153,152,149,151,156,158,148,163,154,168,170,171,169,173,177,186,179,178,183,175,174,190,195,205,193,192,189,191,196,198,188,203,194,208,210,211,209,219,217,213,215,220,212,227,218,230,235,245,233,232,229,231,228,238,236,243,234,250,255,265,253,252,249,251,256,258,248,263,254,268,270,271,269,273,277,286,279,278,283,275,274,290,295,305,293,292,289,291,296,298,288,303,294,308,310,311,309,319,317,313,315,320,312,327,318,330,335,345,333,332,329,331,328,338,336,343,334,351,348,1260,354,353,355,352,1272,362,357,359,1284,358,356,769,773,777,770,774,793,797,801,794,798,441,440,439,589,412,594,403,593,410,675,420,424,670,425,678,419,676,677,422,763,787,437,442,438,406,448,590,581,586,444,597,602,421,681,686,762,780,786,804,544,526,415,584,405,600,427,684,766,782,790,806,480,390,391,483,464,485,488,491,387,399,396,460,504,478,479,507,484,509,486,515,492,496,493,500,528,502,503,531,508,533,510,539,516,520,517,524,392,1296,549,458,386,398,384,385,395,1299,1305,558,608,559,561,564,613,568,617,572,624,575,580,582,560,557,585,562,565,566,569,570,576,573,578,606,407,404,609,466,402,414,400,401,411,408,470,631,629,632,655,634,657,640,664,643,648,651,649,426,418,436,416,417,432,429,474,671,669,630,635,636,637,638,644,641,646,692,867,689,693,696,874,700,878,704,885,707,712,716,690,691,717,694,697,698,701,702,708,705,710,740,714,715,741,718,721,722,725,726,732,729,734,764,738,739,765,742,745,746,749,750,756,753,758,812,834,809,827,832,841,828,845,824,852,818,816,810,788,785,815,808,817,803,823,800,789,796,792,893,373,374,908,450,371,382,369,370,379,376,454,1314,375,372,859,456,857,378,865,368,383,380,452,1336,1322,869,919,866,870,873,917,877,365,881,367,364,889,891,836,833,896,856,898,851,904,848,837,844,840,349,
- 925,921,1262,1331,350,914,918,366,922,926,930,942,940,950,943,948,945,965,954,957,944,961,952,946,967,941,953,947,955,972,1345,981,984,1365,1381,988,1393,992,1405,1001,1004,1425,1441,1008,1453,1012,1465,1021,1024,1485,1501,1028,1029,1026,1033,1030,1175,1179,1183,1176,1180,1058,1169,1168,1186,1053,1043,1060,1172,1188,1094,1045,1042,1082,1071,1040,1052,1038,1039,1049,1046,1075,1098,1103,1108,1109,1110,1111,1117,1114,1101,1104,1102,1059,1056,1069,1054,1055,1065,1062,1079,1122,1130,1540,1138,1544,1146,1132,1143,1147,1131,1135,1136,1140,1158,1142,1139,1166,1170,1144,1145,1171,1148,1151,1152,1155,1156,1162,1159,1164,1196,1560,1198,4,1214,8,1222,10,24,1234,1240,1242,1250,44,1264,1268,1270,1278,360,1290,554,551,1297,388,463,393,1316,861,1325,970,1351,974,1359,976,982,1371,1377,1379,1387,986,1399,990,1411,994,1419,996,1002,1431,1437,1439,1447,1006,1459,1010,1471,1014,1479,1016,1022,1491,1497,1499,1507,1034,1128,1126,556,1084,1086,1090,1096,1100,1537,1549,1134,1194,1192,1205,1207,1211,1215,5,1219,1223,9,18,1227,1231,1235,25,1239,1243,1247,1251,1255,45,1259,1263,1267,1271,1275,1279,1283,1287,1291,361,389,394,462,1307,550,1517,1310,1313,1317,858,862,1321,1326,1330,1334,1337,1340,1344,1348,1352,971,1356,1360,975,980,1364,1368,1372,983,1376,1380,1384,1388,1392,1396,1400,987,1404,1408,1412,991,1416,1420,995,1000,1424,1428,1432,1003,1436,1440,1444,1448,1452,1456,1460,1007,1464,1468,1472,1011,1476,1480,1015,1020,1484,1488,1492,1023,1496,1500,1504,1508,1512,1035,555,1520,1083,1087,1091,1524,1095,1123,1099,1529,1127,1532,1536,1539,1543,1546,1133,1550,1141,1555,1193,1197,1201,1559,1563,1204,1579,1583,1587,1580,1584,1573,1572,1590,1576,1592,1574,1596,1571,1575,1578,1604,1582,1568,1586,1570,1567,1594,1598,1600,1595,1599,1603,1607,1569,1611,1622,1967,1619,1618,1626,1621,1634,1987,1631,1630,1638,1633,1639,1641,1642,1999,2004,2385,1646,1654,2027,1651,1650,1658,1653,1659,1661,1662,1670,1666,1674,1669,1682,2067,1679,1678,1686,1681,1701,1696,1704,1702,1703,1707,1712,1710,1697,1695,1698,1687,1688,1692,1706,1694,1691,1714,2344,2358,2413,1722,1715,
- 2348,2373,1719,1718,1727,1730,1731,1726,1728,1733,1739,1741,1742,1750,1749,2433,1746,1755,1758,1759,1754,1756,1761,1767,1769,1770,1775,1774,1776,1781,1791,1794,1795,1790,1792,1797,1807,1810,1811,1806,1808,1813,1819,1821,1822,1830,1829,2453,1826,1835,1838,1839,1834,1836,1841,1847,1849,1850,1855,1854,1856,1861,1871,1874,1875,1870,1872,1877,1887,1890,1891,1886,1888,1893,1899,1901,1902,1910,1909,2473,1906,1915,1918,1919,1914,1911,1916,1922,1928,1930,1931,1936,1935,1932,1937,1942,1950,1952,1955,1956,1951,1948,1953,1958,1970,1972,1975,1976,1971,1968,1973,1978,1988,1990,1991,1997,2002,1998,1995,1994,2010,2012,2015,2016,2011,2008,2013,2018,2028,2030,2031,2036,2035,2032,2037,2042,2050,2052,2055,2056,2051,2048,2053,2058,2070,2074,2071,2075,2077,2078,2083,2082,2084,2089,2099,2102,2103,2098,2100,2105,2196,2124,2200,2244,2142,2248,2330,2157,2151,2159,2158,2332,2123,2121,2122,2119,2120,2141,2139,2140,2137,2138,2155,2156,2191,2207,2239,2255,2153,2339,2183,2116,2117,2186,2175,2184,2127,2509,2114,2132,2129,2171,2189,2118,2115,2192,2169,2113,2131,2111,2112,2128,2125,2173,2213,2263,2214,2216,2219,2268,2223,2272,2227,2279,2230,2235,2237,2215,2212,2240,2217,2220,2221,2224,2225,2231,2228,2233,2261,2136,2133,2264,2267,2489,2271,2144,2275,2146,2143,2283,2286,2284,2287,2310,2289,2312,2295,2319,2298,2303,2306,2304,2152,2149,2167,2147,2148,2163,2160,2177,2326,2324,2285,2290,2291,2292,2293,2299,2296,2301,2346,2357,2347,2349,2353,2354,2350,2355,2345,2363,2351,2365,1617,1615,1629,1627,1645,1649,1647,1663,1677,1675,2401,1689,2415,1716,2417,1725,1723,1745,1753,1751,1771,1789,1787,1805,1803,1825,1833,1831,1851,1869,1867,1885,1883,1905,1913,1921,2068,2079,2097,2095,2493,2134,2181,2513,2519,1920,2486,2135,2145,2490,2494,2498,2182,2502,2185,2506,2510,2514,2665,2669,2673,2666,2670,2689,2693,2697,2690,2694,2565,2569,2570,2573,2566,2659,2683,2557,2658,2676,2682,2700,2560,2576,2662,2678,2686,2702,2562,2578,2552,2550,2549,2808,2619,2612,2615,2555,2611,2556,2628,2597,2598,2591,2596,2592,2588,2583,2604,2584,2582,2575,2587,2572,2561,2568,2595,2564,2558,2559,
- 2580,2606,2608,2616,2620,2624,2636,2822,2633,2637,2640,2830,2644,2630,2648,2632,2629,2656,2660,2634,2635,2661,2638,2641,2642,2645,2646,2652,2649,2654,2708,2730,2705,2723,2728,2737,2724,2741,2720,2748,2714,2712,2706,2684,2681,2711,2704,2713,2699,2719,2696,2685,2692,2688,2784,2530,2531,2799,2542,2528,2539,2526,2527,2536,2533,2546,2754,2532,2529,2759,2548,2761,2535,2768,2525,2540,2537,2544,2842,2756,2753,2779,2760,2777,2762,2852,2765,2772,2769,2776,2782,2732,2729,2787,2752,2789,2747,2795,2744,2733,2740,2736,2812,2553,2824,2826,2856,2844,2551,2805,2809,2813,2554,2817,2821,2825,2829,2833,2631,2837,2778,2841,2845,2849,2853,2857,2888,2886,2885,2992,2900,2904,2901,2891,2908,2909,2892,2916,2896,2894,2871,2899,2864,2876,2873,2907,2880,2866,2867,2884,2957,2968,2958,2951,2956,2973,2952,2977,2948,2984,2943,2964,2944,2942,2935,2947,2932,2921,2928,2955,2924,2918,2919,2940,2966,2868,2865,2969,2878,2863,2875,2861,2862,2872,2869,2882,2936,2938,2929,2933,2925,2930,2926,2920,2922,2917,2996,2889,2887,2890,2989,2993,2997,3001,3075,3079,3080,3083,3076,3067,3070,3086,3072,3088,3038,3036,3035,3142,3050,3054,3051,3041,3058,3059,3042,3066,3046,3044,3021,3049,3014,3026,3023,3057,3030,3016,3017,3034,3107,3118,3108,3101,3106,3123,3102,3127,3098,3134,3093,3114,3094,3092,3085,3097,3082,3071,3078,3105,3074,3068,3069,3090,3116,3018,3015,3119,3028,3013,3025,3011,3012,3022,3019,3032,3146,3039,3037,3040,3139,3143,3147,3151,3162,3165,3169,3172,3176,3174,3173,3249,3183,3181,3175,3245,3196,3194,3199,3201,3182,3241,3208,3206,3211,3213,3195,3237,3220,3218,3223,3225,3207,3233,3161,3164,3157,3159,3163,3229,3167,3254,3258,3262,3266,3270,3230,3234,3238,3242,3246,3250,3286,3158,3156,3212,3200,3187,3192,3204,3216,3160,3155,3221,3209,3197,3184,3280,3278,3277,3285,3302,3312,3308,3297,3305,3309,3306,3290,3289,3281,3186,3190,3339,3291,3347,3356,3294,3178,3332,3189,3282,3340,3293,3345,3348,3361,3328,3395,3377,3379,3366,3368,3367,3365,3374,3369,3390,3393,3396,3409,3411,3401,3413,3418,3423,3408,3431,3436,3420,3443,3448,3433,3456,3461,3470,3445,3385,3387,3466,3399,3391,
- 3475,3479,3483,3487,3467,3471,3482,3486,3386,3384,3444,3432,3419,3417,3415,3440,3453,3388,3383,3454,3441,3429,3371,3500,3372,3495,3376,3506,3407,3404,3402,3352,3303,3353,3327,3317,3416,3406,3425,3523,3527,3531,3535,3539,3543,3547,3551,3555,3559,3563,3567,3605,3601,3597,3593,3589,3585,3629,3625,3621,3617,3613,3609,3526,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3584,3586,3583,3590,3587,3594,3591,3598,3595,3602,3599,3606,3603,3610,3607,3614,3611,3618,3615,3622,3619,3626,3623,3627,3632,3634,3545,3638,3541,3642,3537,3646,3533,3650,3529,3654,3525,3658,3569,3662,3565,3666,3561,3670,3557,3674,3553,3549,3749,3745,3741,3737,3733,3729,3773,3769,3765,3761,3757,3753,3682,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3728,3730,3701,3734,3697,3738,3693,3742,3689,3746,3685,3750,3681,3754,3725,3758,3721,3762,3717,3766,3713,3770,3709,3705,3845,3841,3837,3833,3829,3825,3869,3865,3861,3857,3853,3849,3778,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3824,3826,3797,3830,3793,3834,3789,3838,3785,3842,3781,3846,3777,3850,3821,3854,3817,3858,3813,3862,3809,3866,3805,3801,3941,3937,3933,3929,3925,3921,3965,3961,3957,3953,3949,3945,3874,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3920,3922,3893,3926,3889,3930,3885,3934,3881,3938,3877,3942,3873,3946,3917,3950,3913,3954,3909,3958,3905,3962,3901,3897,4037,4033,4029,4025,4021,4017,4061,4057,4053,4049,4045,4041,3970,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4016,4018,3989,4022,3985,4026,3981,4030,3977,4034,3973,4038,3969,4042,4013,4046,4009,4050,4005,4054,4001,4058,3997,3993,4133,4129,4125,4121,4117,4113,4157,4153,4149,4145,4141,4137,4066,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4112,4114,4085,4118,4081,4122,4077,4126,4073,4130,4069,4134,4065,4138,4109,4142,4105,4146,4101,4150,4097,4154,4093,4089,4229,4225,4221,4217,4213,4209,4253,4249,4245,4241,4237,4233,4162,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4208,4210,4181,4214,4177,4218,4173,4222,4169,4226,4165,4230,4161,4234,4205,4238,4201,4242,4197,4246,4193,4250,4189,
- 4185,4325,4321,4317,4313,4309,4305,4349,4345,4341,4337,4333,4329,4258,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4304,4306,4277,4310,4273,4314,4269,4318,4265,4322,4261,4326,4257,4330,4301,4334,4297,4338,4293,4342,4289,4346,4285,4281,4421,4417,4413,4409,4405,4401,4445,4441,4437,4433,4429,4425,4354,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4400,4402,4373,4406,4369,4410,4365,4414,4361,4418,4357,4422,4353,4426,4397,4430,4393,4434,4389,4438,4385,4442,4381,4377,4517,4513,4509,4505,4501,4497,4541,4537,4533,4529,4525,4521,4450,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4496,4498,4469,4502,4465,4506,4461,4510,4457,4514,4453,4518,4449,4522,4493,4526,4489,4530,4485,4534,4481,4538,4477,4473,4613,4609,4605,4601,4597,4593,4637,4633,4629,4625,4621,4617,4546,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4592,4594,4565,4598,4561,4602,4557,4606,4553,4610,4549,4614,4545,4618,4589,4622,4585,4626,4581,4630,4577,4634,4573,4569,4709,4705,4701,4697,4693,4689,4733,4729,4725,4721,4717,4713,4642,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4688,4690,4661,4694,4657,4698,4653,4702,4649,4706,4645,4710,4641,4714,4685,4718,4681,4722,4677,4726,4673,4730,4669,4665,4805,4801,4797,4793,4789,4785,4829,4825,4821,4817,4813,4809,4738,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4784,4786,4757,4790,4753,4794,4749,4798,4745,4802,4741,4806,4737,4810,4781,4814,4777,4818,4773,4822,4769,4826,4765,4761,4901,4897,4893,4889,4885,4881,4925,4921,4917,4913,4909,4905,4834,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4880,4882,4853,4886,4849,4890,4845,4894,4841,4898,4837,4902,4833,4906,4877,4910,4873,4914,4869,4918,4865,4922,4861,4857,4997,4993,4989,4985,4981,4977,5021,5017,5013,5009,5005,5001,4930,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4976,4978,4949,4982,4945,4986,4941,4990,4937,4994,4933,4998,4929,5002,4973,5006,4969,5010,4965,5014,4961,5018,4957,4953,5035,5039,5043,5047,5051,5055,5059,5063,5067,5071,5075,5079,5117,5113,5109,5105,5101,5097,5141,5137,5133,5129,5125,5121,5038,
- 5036,5040,5044,5048,5052,5056,5060,5064,5068,5072,5076,5096,5098,5095,5102,5099,5106,5103,5110,5107,5114,5111,5118,5115,5122,5119,5126,5123,5130,5127,5134,5131,5138,5135,5139,5144,5146,5057,5150,5053,5154,5049,5158,5045,5162,5041,5166,5037,5170,5081,5174,5077,5178,5073,5182,5069,5186,5065,5061,5261,5257,5253,5249,5245,5241,5285,5281,5277,5273,5269,5265,5194,5192,5196,5200,5204,5208,5212,5216,5220,5224,5228,5232,5240,5242,5213,5246,5209,5250,5205,5254,5201,5258,5197,5262,5193,5266,5237,5270,5233,5274,5229,5278,5225,5282,5221,5217,5357,5353,5349,5345,5341,5337,5381,5377,5373,5369,5365,5361,5290,5288,5292,5296,5300,5304,5308,5312,5316,5320,5324,5328,5336,5338,5309,5342,5305,5346,5301,5350,5297,5354,5293,5358,5289,5362,5333,5366,5329,5370,5325,5374,5321,5378,5317,5313,5453,5449,5445,5441,5437,5433,5477,5473,5469,5465,5461,5457,5386,5384,5388,5392,5396,5400,5404,5408,5412,5416,5420,5424,5432,5434,5405,5438,5401,5442,5397,5446,5393,5450,5389,5454,5385,5458,5429,5462,5425,5466,5421,5470,5417,5474,5413,5409,5549,5545,5541,5537,5533,5529,5573,5569,5565,5561,5557,5553,5482,5480,5484,5488,5492,5496,5500,5504,5508,5512,5516,5520,5528,5530,5501,5534,5497,5538,5493,5542,5489,5546,5485,5550,5481,5554,5525,5558,5521,5562,5517,5566,5513,5570,5509,5505,5645,5641,5637,5633,5629,5625,5669,5665,5661,5657,5653,5649,5578,5576,5580,5584,5588,5592,5596,5600,5604,5608,5612,5616,5624,5626,5597,5630,5593,5634,5589,5638,5585,5642,5581,5646,5577,5650,5621,5654,5617,5658,5613,5662,5609,5666,5605,5601,5741,5737,5733,5729,5725,5721,5765,5761,5757,5753,5749,5745,5674,5672,5676,5680,5684,5688,5692,5696,5700,5704,5708,5712,5720,5722,5693,5726,5689,5730,5685,5734,5681,5738,5677,5742,5673,5746,5717,5750,5713,5754,5709,5758,5705,5762,5701,5697,5837,5833,5829,5825,5821,5817,5861,5857,5853,5849,5845,5841,5770,5768,5772,5776,5780,5784,5788,5792,5796,5800,5804,5808,5816,5818,5789,5822,5785,5826,5781,5830,5777,5834,5773,5838,5769,5842,5813,5846,5809,5850,5805,5854,5801,5858,5797,5793,5933,5929,5925,5921,5917,5913,5957,5953,5949,5945,5941,5937,5866,5864,5868,
- 5872,5876,5880,5884,5888,5892,5896,5900,5904,5912,5914,5885,5918,5881,5922,5877,5926,5873,5930,5869,5934,5865,5938,5909,5942,5905,5946,5901,5950,5897,5954,5893,5889,6029,6025,6021,6017,6013,6009,6053,6049,6045,6041,6037,6033,5962,5960,5964,5968,5972,5976,5980,5984,5988,5992,5996,6000,6008,6010,5981,6014,5977,6018,5973,6022,5969,6026,5965,6030,5961,6034,6005,6038,6001,6042,5997,6046,5993,6050,5989,5985,6125,6121,6117,6113,6109,6105,6149,6145,6141,6137,6133,6129,6058,6056,6060,6064,6068,6072,6076,6080,6084,6088,6092,6096,6104,6106,6077,6110,6073,6114,6069,6118,6065,6122,6061,6126,6057,6130,6101,6134,6097,6138,6093,6142,6089,6146,6085,6081,6221,6217,6213,6209,6205,6201,6245,6241,6237,6233,6229,6225,6154,6152,6156,6160,6164,6168,6172,6176,6180,6184,6188,6192,6200,6202,6173,6206,6169,6210,6165,6214,6161,6218,6157,6222,6153,6226,6197,6230,6193,6234,6189,6238,6185,6242,6181,6177,6317,6313,6309,6305,6301,6297,6341,6337,6333,6329,6325,6321,6250,6248,6252,6256,6260,6264,6268,6272,6276,6280,6284,6288,6296,6298,6269,6302,6265,6306,6261,6310,6257,6314,6253,6318,6249,6322,6293,6326,6289,6330,6285,6334,6281,6338,6277,6273,6413,6409,6405,6401,6397,6393,6437,6433,6429,6425,6421,6417,6346,6344,6348,6352,6356,6360,6364,6368,6372,6376,6380,6384,6392,6394,6365,6398,6361,6402,6357,6406,6353,6410,6349,6414,6345,6418,6389,6422,6385,6426,6381,6430,6377,6434,6373,6369,6509,6505,6501,6497,6493,6489,6533,6529,6525,6521,6517,6513,6442,6440,6444,6448,6452,6456,6460,6464,6468,6472,6476,6480,6488,6490,6461,6494,6457,6498,6453,6502,6449,6506,6445,6510,6441,6514,6485,6518,6481,6522,6477,6526,6473,6530,6469,6465,6547,6551,6555,6559,6563,6567,6571,6575,6579,6583,6587,6591,6629,6625,6621,6617,6613,6609,6653,6649,6645,6641,6637,6633,6550,6548,6552,6556,6560,6564,6568,6572,6576,6580,6584,6588,6608,6610,6607,6614,6611,6618,6615,6622,6619,6626,6623,6630,6627,6634,6631,6638,6635,6642,6639,6646,6643,6650,6647,6651,6656,6658,6569,6662,6565,6666,6561,6670,6557,6674,6553,6678,6549,6682,6593,6686,6589,6690,6585,6694,6581,6698,6577,6573,6773,6769,6765,6761,6757,
- 6753,6797,6793,6789,6785,6781,6777,6706,6704,6708,6712,6716,6720,6724,6728,6732,6736,6740,6744,6752,6754,6725,6758,6721,6762,6717,6766,6713,6770,6709,6774,6705,6778,6749,6782,6745,6786,6741,6790,6737,6794,6733,6729,6869,6865,6861,6857,6853,6849,6893,6889,6885,6881,6877,6873,6802,6800,6804,6808,6812,6816,6820,6824,6828,6832,6836,6840,6848,6850,6821,6854,6817,6858,6813,6862,6809,6866,6805,6870,6801,6874,6845,6878,6841,6882,6837,6886,6833,6890,6829,6825,6965,6961,6957,6953,6949,6945,6989,6985,6981,6977,6973,6969,6898,6896,6900,6904,6908,6912,6916,6920,6924,6928,6932,6936,6944,6946,6917,6950,6913,6954,6909,6958,6905,6962,6901,6966,6897,6970,6941,6974,6937,6978,6933,6982,6929,6986,6925,6921,7061,7057,7053,7049,7045,7041,7085,7081,7077,7073,7069,7065,6994,6992,6996,7000,7004,7008,7012,7016,7020,7024,7028,7032,7040,7042,7013,7046,7009,7050,7005,7054,7001,7058,6997,7062,6993,7066,7037,7070,7033,7074,7029,7078,7025,7082,7021,7017,7157,7153,7149,7145,7141,7137,7181,7177,7173,7169,7165,7161,7090,7088,7092,7096,7100,7104,7108,7112,7116,7120,7124,7128,7136,7138,7109,7142,7105,7146,7101,7150,7097,7154,7093,7158,7089,7162,7133,7166,7129,7170,7125,7174,7121,7178,7117,7113,7253,7249,7245,7241,7237,7233,7277,7273,7269,7265,7261,7257,7186,7184,7188,7192,7196,7200,7204,7208,7212,7216,7220,7224,7232,7234,7205,7238,7201,7242,7197,7246,7193,7250,7189,7254,7185,7258,7229,7262,7225,7266,7221,7270,7217,7274,7213,7209,7349,7345,7341,7337,7333,7329,7373,7369,7365,7361,7357,7353,7282,7280,7284,7288,7292,7296,7300,7304,7308,7312,7316,7320,7328,7330,7301,7334,7297,7338,7293,7342,7289,7346,7285,7350,7281,7354,7325,7358,7321,7362,7317,7366,7313,7370,7309,7305,7445,7441,7437,7433,7429,7425,7469,7465,7461,7457,7453,7449,7378,7376,7380,7384,7388,7392,7396,7400,7404,7408,7412,7416,7424,7426,7397,7430,7393,7434,7389,7438,7385,7442,7381,7446,7377,7450,7421,7454,7417,7458,7413,7462,7409,7466,7405,7401,7541,7537,7533,7529,7525,7521,7565,7561,7557,7553,7549,7545,7474,7472,7476,7480,7484,7488,7492,7496,7500,7504,7508,7512,7520,7522,7493,7526,7489,7530,7485,
- 7534,7481,7538,7477,7542,7473,7546,7517,7550,7513,7554,7509,7558,7505,7562,7501,7497,7637,7633,7629,7625,7621,7617,7661,7657,7653,7649,7645,7641,7570,7568,7572,7576,7580,7584,7588,7592,7596,7600,7604,7608,7616,7618,7589,7622,7585,7626,7581,7630,7577,7634,7573,7638,7569,7642,7613,7646,7609,7650,7605,7654,7601,7658,7597,7593,7733,7729,7725,7721,7717,7713,7757,7753,7749,7745,7741,7737,7666,7664,7668,7672,7676,7680,7684,7688,7692,7696,7700,7704,7712,7714,7685,7718,7681,7722,7677,7726,7673,7730,7669,7734,7665,7738,7709,7742,7705,7746,7701,7750,7697,7754,7693,7689,7829,7825,7821,7817,7813,7809,7853,7849,7845,7841,7837,7833,7762,7760,7764,7768,7772,7776,7780,7784,7788,7792,7796,7800,7808,7810,7781,7814,7777,7818,7773,7822,7769,7826,7765,7830,7761,7834,7805,7838,7801,7842,7797,7846,7793,7850,7789,7785,7925,7921,7917,7913,7909,7905,7949,7945,7941,7937,7933,7929,7858,7856,7860,7864,7868,7872,7876,7880,7884,7888,7892,7896,7904,7906,7877,7910,7873,7914,7869,7918,7865,7922,7861,7926,7857,7930,7901,7934,7897,7938,7893,7942,7889,7946,7885,7881,8021,8017,8013,8009,8005,8001,8045,8041,8037,8033,8029,8025,7954,7952,7956,7960,7964,7968,7972,7976,7980,7984,7988,7992,8000,8002,7973,8006,7969,8010,7965,8014,7961,8018,7957,8022,7953,8026,7997,8030,7993,8034,7989,8038,7985,8042,7981,7977,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8070,8071,8072,8073,8074,8075,8076,8078,8080,8082,8083,8085,8098,8089,8106,8198,8110,8099,8102,8118,8122,8123,8103,8105,8107,8109,8111,8113,8115,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8138,8139,8140,8141,8142,8143,8144,8146,8148,8150,8151,8153,8155,8164,8167,8171,8175,8181,8179,8196,8200,8203,8101,8206,8217,8169,8173,8188,8168,8172,8176,8100,8180,8184,8189,8192,8229,8233,8237,8241,8245,8249,8253,8257,8261,8265,8269,8273,8299,8295,8291,8287,8283,8279,8323,8319,8315,8311,8307,8303,8232,8230,8234,8238,8242,8246,8250,8254,8258,8262,8266,8270,8278,8280,8277,8284,8281,8288,8285,8292,8289,8296,8293,8300,8297,8304,8301,8308,8305,8312,8309,8316,8313,8320,8317,8321,8395,8391,8387,8383,8379,8375,8419,8415,
- 8411,8407,8403,8399,8328,8326,8330,8334,8338,8342,8346,8350,8354,8358,8362,8366,8374,8376,8347,8380,8343,8384,8339,8388,8335,8392,8331,8396,8327,8400,8371,8404,8367,8408,8363,8412,8359,8416,8355,8351,8491,8487,8483,8479,8475,8471,8515,8511,8507,8503,8499,8495,8424,8422,8426,8430,8434,8438,8442,8446,8450,8454,8458,8462,8470,8472,8443,8476,8439,8480,8435,8484,8431,8488,8427,8492,8423,8496,8467,8500,8463,8504,8459,8508,8455,8512,8451,8447,8587,8583,8579,8575,8571,8567,8611,8607,8603,8599,8595,8591,8520,8518,8522,8526,8530,8534,8538,8542,8546,8550,8554,8558,8566,8568,8539,8572,8535,8576,8531,8580,8527,8584,8523,8588,8519,8592,8563,8596,8559,8600,8555,8604,8551,8608,8547,8543,8683,8679,8675,8671,8667,8663,8707,8703,8699,8695,8691,8687,8616,8614,8618,8622,8626,8630,8634,8638,8642,8646,8650,8654,8662,8664,8635,8668,8631,8672,8627,8676,8623,8680,8619,8684,8615,8688,8659,8692,8655,8696,8651,8700,8647,8704,8643,8639,8779,8775,8771,8767,8763,8759,8803,8799,8795,8791,8787,8783,8712,8710,8714,8718,8722,8726,8730,8734,8738,8742,8746,8750,8758,8760,8731,8764,8727,8768,8723,8772,8719,8776,8715,8780,8711,8784,8755,8788,8751,8792,8747,8796,8743,8800,8739,8735,8875,8871,8867,8863,8859,8855,8899,8895,8891,8887,8883,8879,8808,8806,8810,8814,8818,8822,8826,8830,8834,8838,8842,8846,8854,8856,8827,8860,8823,8864,8819,8868,8815,8872,8811,8876,8807,8880,8851,8884,8847,8888,8843,8892,8839,8896,8835,8831,8971,8967,8963,8959,8955,8951,8995,8991,8987,8983,8979,8975,8904,8902,8906,8910,8914,8918,8922,8926,8930,8934,8938,8942,8950,8952,8923,8956,8919,8960,8915,8964,8911,8968,8907,8972,8903,8976,8947,8980,8943,8984,8939,8988,8935,8992,8931,8927,9022,9024,8251,9028,8247,9032,8243,9036,8239,9040,8235,9044,8231,9048,8275,9052,8271,9056,8267,9060,8263,9064,8259,8255,9086,9072,9080,9076,9081,9083,9073,9077,9071,9069,9088,9075,9070,9074,9078,9095,9089,9093,3177,3274,3336,3515,3296,3299,3292,3316,3179,3188,3283,3331,3307,3324,3364,3351,3357
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *27315 {
- a: 0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0.643327832221985,0.765590786933899,0,0.643327832221985,0.765590727329254,0,0.64332789182663,0.765590786933899,0,0.643327832221985,0.765590786933899,0,0.765661895275116,-0.643243134021759,0,0.765662014484406,-0.643243134021759,0,0.765662014484406,-0.643243134021759,0,0.765661895275116,-0.643243134021759,0,0,0,1,0,0,1,0,0,1,0,0,1,0.643296897411346,0.765616774559021,0,0.643296897411346,0.765616774559021,0,0.643296897411346,0.765616834163666,0,0.643296837806702,0.765616774559021,0,0,0,1,0,0,1,0,0,1,0,0,1,0.643286526203156,0.765625476837158,0,0.643286526203156,0.765625536441803,0,0.643286526203156,0.765625536441803,0,0.643286526203156,0.765625476837158,0,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,-0.765643417835236,0.643265306949615,9.7060222969958e-008,-0.765643417835236,0.643265187740326,9.7060222969958e-008,-0.765643358230591,0.643265187740326,9.7060222969958e-008,-0.765643417835236,0.643265247344971,9.7060222969958e-008,0,0,1,0,0,1,0,0,1,0,0,1,-0.643311738967896,-0.765604317188263,-4.6758833605054e-007,-0.643311738967896,-0.765604317188263,-4.67588364472249e-007,-0.643311738967896,-0.765604317188263,-4.67588392893958e-007,-0.643311738967896,-0.765604317188263,-4.6758830762883e-007,0.643286287784576,0.765625834465027,0,0.643286287784576,0.765625774860382,0,0.643286168575287,0.765625715255737,0,0.643286287784576,0.765625834465027,0,-0.765636563301086,0.643273413181305,-1.53319455113536e-013,-0.765636563301086,0.643273413181305,-1.15131356892562e-007,-0.765636563301086,0.64327347278595,-1.15131371103416e-007,-0.765636503696442,0.643273413181305,-3.22777727126706e-014,0.765652298927307,-0.643254637718201,0,0.765652358531952,-0.643254697322845,0,0.765652358531952,-0.643254697322845,0,0.765652298927307,-0.643254637718201,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643260180950165,-0.765647709369659,1.90037855650428e-014,-0.64326024055481,-0.765647530555725,1.38784713499263e-007,-0.643260300159454,-0.765647649765015,1.38784727710117e-007,-0.643260180950165,-0.765647709369659,-1.04520789267516e-013,
- 0.643218457698822,0.765682697296143,0,0.643218457698822,0.765682697296143,0,0.643218457698822,0.765682697296143,0,0.643218457698822,0.765682697296143,0,-0.643209099769592,-0.765690624713898,-7.05658891320127e-008,-0.643208205699921,-0.765691220760345,-5.55231736143469e-007,-0.64320832490921,-0.765691339969635,-5.55231792986888e-007,-0.643209159374237,-0.765690565109253,-7.05647451582081e-008,-0.765670478343964,0.643233060836792,-2.90251165324662e-007,-0.765671074390411,0.64323228597641,-3.09354248884119e-007,-0.765671193599701,0.64323228597641,-3.09354277305829e-007,-0.765670478343964,0.643233001232147,-2.90251136902953e-007,0.765639066696167,-0.643270254135132,7.73384556396195e-008,0.765639185905457,-0.643270313739777,2.60546470601817e-014,0.765639185905457,-0.643270254135132,0,0.765639185905457,-0.643270373344421,7.73384627450469e-008,0,0,1,0,0,1,0,0,1,0,0,1,0.6432044506073,0.765694558620453,0,0.6432044506073,0.765694558620453,0,0.643205642700195,0.765693366527557,3.85395026114566e-007,0.64320570230484,0.765693485736847,3.8539329239029e-007,-0.765648901462555,0.643258690834045,0,-0.765648901462555,0.643258690834045,0,-0.765648901462555,0.643258690834045,0,-0.765648901462555,0.643258690834045,0,0.76564222574234,-0.643266558647156,3.7716563383583e-007,0.765643060207367,-0.643265783786774,-4.84966392377828e-007,0.765643060207367,-0.643265783786774,-4.84966392377828e-007,0.765642285346985,-0.643266618251801,3.77162308495826e-007,0,0,1,0,0,1,0,0,1,0,0,1,-0.643179357051849,-0.765715599060059,-5.65896414173039e-008,-0.643180012702942,-0.765715062618256,3.4698032891356e-007,-0.643180012702942,-0.765715062618256,3.4698032891356e-007,-0.643179357051849,-0.765715539455414,-5.65889415327092e-008,0.643184185028076,0.765711605548859,0,0.643182218074799,0.765713155269623,2.98708641821577e-007,0.643182218074799,0.765713155269623,2.98707561796618e-007,0.643184185028076,0.765711605548859,0,0.643211603164673,0.765688419342041,3.37103813308204e-007,0.643214464187622,0.765686213970184,0,0.643214464187622,0.765686213970184,0,0.643211662769318,0.765688419342041,3.37104580694358e-007,
- -0.765645563602448,0.64326274394989,-2.15622620203249e-007,-0.765645325183868,0.643263041973114,0,-0.765645325183868,0.643263041973114,0,-0.765645503997803,0.64326274394989,-2.15622762311796e-007,0.765642642974854,-0.643266141414642,3.27786835896404e-007,0.765643417835236,-0.643265128135681,0,0.765643417835236,-0.643265128135681,0,0.765642583370209,-0.643266201019287,3.27786182197087e-007,0,0,1,0,0,1,0,0,1,0,0,1,-0.643305897712708,-0.765609323978424,-2.03212479732429e-007,-0.643304765224457,-0.765610158443451,0,-0.643304765224457,-0.765610158443451,0,-0.643305838108063,-0.765609264373779,-2.03212323413027e-007,-0.765647411346436,0.643260419368744,3.66135388674138e-008,-0.765647411346436,0.643260598182678,0,-0.765647411346436,0.643260598182678,0,-0.76564747095108,0.643260478973389,3.66135459728412e-008,0.765649914741516,-0.643257439136505,7.41622230293615e-008,0.765649974346161,-0.64325737953186,0,0.765649974346161,-0.64325737953186,0,0.765649974346161,-0.643257439136505,7.41622514510709e-008,0,0,1,0,0,1,0,0,1,0,0,1,-0.643313944339752,-0.76560240983963,5.07766699797685e-008,-0.643314003944397,-0.76560240983963,0,-0.643314003944397,-0.76560240983963,0,-0.643313944339752,-0.76560240983963,5.07766664270548e-008,0.643321931362152,0.76559579372406,0,0.643322467803955,0.765595376491547,0,0.643322467803955,0.765595376491547,0,0.643321931362152,0.76559579372406,0,-0.765648782253265,0.643258810043335,-2.0404273470831e-007,-0.765648424625397,0.643259286880493,0,-0.765648424625397,0.643259286880493,0,-0.765648782253265,0.643258810043335,-2.04042805762583e-007,0.765647947788239,-0.643259823322296,1.65205918278843e-007,0.765648424625397,-0.643259286880493,0,0.765648424625397,-0.643259286880493,0,0.765647947788239,-0.643259763717651,1.65205833013715e-007,0,0,1,0,0,1,0,0,1,0,0,1,-0.643176436424255,-0.765717923641205,-1.4172958628933e-007,-0.64317387342453,-0.765720129013062,0,-0.64317387342453,-0.765720129013062,0,-0.6431764960289,-0.76571798324585,-1.41729529445911e-007,0.64317387342453,0.765720129013062,0,0.643172025680542,0.76572173833847,1.01449941780629e-007,
- 0.643172025680542,0.765721797943115,1.01449877831783e-007,0.64317387342453,0.765720129013062,0,-0.643238186836243,-0.765666127204895,-1.31929056124136e-007,-0.643234550952911,-0.765669167041779,0,-0.643234550952911,-0.765669167041779,0,-0.643238246440887,-0.765666127204895,-1.31929013491572e-007,-0.765644073486328,0.643264472484589,-1.05148245665987e-007,-0.76564347743988,0.643265247344971,0,-0.76564347743988,0.643265247344971,0,-0.765644133090973,0.643264472484589,-1.05148295403978e-007,0.765657126903534,-0.643248975276947,0,0.765656232833862,-0.643249869346619,1.59551561296212e-007,0.765656292438507,-0.643249869346619,1.5955164656134e-007,0.765657126903534,-0.643248975276947,0,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0.643297374248505,0.765616416931152,0,0.643297374248505,0.765616416931152,0,0.643296301364899,0.765617311000824,1.69024190199707e-007,0.643296301364899,0.765617311000824,1.69024119145433e-007,-0.76564234495163,0.643266439437866,-1.55086723907516e-007,-0.765642940998077,0.643265902996063,0,-0.765642940998077,0.643265902996063,0,-0.765642404556274,0.643266499042511,-1.55086780750935e-007,0.765647172927856,-0.643260836601257,1.60231465429206e-007,0.765647828578949,-0.643259942531586,0,0.765647828578949,-0.643259942531586,0,0.765647113323212,-0.643260776996613,1.60231394374932e-007,0,0,1,0,0,1,0,0,1,0,0,1,-0.643254339694977,-0.765652537345886,0,-0.643254041671753,-0.76565283536911,0,-0.643254041671753,-0.76565283536911,0,-0.643254339694977,-0.765652537345886,0,0.643290519714355,0.765622019767761,0,0.643289864063263,0.765622735023499,2.56281282418058e-007,0.643289864063263,0.765622735023499,2.56281111887802e-007,0.643290519714355,0.765622019767761,0,0.643242597579956,0.765662431716919,1.11529416813028e-007,0.643240749835968,0.765663921833038,0,0.643240749835968,0.765663921833038,0,0.643242537975311,0.765662372112274,1.11529452340164e-007,-0.765640139579773,0.643269121646881,-9.96832616451115e-010,-0.765641391277313,0.643267631530762,0,-0.765641391277313,0.643267631530762,0,-0.765640139579773,0.643269121646881,-9.96832616451115e-010,
- 0.765649855136871,-0.643257737159729,0,0.765649855136871,-0.643257617950439,0,0.765649855136871,-0.643257617950439,0,0.765649855136871,-0.643257737159729,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643154561519623,-0.765736401081085,1.1535624366843e-007,-0.643157660961151,-0.76573383808136,0,-0.643157660961151,-0.76573383808136,0,-0.643154621124268,-0.76573634147644,1.15356272090139e-007,-0.765651047229767,0.643256306648254,-1.34259551032301e-007,-0.765651643276215,0.643255412578583,0,-0.765651643276215,0.643255412578583,0,-0.765650987625122,0.643256187438965,-1.34259565243156e-007,0.765649855136871,-0.64325749874115,0,0.765650153160095,-0.643257081508636,0,0.765650153160095,-0.643257081508636,0,0.765649855136871,-0.64325749874115,0,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,-0.643325209617615,-0.765592992305756,-2.04793764169153e-008,-0.643327116966248,-0.765591382980347,0,-0.643327116966248,-0.765591382980347,0,-0.643325209617615,-0.7655930519104,-2.0479379969629e-008,0.643339276313782,0.76558119058609,0,0.643342256546021,0.765578746795654,1.0749130296972e-007,0.643342196941376,0.765578746795654,1.07491246126301e-007,0.643339276313782,0.76558119058609,0,-0.765647828578949,0.643260061740875,1.15907070608046e-007,-0.765648424625397,0.643259286880493,0,-0.765648424625397,0.643259286880493,0,-0.765647828578949,0.64326000213623,1.15907042186336e-007,0.765645980834961,-0.643262147903442,0,0.765645980834961,-0.643262088298798,0,0.765645980834961,-0.643262088298798,0,0.765645980834961,-0.643262147903442,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643176317214966,-0.765718162059784,1.05634661906606e-007,-0.643178939819336,-0.765715956687927,0,-0.643178939819336,-0.765715956687927,0,-0.643176317214966,-0.765718102455139,1.05634690328316e-007,0.64319521188736,0.765702247619629,0,0.64319384098053,0.76570338010788,-4.09243661181335e-008,0.64319384098053,0.76570338010788,-4.09243625654199e-008,0.64319521188736,0.765702247619629,0,-0.64328944683075,-0.765623092651367,-1.05118459714504e-007,-0.643291473388672,-0.765621364116669,0,-0.643291473388672,-0.765621364116669,0,
- -0.64328944683075,-0.765623092651367,-1.05118438398222e-007,-0.76564234495163,0.643266558647156,-2.14984936519613e-008,-0.765642642974854,0.643266141414642,0,-0.765642642974854,0.643266141414642,0,-0.765642285346985,0.643266558647156,-2.14984900992476e-008,0.765652596950531,-0.643254280090332,0,0.765652894973755,-0.643253922462463,1.51913894796962e-007,0.765653014183044,-0.643253922462463,1.51913923218672e-007,0.765652596950531,-0.643254280090332,0,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0.643341243267059,0.765579640865326,0,0.643341243267059,0.765579640865326,0,0.643341422080994,0.765579402446747,-6.88218051436706e-008,0.643341422080994,0.765579402446747,-6.88217980382433e-008,-0.76565158367157,0.643255531787872,0,-0.765651702880859,0.643255293369293,0,-0.765651702880859,0.643255293369293,0,-0.76565158367157,0.643255531787872,0,0.765629708766937,-0.643281579017639,1.56409342366715e-007,0.76563036441803,-0.643280684947968,0,0.76563036441803,-0.643280684947968,0,0.765629768371582,-0.643281519412994,1.56409313945005e-007,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,-0.643277943134308,-0.765632808208466,0,-0.643279254436493,-0.765631675720215,0,-0.643279254436493,-0.765631675720215,0,-0.643277943134308,-0.765632808208466,0,0.643216490745544,0.765684366226196,0,0.643213987350464,0.765686452388763,7.63855751984011e-008,0.643213987350464,0.765686392784119,7.6385553882119e-008,0.643216490745544,0.765684366226196,0,0.643241822719574,0.765663027763367,6.67757191763485e-008,0.643244922161102,0.765660524368286,0,0.643244922161102,0.765660524368286,0,0.643241822719574,0.765663087368011,6.67757262817759e-008,-0.765652477741241,0.643254458904266,1.24274066592989e-007,-0.765653133392334,0.643253564834595,0,-0.765653133392334,0.643253564834595,0,-0.765652477741241,0.643254458904266,1.24274066592989e-007,0.765646755695343,-0.643261313438416,1.47762662550122e-007,0.765647530555725,-0.643260359764099,0,0.765647530555725,-0.643260359764099,0,0.765646696090698,-0.643261313438416,1.47762634128412e-007,0,0,1,0,0,1,0,0,1,0,0,1,
- -0.643208026885986,-0.765691459178925,1.00418930060187e-007,-0.643212378025055,-0.765687882900238,0,-0.643212378025055,-0.765687882900238,0,-0.643208026885986,-0.765691459178925,1.00418958481896e-007,-0.765647709369659,0.643260061740875,9.96604754277541e-008,-0.765647709369659,0.643260061740875,9.96604754277541e-008,-0.765647709369659,0.643260061740875,9.96604754277541e-008,-0.765647768974304,0.64326012134552,9.96604754277541e-008,0.765653848648071,-0.643252789974213,0,0.765653848648071,-0.643252789974213,0,0.765653848648071,-0.643252789974213,0,0.765653848648071,-0.643252789974213,0,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,-0.643265187740326,-0.765643358230591,0,-0.643265187740326,-0.765643358230591,0,-0.643265187740326,-0.765643358230591,0,-0.643265187740326,-0.765643358230591,0,0.64323353767395,0.765669941902161,1.12782238659292e-007,0.64323353767395,0.765669941902161,1.12782238659292e-007,0.643233597278595,0.765669941902161,1.12782238659292e-007,0.643233597278595,0.765669941902161,1.12782252870147e-007,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0.643291652202606,0.765621244907379,0,0.643291592597961,0.765621185302734,0,0.643291711807251,0.765621244907379,0,0.643291652202606,0.765621244907379,0,0.0519699528813362,-0.0539196990430355,-0.997191905975342,0.00426854519173503,0.00240071048028767,-0.999987959861755,0.0132395047694445,0.00616431655362248,-0.999893248081207,0.0313998535275459,-0.00919880624860525,-0.999464571475983,-0.763245940208435,0.646107971668243,1.53921098444698e-006,-0.763300597667694,0.646043539047241,1.51310143792216e-006,-0.76560378074646,0.643312454223633,0,-0.765632510185242,0.643278062343597,0,0.76509565114975,-0.638612508773804,-0.0824779868125916,0.76478099822998,-0.638618350028992,0.0853037312626839,0.759970724582672,-0.645391225814819,0.0769074037671089,0.761459767818451,-0.644169330596924,-0.0722836256027222,0.0718694999814034,-0.0430422723293304,-0.996484875679016,-0.0024105510674417,-0.0010410969844088,-0.999996542930603,
- 0.0180124398320913,0.0073790131136775,-0.999810516834259,0.0404539927840233,-0.0326901897788048,-0.99864649772644,0.044705294072628,-0.036502331495285,0.998333096504211,-0.0165512133389711,-0.00682711787521839,0.999839782714844,0.00231309793889523,0.0010417316807434,0.999996781349182,0.0352629907429218,-0.055513646453619,0.997834980487823,-0.765624344348907,0.643260300159454,0.00596221210435033,-0.765642702579498,0.643260359764099,-0.0026982685085386,-0.765642762184143,0.643260300159454,-0.00268723396584392,-0.765623688697815,0.643259882926941,0.00609397422522306,0.72826623916626,-0.685291349887848,-0.00199229246936738,0.765653014183044,-0.643247783184052,-0.00277369213290513,0.790662229061127,-0.61224228143692,-0.00356513750739396,0.798805415630341,-0.601589322090149,-0.000508300901856273,0.732149302959442,-0.681142747402191,-0.00142467208206654,0.993968844413757,0.108624383807182,-0.0150611372664571,0.643152713775635,0.765509486198425,-0.0187050551176071,0.670670807361603,0.741506457328796,-0.0192062333226204,-0.600953161716461,-0.799259543418884,-0.00627214275300503,-0.643243730068207,-0.765637099742889,-0.00610615033656359,-0.643240690231323,-0.765600502490997,0.00987248308956623,-0.604730069637299,-0.796370327472687,0.0097935302183032,-0.765637576580048,0.643271923065186,-0.000441346754087135,-0.765638411045074,0.643269717693329,-0.00139570340979844,-0.765638411045074,0.643269658088684,-0.00140079448465258,-0.765637636184692,0.643271923065186,-0.000441346783190966,0.730699181556702,-0.682693958282471,-0.0027779433876276,0.797254085540771,-0.603635847568512,-0.003078245325014,0.798633813858032,-0.601795196533203,-0.00514800380915403,0.732253015041351,-0.681027472019196,-0.00266117579303682,0.683563530445099,0.729871273040771,-0.00536035420373082,0.643235504627228,0.765650689601898,-0.00521074840798974,0.643025636672974,0.765393137931824,-0.0262978449463844,0.682750701904297,0.730172574520111,-0.0264488104730845,-0.600685715675354,-0.799196302890778,0.021491190418601,-0.643100440502167,-0.76547384262085,0.0217150505632162,
- -0.643255949020386,-0.765650987625122,0.000605489185545594,-0.601753890514374,-0.798681437969208,0.000479237816762179,-0.765652358531952,0.643253028392792,-0.00145965628325939,-0.765654802322388,0.643251180648804,-0.000750137958675623,-0.765654921531677,0.643251240253448,-0.000743667187634856,-0.765652358531952,0.643253028392792,-0.00145965616684407,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0.765643715858459,-0.643263161182404,0.00145943323150277,0.765644192695618,-0.643263876438141,0.000743196811527014,0.796761870384216,-0.60429322719574,0.000460737384855747,0.796071410179138,-0.605199933052063,0.00187492487020791,0.683067083358765,0.730333566665649,-0.00567806093022227,0.643253028392792,0.765632331371307,-0.00571564864367247,0.643241286277771,0.765615701675415,0.0085653243586421,0.683350265026093,0.730039536952972,0.00863115955144167,-0.643236815929413,-0.765645802021027,0.00572894047945738,-0.643222093582153,-0.76563173532486,-0.00856741145253181,-0.643222093582153,-0.76563173532486,-0.00856741052120924,-0.643236875534058,-0.765645980834961,0.005715427454561,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.044705294072628,-0.036502331495285,0.998333096504211,0.0352629907429218,-0.055513646453619,0.997834980487823,0.759970724582672,-0.645391225814819,0.0769074037671089,0.76478099822998,-0.638618350028992,0.0853037312626839,0.76509565114975,-0.638612508773804,-0.0824779868125916,0.761459767818451,-0.644169330596924,-0.0722836256027222,0.0718694999814034,-0.0430422723293304,-0.996484875679016,0.0404539927840233,-0.0326901897788048,-0.99864649772644,-0.600953161716461,-0.799259543418884,-0.00627214275300503,-0.604730069637299,-0.796370327472687,0.0097935302183032,0.72826623916626,-0.685291349887848,-0.00199229246936738,0.732149302959442,-0.681142747402191,-0.00142467208206654,0.798805415630341,-0.601589322090149,-0.000508300901856273,0.790662229061127,-0.61224228143692,-0.00356513750739396,0.670670807361603,0.741506457328796,-0.0192062333226204,0.682739853858948,0.730571031570435,0.0115014063194394,
- -0.600685715675354,-0.799196302890778,0.021491190418601,-0.601753890514374,-0.798681437969208,0.000479237816762179,0.730699181556702,-0.682693958282471,-0.0027779433876276,0.732253015041351,-0.681027472019196,-0.00266117579303682,0.798633813858032,-0.601795196533203,-0.00514800380915403,0.797254085540771,-0.603635847568512,-0.003078245325014,0.683563530445099,0.729871273040771,-0.00536035420373082,0.682750701904297,0.730172574520111,-0.0264488104730845,0.796071410179138,-0.605199933052063,0.00187492487020791,0.796761870384216,-0.60429322719574,0.000460737384855747,0.683067083358765,0.730333566665649,-0.00567806093022227,0.683350265026093,0.730039536952972,0.00863115955144167,0.732149302959442,-0.681142747402191,-0.00142467208206654,0.798805415630341,-0.601589322090149,-0.000508300901856273,0.796606123447418,-0.604494214057922,0.00231837225146592,0.730549871921539,-0.682858049869537,0.00131190090905875,0.796606123447418,-0.604494214057922,0.00231837225146592,0.798805415630341,-0.601589322090149,-0.000508300901856273,0.682739853858948,0.730571031570435,0.0115014063194394,0.683982372283936,0.729396402835846,0.0122063849121332,0.643223404884338,0.765593111515045,0.0114375520497561,0.643213033676147,0.765591859817505,0.0120927216485143,0.683982372283936,0.729396402835846,0.0122063849121332,0.682739853858948,0.730571031570435,0.0115014063194394,-0.765639245510101,0.643266201019287,0.00227064243517816,-0.765624344348907,0.643260300159454,0.00596221210435033,-0.765623688697815,0.643259882926941,0.00609397422522306,-0.76563960313797,0.643266260623932,0.00215274235233665,-0.601698577404022,-0.798685729503632,-0.00773949362337589,-0.643237173557281,-0.765627205371857,-0.00781056052073836,-0.643243730068207,-0.765637099742889,-0.00610615033656359,-0.600953161716461,-0.799259543418884,-0.00627214275300503,-0.601698577404022,-0.798685729503632,-0.00773949362337589,-0.600953161716461,-0.799259543418884,-0.00627214275300503,0.732149302959442,-0.681142747402191,-0.00142467208206654,0.730549871921539,-0.682858049869537,0.00131190090905875,
- 0.730549871921539,-0.682858049869537,0.00131190090905875,0.796606123447418,-0.604494214057922,0.00231837225146592,0.79840749502182,-0.602117121219635,0.000681090285070241,0.731718957424164,-0.681603133678436,0.00209711352363229,0.79840749502182,-0.602117121219635,0.000681090285070241,0.796606123447418,-0.604494214057922,0.00231837225146592,0.683982372283936,0.729396402835846,0.0122063849121332,0.682835936546326,0.730368077754974,-0.0172463208436966,0.643213033676147,0.765591859817505,0.0120927216485143,0.643157005310059,0.765539348125458,-0.0172775238752365,0.682835936546326,0.730368077754974,-0.0172463208436966,0.683982372283936,0.729396402835846,0.0122063849121332,-0.765625238418579,0.643225371837616,-0.00888635870069265,-0.765639245510101,0.643266201019287,0.00227064243517816,-0.76563960313797,0.643266260623932,0.00215274235233665,-0.765624344348907,0.643224775791168,-0.0090197017416358,-0.601280927658081,-0.7989821434021,0.00942230224609375,-0.643256008625031,-0.765595018863678,0.00927092973142862,-0.643237173557281,-0.765627205371857,-0.00781056052073836,-0.601698577404022,-0.798685729503632,-0.00773949362337589,-0.601280927658081,-0.7989821434021,0.00942230224609375,-0.601698577404022,-0.798685729503632,-0.00773949362337589,0.730549871921539,-0.682858049869537,0.00131190090905875,0.731718957424164,-0.681603133678436,0.00209711352363229,0.731718957424164,-0.681603133678436,0.00209711352363229,0.79840749502182,-0.602117121219635,0.000681090285070241,0.797833621501923,-0.602877676486969,0,0.731388807296753,-0.681960642337799,0,0.797833621501923,-0.602877676486969,0,0.79840749502182,-0.602117121219635,0.000681090285070241,0.682835936546326,0.730368077754974,-0.0172463208436966,0.68331104516983,0.730127453804016,0,0.643157005310059,0.765539348125458,-0.0172775238752365,0.643253266811371,0.765653431415558,0,0.68331104516983,0.730127453804016,0,0.682835936546326,0.730368077754974,-0.0172463208436966,-0.765659868717194,0.643245697021484,0,-0.765625238418579,0.643225371837616,-0.00888635870069265,-0.765624344348907,0.643224775791168,-0.0090197017416358,
- -0.765659868717194,0.643245697021484,0,-0.601392447948456,-0.798953711986542,0,-0.643295109272003,-0.76561838388443,0,-0.643256008625031,-0.765595018863678,0.00927092973142862,-0.601280927658081,-0.7989821434021,0.00942230224609375,-0.601392447948456,-0.798953711986542,0,-0.601280927658081,-0.7989821434021,0.00942230224609375,0.731718957424164,-0.681603133678436,0.00209711352363229,0.731388807296753,-0.681960642337799,0,-0.604730069637299,-0.796370327472687,0.0097935302183032,-0.633823573589325,-0.773477673530579,0,0.611299335956573,-0.791399538516998,0,0.72826623916626,-0.685291349887848,-0.00199229246936738,-0.765642762184143,0.643260300159454,-0.00268723396584392,-0.765642702579498,0.643260359764099,-0.0026982685085386,-0.76565945148468,0.643246114253998,0,-0.765659511089325,0.643246114253998,0,0.732254505157471,-0.681023061275482,0.00329674663953483,0.798515319824219,-0.601963341236115,0.00366438552737236,0.797754406929016,-0.602972984313965,0.00337668671272695,0.731347799301147,-0.682002782821655,0.00159432459622622,-0.601477265357971,-0.798729777336121,-0.0159941576421261,-0.600730538368225,-0.799451589584351,-0.000166445825016126,0.732254505157471,-0.681023061275482,0.00329674663953483,0.731347799301147,-0.682002782821655,0.00159432459622622,-0.643175542354584,-0.765548467636108,-0.0161472521722317,-0.643257558345795,-0.765649855136871,-0.000295148842269555,-0.600730538368225,-0.799451589584351,-0.000166445825016126,-0.601477265357971,-0.798729777336121,-0.0159941576421261,-0.765636622905731,0.643270671367645,-0.00186153210233897,-0.765633940696716,0.643274188041687,0.00171995675191283,-0.765633940696716,0.643274247646332,0.00176202913280576,-0.765636622905731,0.643270552158356,-0.00186831993050873,0.683125257492065,0.730276226997375,0.00604848563671112,0.643236398696899,0.765645265579224,0.00584580190479755,0.643152475357056,0.765553712844849,0.0168056581169367,0.683102905750275,0.730125963687897,0.016925610601902,0.797754406929016,-0.602972984313965,0.00337668671272695,0.798515319824219,-0.601963341236115,0.00366438552737236,
- 0.683125257492065,0.730276226997375,0.00604848563671112,0.683102905750275,0.730125963687897,0.016925610601902,0.731497943401337,-0.68183845281601,-0.00265933526679873,0.798032283782959,-0.602590084075928,-0.00546297105029225,0.798515319824219,-0.601963341236115,0.00366438552737236,0.732254505157471,-0.681023061275482,0.00329674663953483,-0.600730538368225,-0.799451589584351,-0.000166445825016126,-0.601109206676483,-0.798738360404968,0.0261659808456898,0.731497943401337,-0.68183845281601,-0.00265933526679873,0.732254505157471,-0.681023061275482,0.00329674663953483,-0.643257558345795,-0.765649855136871,-0.000295148842269555,-0.643028497695923,-0.765387535095215,0.0263883750885725,-0.601109206676483,-0.798738360404968,0.0261659808456898,-0.600730538368225,-0.799451589584351,-0.000166445825016126,-0.765633940696716,0.643274188041687,0.00171995675191283,-0.765632450580597,0.643270671367645,0.00313758780248463,-0.765632927417755,0.643270790576935,0.00297405407764018,-0.765633940696716,0.643274247646332,0.00176202913280576,0.682938396930695,0.729952275753021,-0.027653181925416,0.643006682395935,0.765367746353149,-0.0274703353643417,0.643236398696899,0.765645265579224,0.00584580190479755,0.683125257492065,0.730276226997375,0.00604848563671112,0.798515319824219,-0.601963341236115,0.00366438552737236,0.798032283782959,-0.602590084075928,-0.00546297105029225,0.682938396930695,0.729952275753021,-0.027653181925416,0.683125257492065,0.730276226997375,0.00604848563671112,0.731347799301147,-0.682002782821655,0.00159432459622622,0.797754406929016,-0.602972984313965,0.00337668671272695,0.797254085540771,-0.603635847568512,-0.003078245325014,0.730699181556702,-0.682693958282471,-0.0027779433876276,-0.601753890514374,-0.798681437969208,0.000479237816762179,-0.601477265357971,-0.798729777336121,-0.0159941576421261,0.731347799301147,-0.682002782821655,0.00159432459622622,0.730699181556702,-0.682693958282471,-0.0027779433876276,-0.643255949020386,-0.765650987625122,0.000605489185545594,-0.643175542354584,-0.765548467636108,-0.0161472521722317,
- -0.601477265357971,-0.798729777336121,-0.0159941576421261,-0.601753890514374,-0.798681437969208,0.000479237816762179,-0.765638411045074,0.643269717693329,-0.00139570340979844,-0.765636622905731,0.643270671367645,-0.00186153210233897,-0.765636622905731,0.643270552158356,-0.00186831993050873,-0.765638411045074,0.643269658088684,-0.00140079448465258,0.683102905750275,0.730125963687897,0.016925610601902,0.643152475357056,0.765553712844849,0.0168056581169367,0.643235504627228,0.765650689601898,-0.00521074840798974,0.683563530445099,0.729871273040771,-0.00536035420373082,0.797254085540771,-0.603635847568512,-0.003078245325014,0.797754406929016,-0.602972984313965,0.00337668671272695,0.683102905750275,0.730125963687897,0.016925610601902,0.683563530445099,0.729871273040771,-0.00536035420373082,0.765641808509827,-0.643266677856445,-0.000869546318426728,0.765639364719391,-0.643269121646881,-0.00110834382940084,0.796585857868195,-0.604524970054626,-0.000679521181154996,0.795757234096527,-0.605614721775055,-0.00110807840246707,-0.643221020698547,-0.765633702278137,-0.00847357697784901,-0.643239259719849,-0.765648186206818,0.00510099763050675,-0.643239319324493,-0.765648305416107,0.00508063891902566,-0.643221020698547,-0.765633761882782,-0.00846665818244219,-0.765654027462006,0.643252015113831,0.000865146866999567,-0.765648782253265,0.643257975578308,0.00110218848567456,-0.76564884185791,0.643257975578308,0.00110910763032734,-0.765653967857361,0.643252015113831,0.000869737181346864,0.683081924915314,0.730293393135071,0.00840169005095959,0.643240869045258,0.7656170129776,0.00846683792769909,0.643254041671753,0.765635848045349,-0.00507950829342008,0.683612108230591,0.729827404022217,-0.00513991760089993,0.795757234096527,-0.605614721775055,-0.00110807840246707,0.796585857868195,-0.604524970054626,-0.000679521181154996,0.683081924915314,0.730293393135071,0.00840169005095959,0.683612108230591,0.729827404022217,-0.00513991760089993,0.765644192695618,-0.643263876438141,0.000743196811527014,0.765641808509827,-0.643266677856445,-0.000869546318426728,
- 0.795757234096527,-0.605614721775055,-0.00110807840246707,0.796761870384216,-0.60429322719574,0.000460737384855747,-0.643239259719849,-0.765648186206818,0.00510099763050675,-0.643236815929413,-0.765645802021027,0.00572894047945738,-0.643236875534058,-0.765645980834961,0.005715427454561,-0.643239319324493,-0.765648305416107,0.00508063891902566,-0.765654802322388,0.643251180648804,-0.000750137958675623,-0.765654027462006,0.643252015113831,0.000865146866999567,-0.765653967857361,0.643252015113831,0.000869737181346864,-0.765654921531677,0.643251240253448,-0.000743667187634856,0.683612108230591,0.729827404022217,-0.00513991760089993,0.643254041671753,0.765635848045349,-0.00507950829342008,0.643253028392792,0.765632331371307,-0.00571564864367247,0.683067083358765,0.730333566665649,-0.00567806093022227,0.796761870384216,-0.60429322719574,0.000460737384855747,0.795757234096527,-0.605614721775055,-0.00110807840246707,0.683612108230591,0.729827404022217,-0.00513991760089993,0.683067083358765,0.730333566665649,-0.00567806093022227,0.765639364719391,-0.643269121646881,-0.00110834382940084,0.765642821788788,-0.643265187740326,0.000993634574115276,0.796148657798767,-0.60509979724884,0.00128077284898609,0.796585857868195,-0.604524970054626,-0.000679521181154996,-0.643233239650726,-0.765647947788239,-0.00584501260891557,-0.643221020698547,-0.765633702278137,-0.00847357697784901,-0.643221020698547,-0.765633761882782,-0.00846665818244219,-0.643233239650726,-0.765648007392883,-0.00584155460819602,-0.765648782253265,0.643257975578308,0.00110218848567456,-0.765650570392609,0.643255889415741,-0.000997237744741142,-0.765650570392609,0.643256008625031,-0.000993785099126399,-0.76564884185791,0.643257975578308,0.00110910763032734,0.683336853981018,0.730079472064972,0.00588875077664852,0.643254220485687,0.765630483627319,0.0058401538990438,0.643240869045258,0.7656170129776,0.00846683792769909,0.683081924915314,0.730293393135071,0.00840169005095959,0.796585857868195,-0.604524970054626,-0.000679521181154996,0.796148657798767,-0.60509979724884,0.00128077284898609,
- 0.683336853981018,0.730079472064972,0.00588875077664852,0.683081924915314,0.730293393135071,0.00840169005095959,0.767404735088348,-0.635677337646484,-0.0836928486824036,0.771963536739349,-0.630318999290466,0.0822819396853447,0.762170493602753,-0.641369700431824,0.0879832059144974,0.763299345970154,-0.640701949596405,-0.0829157158732414,0.0882975533604622,-0.0182534754276276,0.995926797389984,0.0315492749214172,-0.0369301177561283,0.998819708824158,0.762170493602753,-0.641369700431824,0.0879832059144974,0.771963536739349,-0.630318999290466,0.0822819396853447,0.0443129949271679,0.0178174339234829,0.99885880947113,0.011088540777564,0.00456717563793063,0.999928057193756,0.0315492749214172,-0.0369301177561283,0.998819708824158,0.0882975533604622,-0.0182534754276276,0.995926797389984,-0.772356450557709,0.635189414024353,0,-0.765670299530029,0.643233299255371,0,-0.765607893466949,0.643307447433472,0,-0.772391080856323,0.635147154331207,0,0.0501188226044178,-0.0314413197338581,-0.998248279094696,-0.0110884346067905,-0.00456718215718865,-0.999928057193756,-0.0443130545318127,-0.0178174339234829,-0.99885880947113,-0.000969720131251961,-0.0537435039877892,-0.998554289340973,0.767404735088348,-0.635677337646484,-0.0836928486824036,0.763299345970154,-0.640701949596405,-0.0829157158732414,0.0501188226044178,-0.0314413197338581,-0.998248279094696,-0.000969720131251961,-0.0537435039877892,-0.998554289340973,0.763299345970154,-0.640701949596405,-0.0829157158732414,0.762170493602753,-0.641369700431824,0.0879832059144974,0.758353888988495,-0.647310137748718,0.0767382979393005,0.760641038417816,-0.644530832767487,-0.0774942860007286,0.0315492749214172,-0.0369301177561283,0.998819708824158,0.0274285115301609,-0.0538043826818466,0.998174667358398,0.758353888988495,-0.647310137748718,0.0767382979393005,0.762170493602753,-0.641369700431824,0.0879832059144974,0.011088540777564,0.00456717563793063,0.999928057193756,-0.0251466426998377,-0.0095680970698595,0.999638020992279,0.0274285115301609,-0.0538043826818466,0.998174667358398,0.0315492749214172,-0.0369301177561283,0.998819708824158,
- -0.765670299530029,0.643233299255371,0,-0.76175183057785,0.647868931293488,0,-0.761742174625397,0.647880256175995,0,-0.765607893466949,0.643307447433472,0,0.0767124816775322,-0.0348407812416554,-0.996444284915924,0.0251466985791922,0.0095680970698595,-0.999638020992279,-0.0110884346067905,-0.00456718215718865,-0.999928057193756,0.0501188226044178,-0.0314413197338581,-0.998248279094696,0.763299345970154,-0.640701949596405,-0.0829157158732414,0.760641038417816,-0.644530832767487,-0.0774942860007286,0.0767124816775322,-0.0348407812416554,-0.996444284915924,0.0501188226044178,-0.0314413197338581,-0.998248279094696,0.760641038417816,-0.644530832767487,-0.0774942860007286,0.758353888988495,-0.647310137748718,0.0767382979393005,0.763292372226715,-0.640727579593658,0.0827823504805565,0.76263839006424,-0.641105353832245,-0.0858295932412148,0.0274285115301609,-0.0538043826818466,0.998174667358398,0.0480831861495972,-0.0337396301329136,0.998273372650146,0.763292372226715,-0.640727579593658,0.0827823504805565,0.758353888988495,-0.647310137748718,0.0767382979393005,-0.0251466426998377,-0.0095680970698595,0.999638020992279,-0.00698437169194222,-0.00267639593221247,0.999972105026245,0.0480831861495972,-0.0337396301329136,0.998273372650146,0.0274285115301609,-0.0538043826818466,0.998174667358398,-0.76175183057785,0.647868931293488,0,-0.765642702579498,0.643266081809998,0,-0.765629827976227,0.64328134059906,0,-0.761742174625397,0.647880256175995,0,0.0359969176352024,-0.0370782278478146,-0.99866384267807,0.00698427995666862,0.0026763966307044,-0.999972105026245,0.0251466985791922,0.0095680970698595,-0.999638020992279,0.0767124816775322,-0.0348407812416554,-0.996444284915924,0.760641038417816,-0.644530832767487,-0.0774942860007286,0.76263839006424,-0.641105353832245,-0.0858295932412148,0.0359969176352024,-0.0370782278478146,-0.99866384267807,0.0767124816775322,-0.0348407812416554,-0.996444284915924,0.76263839006424,-0.641105353832245,-0.0858295932412148,0.763292372226715,-0.640727579593658,0.0827823504805565,0.767112016677856,-0.63845556974411,0.0625591203570366,
- 0.765991389751434,-0.640005588531494,-0.0604152232408524,0.0480831861495972,-0.0337396301329136,0.998273372650146,0.100983664393425,-0.0641301944851875,0.992819011211395,0.767112016677856,-0.63845556974411,0.0625591203570366,0.763292372226715,-0.640727579593658,0.0827823504805565,-0.00698437169194222,-0.00267639593221247,0.999972105026245,0.0169812478125095,0.00606702640652657,0.999837398529053,0.100983664393425,-0.0641301944851875,0.992819011211395,0.0480831861495972,-0.0337396301329136,0.998273372650146,-0.765642702579498,0.643266081809998,0,-0.768000960350037,0.640448749065399,0,-0.768000900745392,0.640448689460754,0,-0.765629827976227,0.64328134059906,0,0.0682320445775986,-0.0770220085978508,-0.994691908359528,-0.0169814042747021,-0.00606702687218785,-0.999837279319763,0.00698427995666862,0.0026763966307044,-0.999972105026245,0.0359969176352024,-0.0370782278478146,-0.99866384267807,0.76263839006424,-0.641105353832245,-0.0858295932412148,0.765991389751434,-0.640005588531494,-0.0604152232408524,0.0682320445775986,-0.0770220085978508,-0.994691908359528,0.0359969176352024,-0.0370782278478146,-0.99866384267807,0.762177586555481,-0.640901327133179,-0.0912737846374512,0.762921631336212,-0.640489935874939,0.0878812447190285,0.764286756515503,-0.641820013523102,0.0627115517854691,0.763310194015503,-0.643159449100494,-0.0608568005263805,0.041984036564827,-0.0285435821861029,0.998710453510284,0.0977606475353241,-0.064848892390728,0.993094921112061,0.764286756515503,-0.641820013523102,0.0627115517854691,0.762921631336212,-0.640489935874939,0.0878812447190285,-0.00840327050536871,-0.00323399621993303,0.999959468841553,0.0145870661363006,0.00523859215900302,0.999879956245422,0.0977606475353241,-0.064848892390728,0.993094921112061,0.041984036564827,-0.0285435821861029,0.998710453510284,-0.76563036441803,0.643280684947968,0,-0.765252709388733,0.643730103969574,0,-0.765252649784088,0.643730163574219,0,-0.765639901161194,0.64326947927475,0,0.0696153715252876,-0.075976736843586,-0.994676411151886,-0.0145872700959444,-0.00523859402164817,-0.999879896640778,
- 0.00840255245566368,0.00323399365879595,-0.999959468841553,0.0299375895410776,-0.0318786725401878,-0.99904328584671,0.762177586555481,-0.640901327133179,-0.0912737846374512,0.763310194015503,-0.643159449100494,-0.0608568005263805,0.0696153715252876,-0.075976736843586,-0.994676411151886,0.0299375895410776,-0.0318786725401878,-0.99904328584671,0.768109083175659,-0.635607719421387,-0.0775319486856461,0.766183316707611,-0.637349486351013,0.0821505486965179,0.762921631336212,-0.640489935874939,0.0878812447190285,0.762177586555481,-0.640901327133179,-0.0912737846374512,0.768109083175659,-0.635607719421387,-0.0775319486856461,0.762177586555481,-0.640901327133179,-0.0912737846374512,0.0299375895410776,-0.0318786725401878,-0.99904328584671,0.0699442476034164,-0.0326962806284428,-0.997014939785004,0.00840255245566368,0.00323399365879595,-0.999959468841553,0.00329837179742754,0.00115685630589724,-0.999993860721588,0.0699442476034164,-0.0326962806284428,-0.997014939785004,0.0299375895410776,-0.0318786725401878,-0.99904328584671,-0.766221582889557,0.642576515674591,0,-0.76563036441803,0.643280684947968,0,-0.765639901161194,0.64326947927475,0,-0.766214668750763,0.642584681510925,0,0.00281432806514204,0.00115672207903117,0.999995410442352,-0.00840327050536871,-0.00323399621993303,0.999959468841553,0.041984036564827,-0.0285435821861029,0.998710453510284,0.0300162397325039,-0.0461565889418125,0.998483180999756,0.0300162397325039,-0.0461565889418125,0.998483180999756,0.041984036564827,-0.0285435821861029,0.998710453510284,0.762921631336212,-0.640489935874939,0.0878812447190285,0.766183316707611,-0.637349486351013,0.0821505486965179,0.759105801582336,-0.645337462425232,-0.0854285359382629,0.758390843868256,-0.646906912326813,0.0797165259718895,0.766183316707611,-0.637349486351013,0.0821505486965179,0.768109083175659,-0.635607719421387,-0.0775319486856461,0.0375412553548813,-0.0407949760556221,0.998462021350861,0.0300162397325039,-0.0461565889418125,0.998483180999756,0.766183316707611,-0.637349486351013,0.0821505486965179,0.758390843868256,-0.646906912326813,0.0797165259718895,
- -0.0349948070943356,-0.013546640984714,0.999295592308044,0.00281432806514204,0.00115672207903117,0.999995410442352,0.0300162397325039,-0.0461565889418125,0.998483180999756,0.0375412553548813,-0.0407949760556221,0.998462021350861,-0.764855802059174,0.644201517105103,0,-0.766221582889557,0.642576515674591,0,-0.766214668750763,0.642584681510925,0,-0.764833390712738,0.644228160381317,0,0.0699442476034164,-0.0326962806284428,-0.997014939785004,0.00329837179742754,0.00115685630589724,-0.999993860721588,0.0251301974058151,0.00972214434295893,-0.999636948108673,0.0488344207406044,-0.0345780663192272,-0.998208165168762,0.759105801582336,-0.645337462425232,-0.0854285359382629,0.768109083175659,-0.635607719421387,-0.0775319486856461,0.0699442476034164,-0.0326962806284428,-0.997014939785004,0.0488344207406044,-0.0345780663192272,-0.998208165168762,0.0180124398320913,0.0073790131136775,-0.999810516834259,0.0451262183487415,0.0183020438998938,-0.998813688755035,0.0784146934747696,-0.00997311156243086,-0.996870875358582,0.0404539927840233,-0.0326901897788048,-0.99864649772644,-0.759223282337189,0.650830268859863,3.41216559718305e-006,-0.759228587150574,0.650824010372162,3.43345254805172e-006,-0.759233117103577,0.650818705558777,3.45166336046532e-006,-0.763300597667694,0.646043539047241,1.51310143792216e-006,-0.763245940208435,0.646107971668243,1.53921098444698e-006,0.763315260410309,-0.641737759113312,-0.0743122100830078,0.764107465744019,-0.64115309715271,0.0711513683199883,0.771963536739349,-0.630318999290466,0.0822819396853447,0.767404735088348,-0.635677337646484,-0.0836928486824036,0.0698969438672066,-0.0486496612429619,0.996367216110229,0.0882975533604622,-0.0182534754276276,0.995926797389984,0.771963536739349,-0.630318999290466,0.0822819396853447,0.764107465744019,-0.64115309715271,0.0711513683199883,-0.00426295585930347,-0.00240699341520667,0.999988079071045,0.0443129949271679,0.0178174339234829,0.99885880947113,0.0882975533604622,-0.0182534754276276,0.995926797389984,0.0698969438672066,-0.0486496612429619,0.996367216110229,
- -0.758514046669006,0.651656806468964,0,-0.772356450557709,0.635189414024353,0,-0.772391080856323,0.635147154331207,0,-0.758629739284515,0.651521861553192,0,-0.000969720131251961,-0.0537435039877892,-0.998554289340973,-0.0443130545318127,-0.0178174339234829,-0.99885880947113,0.00426854519173503,0.00240071048028767,-0.999987959861755,0.0519699528813362,-0.0539196990430355,-0.997191905975342,0.763315260410309,-0.641737759113312,-0.0743122100830078,0.767404735088348,-0.635677337646484,-0.0836928486824036,-0.000969720131251961,-0.0537435039877892,-0.998554289340973,0.0519699528813362,-0.0539196990430355,-0.997191905975342,0.761459767818451,-0.644169330596924,-0.0722836256027222,0.759970724582672,-0.645391225814819,0.0769074037671089,0.758390843868256,-0.646906912326813,0.0797165259718895,0.759105801582336,-0.645337462425232,-0.0854285359382629,0.761459767818451,-0.644169330596924,-0.0722836256027222,0.759105801582336,-0.645337462425232,-0.0854285359382629,0.0488344207406044,-0.0345780663192272,-0.998208165168762,0.0718694999814034,-0.0430422723293304,-0.996484875679016,0.0251301974058151,0.00972214434295893,-0.999636948108673,-0.0024105510674417,-0.0010410969844088,-0.999996542930603,0.0718694999814034,-0.0430422723293304,-0.996484875679016,0.0488344207406044,-0.0345780663192272,-0.998208165168762,-0.76560378074646,0.643312454223633,0,-0.764855802059174,0.644201517105103,0,-0.764833390712738,0.644228160381317,0,-0.765632510185242,0.643278062343597,0,0.00231309793889523,0.0010417316807434,0.999996781349182,-0.0349948070943356,-0.013546640984714,0.999295592308044,0.0375412553548813,-0.0407949760556221,0.998462021350861,0.0352629907429218,-0.055513646453619,0.997834980487823,0.0352629907429218,-0.055513646453619,0.997834980487823,0.0375412553548813,-0.0407949760556221,0.998462021350861,0.758390843868256,-0.646906912326813,0.0797165259718895,0.759970724582672,-0.645391225814819,0.0769074037671089,-0.75430566072464,0.656523466110229,0,-0.75430566072464,0.656523406505585,0,-0.758514046669006,0.651656806468964,0,-0.758629739284515,0.651521861553192,0,
- 0.759853661060333,-0.640473484992981,-0.111427709460258,0.757726669311523,-0.642561256885529,0.113865584135056,0.764107465744019,-0.64115309715271,0.0711513683199883,0.763315260410309,-0.641737759113312,-0.0743122100830078,0.00463756825774908,-0.0212748069316149,0.999762952327728,-0.0132328327745199,-0.00617176713421941,0.999893426895142,-0.00426295585930347,-0.00240699341520667,0.999988079071045,0.0698969438672066,-0.0486496612429619,0.996367216110229,0.757726669311523,-0.642561256885529,0.113865584135056,0.00463756825774908,-0.0212748069316149,0.999762952327728,0.0698969438672066,-0.0486496612429619,0.996367216110229,0.764107465744019,-0.64115309715271,0.0711513683199883,0.0313998535275459,-0.00919880624860525,-0.999464571475983,0.759853661060333,-0.640473484992981,-0.111427709460258,0.763315260410309,-0.641737759113312,-0.0743122100830078,0.0519699528813362,-0.0539196990430355,-0.997191905975342,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,-0.00255742901936173,0.999996662139893,0,0.0387747883796692,0.999247968196869,0,0.0378192961215973,0.999284565448761,0,-0.00255743064917624,0.999996721744537,0,0.0438785813748837,-0.999036908149719,0,0.00255059124901891,-0.999996721744537,0,0.00255059194751084,-0.999996721744537,0,0.0429234057664871,-0.999078392982483,0,-0.999996781349182,-0.00255729816854,0,-0.999996781349182,-0.00255729816854,0,-0.999996781349182,-0.0025575936306268,0,-0.999996781349182,-0.0025575936306268,0,0.999156057834625,-0.0410752967000008,0,0.998933970928192,0.0461631640791893,0,0.99893593788147,0.04611811414361,0,0.999157786369324,-0.0410354658961296,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0.0378192961215973,0.999284565448761,0,0.0387747883796692,0.999247968196869,0,0.99893593788147,0.04611811414361,0,0.998933970928192,0.0461631640791893,0,0.0438785813748837,-0.999036908149719,0,0.0429234057664871,-0.999078392982483,0,0.999156057834625,-0.0410752967000008,0,0.999157786369324,-0.0410354658961296,0,0.643218457698822,0.765682697296143,0,0.643217384815216,0.765683531761169,0,0.643217384815216,0.765683531761169,0,
- 0.643218457698822,0.765682697296143,0,0.765639185905457,-0.643270313739777,2.60546470601817e-014,0.765639662742615,-0.643269717693329,-6.12131202615274e-007,0.765639662742615,-0.643269717693329,-6.12131145771855e-007,0.765639185905457,-0.643270254135132,0,0.64320570230484,0.765693485736847,3.8539329239029e-007,0.643205642700195,0.765693366527557,3.85395026114566e-007,0.643217325210571,0.765683650970459,3.90897639590548e-006,0.643217325210571,0.765683710575104,3.90897685065283e-006,0.643182218074799,0.765713155269623,2.98708641821577e-007,0.643170595169067,0.765722930431366,2.1476446363522e-006,0.643170595169067,0.765722870826721,2.1476446363522e-006,0.643182218074799,0.765713155269623,2.98707561796618e-007,0.643322467803955,0.765595376491547,0,0.643324255943298,0.765593707561493,0,0.643324315547943,0.765593826770782,0,0.643322467803955,0.765595376491547,0,0.643172025680542,0.76572173833847,1.01449941780629e-007,0.643166899681091,0.76572597026825,3.77057801870251e-007,0.643166959285736,0.765726029872894,3.7705783029196e-007,0.643172025680542,0.765721797943115,1.01449877831783e-007,0.765656232833862,-0.643249869346619,1.59551561296212e-007,0.765654623508453,-0.643251895904541,5.1085038421661e-007,0.765654623508453,-0.643251955509186,5.10850441060029e-007,0.765656292438507,-0.643249869346619,1.5955164656134e-007,0.643296301364899,0.765617311000824,1.69024119145433e-007,0.643296301364899,0.765617311000824,1.69024190199707e-007,0.643293857574463,0.765619337558746,5.55619294573262e-007,0.643293857574463,0.765619397163391,5.55619351416681e-007,0.643289864063263,0.765622735023499,2.56281282418058e-007,0.643288373947144,0.765623986721039,7.79964011599077e-007,0.643288373947144,0.765624046325684,7.79964011599077e-007,0.643289864063263,0.765622735023499,2.56281111887802e-007,0.643342256546021,0.765578746795654,1.0749130296972e-007,0.643346846103668,0.765574753284454,2.82523615169339e-007,0.643346965312958,0.765574812889099,2.82523672012758e-007,0.643342196941376,0.765578746795654,1.07491246126301e-007,0.64319384098053,0.76570338010788,-4.09243661181335e-008,
- 0.643191814422607,0.765705049037933,-9.97452218598482e-008,0.643191874027252,0.765705108642578,-9.97452289652756e-008,0.64319384098053,0.76570338010788,-4.09243625654199e-008,0.765652894973755,-0.643253922462463,1.51913894796962e-007,0.765653371810913,-0.643253445625305,3.46219792390912e-007,0.765653252601624,-0.64325338602066,3.46219763969202e-007,0.765653014183044,-0.643253922462463,1.51913923218672e-007,0.643341422080994,0.765579402446747,-6.88217980382433e-008,0.643341422080994,0.765579402446747,-6.88218051436706e-008,0.643341779708862,0.765579164028168,-1.5880117132383e-007,0.643341720104218,0.765579104423523,-1.5880117132383e-007,0.643213987350464,0.765686452388763,7.63855751984011e-008,0.643211007118225,0.765688955783844,1.69875264077746e-007,0.64321094751358,0.765689015388489,1.69875264077746e-007,0.643213987350464,0.765686392784119,7.6385553882119e-008,-0.765649318695068,0.643258094787598,-1.84664543212421e-007,-0.765649437904358,0.643258154392242,-1.84664543212421e-007,-0.765649378299713,0.643258094787598,-1.84664543212421e-007,-0.765649378299713,0.643258154392242,-1.84664543212421e-007,-0.643271446228027,-0.765638113021851,-1.87720317512685e-007,-0.643271446228027,-0.765638172626495,-1.87720317512685e-007,-0.643271386623383,-0.765638172626495,-1.8772030330183e-007,-0.643271446228027,-0.76563823223114,-1.8772033172354e-007,0.643234133720398,0.765669524669647,2.67036114109942e-007,0.643234074115753,0.765669584274292,2.67036142531651e-007,0.643234133720398,0.765669643878937,2.67036142531651e-007,0.643234133720398,0.765669584274292,2.67036142531651e-007,-0.765632450580597,0.643270671367645,0.00313758780248463,-0.765639007091522,0.643269181251526,-0.00127542298287153,-0.765639007091522,0.643269181251526,-0.00128054351080209,-0.765632927417755,0.643270790576935,0.00297405407764018,0.728720605373383,-0.684805452823639,-0.0027838870882988,0.79572856426239,-0.60564249753952,-0.00360818509943783,0.798032283782959,-0.602590084075928,-0.00546297105029225,0.731497943401337,-0.68183845281601,-0.00265933526679873,0.681345343589783,0.731888055801392,-0.0104171968996525,
- 0.64321094751358,0.76562112569809,-0.0101947747170925,0.643006682395935,0.765367746353149,-0.0274703353643417,0.682938396930695,0.729952275753021,-0.027653181925416,-0.601109206676483,-0.798738360404968,0.0261659808456898,-0.643028497695923,-0.765387535095215,0.0263883750885725,-0.643253564834595,-0.76564610004425,0.00330662005580962,-0.604080975055695,-0.796916306018829,0.00323838880285621,-0.765650570392609,0.643255889415741,-0.000997237744741142,-0.765654861927032,0.643251180648804,-0.000750138016883284,-0.765654921531677,0.643251121044159,-0.000743667187634856,-0.765650570392609,0.643256008625031,-0.000993785099126399,0.765642821788788,-0.643265187740326,0.000993634574115276,0.765644192695618,-0.643263876438141,0.000743196636904031,0.796761870384216,-0.60429322719574,0.000460737064713612,0.796148657798767,-0.60509979724884,0.00128077284898609,0.683067083358765,0.730333566665649,-0.00567806186154485,0.643253028392792,0.765632331371307,-0.00571565050631762,0.643254220485687,0.765630483627319,0.0058401538990438,0.683336853981018,0.730079472064972,0.00588875077664852,-0.643236875534058,-0.765645802021027,0.00572893908247352,-0.643233239650726,-0.765647947788239,-0.00584501260891557,-0.643233239650726,-0.765648007392883,-0.00584155460819602,-0.643236935138702,-0.765645861625671,0.00571542605757713,-0.601109206676483,-0.798738360404968,0.0261659808456898,-0.604080975055695,-0.796916306018829,0.00323838880285621,0.728720605373383,-0.684805452823639,-0.0027838870882988,0.731497943401337,-0.68183845281601,-0.00265933526679873,0.798032283782959,-0.602590084075928,-0.00546297105029225,0.79572856426239,-0.60564249753952,-0.00360818509943783,0.681345343589783,0.731888055801392,-0.0104171968996525,0.682938396930695,0.729952275753021,-0.027653181925416,0.796148657798767,-0.60509979724884,0.00128077284898609,0.796761870384216,-0.60429322719574,0.000460737064713612,0.683067083358765,0.730333566665649,-0.00567806186154485,0.683336853981018,0.730079472064972,0.00588875077664852,-0.604080975055695,-0.796916306018829,0.00323838880285621,
- -0.629631280899048,-0.776705026626587,-0.017139658331871,0.679602265357971,-0.733569204807281,-0.00412424374371767,0.728720605373383,-0.684805452823639,-0.0027838870882988,-0.643253564834595,-0.76564610004425,0.00330662005580962,-0.643168270587921,-0.765533685684204,-0.0171105302870274,-0.629631280899048,-0.776705026626587,-0.017139658331871,-0.604080975055695,-0.796916306018829,0.00323838880285621,-0.765639007091522,0.643269181251526,-0.00127542298287153,-0.765640020370483,0.64326548576355,-0.00220352178439498,-0.765639960765839,0.64326548576355,-0.00220352155156434,-0.765639007091522,0.643269181251526,-0.00128054351080209,0.79572856426239,-0.60564249753952,-0.00360818509943783,0.788324356079102,-0.615257918834686,-0.00157838803716004,0.666792809963226,0.745139420032501,0.0124273560941219,0.681345343589783,0.731888055801392,-0.0104171968996525,0.794687449932098,-0.607018172740936,-0.000868244504090399,0.788103818893433,-0.615542054176331,-0.000673816073685884,0.664709568023682,0.747065663337708,0.0073633068241179,0.680256128311157,0.732933044433594,-0.00779438344761729,0.765644192695618,-0.643263876438141,0.000743196636904031,0.765791058540344,-0.643089354038239,-0.000505725620314479,0.794687449932098,-0.607018172740936,-0.000868244504090399,0.796761870384216,-0.60429322719574,0.000460737064713612,-0.642871737480164,-0.765941083431244,0.0070781409740448,-0.643236875534058,-0.765645802021027,0.00572893908247352,-0.643236935138702,-0.765645861625671,0.00571542605757713,-0.642871618270874,-0.765941321849823,0.00707079051062465,-0.765654861927032,0.643251180648804,-0.000750138016883284,-0.765768945217133,0.643115758895874,0.000414611713495106,-0.765769958496094,0.643114447593689,0.000417944043874741,-0.765654921531677,0.643251121044159,-0.000743667187634856,0.680256128311157,0.732933044433594,-0.00779438344761729,0.641586184501648,0.767011821269989,-0.00775498757138848,0.643253028392792,0.765632331371307,-0.00571565050631762,0.683067083358765,0.730333566665649,-0.00567806186154485,0.796761870384216,-0.60429322719574,0.000460737064713612,
- 0.794687449932098,-0.607018172740936,-0.000868244504090399,0.680256128311157,0.732933044433594,-0.00779438344761729,0.683067083358765,0.730333566665649,-0.00567806186154485,0.765791058540344,-0.643089354038239,-0.000505725620314479,0.765946388244629,-0.642903745174408,-0.000973355839960277,0.788103818893433,-0.615542054176331,-0.000673816073685884,0.794687449932098,-0.607018172740936,-0.000868244504090399,-0.765768945217133,0.643115758895874,0.000414611713495106,-0.765869140625,0.64299601316452,0.000730235187802464,-0.765869081020355,0.64299601316452,0.000730235187802464,-0.765769958496094,0.643114447593689,0.000417944043874741,0.00347769167274237,-0.0320054553449154,0.999481678009033,0.0274127032607794,-0.0537911728024483,0.998175859451294,0.758089065551758,-0.647171258926392,0.0804375857114792,0.720389127731323,-0.62275642156601,0.305309653282166,0.52289754152298,-0.467289119958878,0.712894797325134,-0.018790740519762,-0.00717404717579484,0.999797701835632,-0.0251469146460295,-0.0095680970698595,0.999638020992279,0.0274127032607794,-0.0537911728024483,0.998175859451294,0.00347769167274237,-0.0320054553449154,0.999481678009033,0.0735732913017273,-0.0322068892419338,-0.996769607067108,0.0251401625573635,0.00953810941427946,-0.999638378620148,0.0254079420119524,0.00972399581223726,-0.999629855155945,0.0595409460365772,-0.0193820483982563,-0.998037695884705,0.760755717754364,-0.644675731658936,-0.0751262083649635,0.758089065551758,-0.647171258926392,0.0804375857114792,0.763292372226715,-0.640727639198303,0.0827823877334595,0.76263815164566,-0.641105473041534,-0.0858297273516655,0.0274127032607794,-0.0537911728024483,0.998175859451294,0.0480836965143681,-0.033739659935236,0.998273313045502,0.763292372226715,-0.640727639198303,0.0827823877334595,0.758089065551758,-0.647171258926392,0.0804375857114792,-0.0251469146460295,-0.0095680970698595,0.999638020992279,-0.00698438193649054,-0.00267639593221247,0.999972105026245,0.0480836965143681,-0.033739659935236,0.998273313045502,0.0274127032607794,-0.0537911728024483,0.998175859451294,
- -0.761754930019379,0.647865235805511,-1.29771638057719e-006,-0.765642821788788,0.643265843391418,0,-0.765630006790161,0.643281042575836,0,-0.761745274066925,0.647876560688019,-1.32832610688638e-006,0.0359959080815315,-0.0370782725512981,-0.998663902282715,0.00698375701904297,0.0026763966307044,-0.999972105026245,0.0251401625573635,0.00953810941427946,-0.999638378620148,0.0735732913017273,-0.0322068892419338,-0.996769607067108,0.760755717754364,-0.644675731658936,-0.0751262083649635,0.76263815164566,-0.641105473041534,-0.0858297273516655,0.0359959080815315,-0.0370782725512981,-0.998663902282715,0.0735732913017273,-0.0322068892419338,-0.996769607067108,0.76263815164566,-0.641105473041534,-0.0858297273516655,0.763292372226715,-0.640727639198303,0.0827823877334595,0.767111837863922,-0.638455748558044,0.0625590980052948,0.765991270542145,-0.640005648136139,-0.0604153163731098,0.0480836965143681,-0.033739659935236,0.998273313045502,0.100983761250973,-0.0641301497817039,0.99281895160675,0.767111837863922,-0.638455748558044,0.0625590980052948,0.763292372226715,-0.640727639198303,0.0827823877334595,-0.00698438193649054,-0.00267639593221247,0.999972105026245,0.0169814024120569,0.00606702640652657,0.999837398529053,0.100983761250973,-0.0641301497817039,0.99281895160675,0.0480836965143681,-0.033739659935236,0.998273313045502,-0.765642821788788,0.643265843391418,0,-0.768000960350037,0.640448808670044,0,-0.768000841140747,0.640448749065399,0,-0.765630006790161,0.643281042575836,0,0.0682312697172165,-0.0770221054553986,-0.994692027568817,-0.0169828943908215,-0.00606702687218785,-0.999837279319763,0.00698375701904297,0.0026763966307044,-0.999972105026245,0.0359959080815315,-0.0370782725512981,-0.998663902282715,0.76263815164566,-0.641105473041534,-0.0858297273516655,0.765991270542145,-0.640005648136139,-0.0604153163731098,0.0682312697172165,-0.0770221054553986,-0.994692027568817,0.0359959080815315,-0.0370782725512981,-0.998663902282715,-0.00255743064917624,0.999996721744537,0,0.0378192961215973,0.999284565448761,0,0.0137631967663765,0.999905228614807,0,
- -0.00255743227899075,0.999996781349182,0,0.0429234057664871,-0.999078392982483,0,0.00255059194751084,-0.999996721744537,0,0.00255059287883341,-0.999996781349182,0,0.0189110152423382,-0.999821245670319,0,-0.999996781349182,-0.0025575936306268,0,-0.999996781349182,-0.0025575936306268,0,-0.999996781349182,-0.00255790026858449,0,-0.999996781349182,-0.00255790073424578,0,0.0429234057664871,-0.999078392982483,0,0.0189110152423382,-0.999821245670319,0,0.998372077941895,-0.0570364855229855,0,0.999156057834625,-0.0410752967000008,0,-0.765633821487427,0.643276631832123,0,-0.765633821487427,0.643276691436768,0,-0.765633821487427,0.643276691436768,0,-0.765633821487427,0.643276691436768,0,0.765652596950531,-0.643254220485687,6.53469271583162e-007,0.765652656555176,-0.643254280090332,6.53469214739744e-007,0.765652596950531,-0.643254220485687,6.53469271583162e-007,0.765652656555176,-0.643254280090332,6.53469271583162e-007,-0.643291592597961,-0.765621244907379,-5.33134766556032e-007,-0.643291592597961,-0.765621244907379,-5.33134709712613e-007,-0.643291592597961,-0.765621304512024,-5.33134766556032e-007,-0.643291532993317,-0.765621304512024,-5.33134709712613e-007,-0.643297374248505,-0.765616357326508,0,-0.643297374248505,-0.765616297721863,0,-0.643297374248505,-0.765616416931152,0,-0.643297374248505,-0.765616416931152,0,-0.765661954879761,0.643243134021759,0,-0.765662014484406,0.643243134021759,0,-0.765661895275116,0.643243074417114,0,-0.765661895275116,0.643243074417114,0,-0.765642702579498,0.643266081809998,0,-0.765642642974854,0.643266081809998,0,-0.765642642974854,0.643266081809998,0,-0.765642642974854,0.643266081809998,0,0.76564621925354,-0.643261909484863,0,0.76564621925354,-0.643261909484863,0,0.76564621925354,-0.643261909484863,0,0.76564621925354,-0.643261909484863,0,-0.643243193626404,-0.765661954879761,0,-0.643243134021759,-0.765661954879761,0,-0.643243134021759,-0.765661954879761,0,-0.643243134021759,-0.765661954879761,0,0.643199145793915,0.765698969364166,0,0.64319920539856,0.765698969364166,0,0.643199145793915,0.765698969364166,0,
- 0.643199145793915,0.765698969364166,0,-0.765641510486603,0.643267512321472,-5.09094206790905e-007,-0.765641510486603,0.643267512321472,-5.09094149947487e-007,-0.765641510486603,0.643267571926117,-5.09094149947487e-007,-0.765641510486603,0.643267571926117,-5.09094206790905e-007,0.76566344499588,-0.643241465091705,5.56160443920817e-007,0.765663325786591,-0.643241405487061,5.56160387077398e-007,0.765663325786591,-0.643241465091705,5.56160443920817e-007,0.76566344499588,-0.643241405487061,5.56160443920817e-007,-0.643192887306213,-0.765704095363617,-8.16697081518214e-007,-0.643192946910858,-0.765704214572906,-8.16697138361633e-007,-0.643192887306213,-0.765704154968262,-8.16697138361633e-007,-0.643192827701569,-0.765704095363617,-8.16697081518214e-007,0.765642523765564,-0.643266439437866,4.82485120301135e-007,0.765642464160919,-0.643266379833221,4.82485063457716e-007,0.765642464160919,-0.643266320228577,4.82485063457716e-007,0.765642464160919,-0.643266379833221,4.82485063457716e-007,-0.768640398979187,0.639681041240692,0,-0.768640398979187,0.639681100845337,0,-0.768640339374542,0.639681100845337,0,-0.768640339374542,0.639681100845337,0,-0.643332958221436,-0.765586495399475,0,-0.643332898616791,-0.76558643579483,0,-0.64333301782608,-0.76558655500412,0,-0.64333301782608,-0.76558655500412,0,0.643106281757355,0.765776991844177,0,0.64310622215271,0.765776932239532,0,0.643106162548065,0.765776932239532,0,0.643106162548065,0.765776932239532,0,-0.765647709369659,0.64326000213623,0,-0.765647768974304,0.643260061740875,0,-0.765647768974304,0.64326000213623,0,-0.765647768974304,0.64326000213623,0,0.765616238117218,-0.643297493457794,2.29710835242258e-007,0.765616297721863,-0.643297493457794,2.29710849453113e-007,0.765616238117218,-0.643297612667084,2.29710849453113e-007,0.765616238117218,-0.643297553062439,2.29710849453113e-007,-0.643255114555359,-0.765651881694794,2.19990511141077e-007,-0.643255114555359,-0.765651941299438,2.19990525351932e-007,-0.643255114555359,-0.765651881694794,2.19990525351932e-007,-0.643255174160004,-0.765651941299438,2.19990525351932e-007,
- -0.765658259391785,0.643247485160828,0,-0.765658318996429,0.643247544765472,0,-0.765658318996429,0.643247485160828,0,-0.765658318996429,0.643247485160828,0,0.765651404857636,-0.643255710601807,0,0.765651524066925,-0.643255710601807,0,0.765651404857636,-0.643255650997162,0,0.765651404857636,-0.643255650997162,0,-0.643302977085114,-0.76561176776886,0,-0.643302917480469,-0.76561164855957,0,-0.643302917480469,-0.765611708164215,0,-0.643302917480469,-0.765611708164215,0,0.790662229061127,-0.61224228143692,-0.00356513750739396,0.765653014183044,-0.643247783184052,-0.00277369213290513,0.999616205692291,-0.0242376681417227,-0.0134123666211963,0.670670807361603,0.741506457328796,-0.0192062333226204,0.643152713775635,0.765509486198425,-0.0187050551176071,0.643164932727814,0.765524923801422,-0.0176171362400055,0.643223404884338,0.765593111515045,0.0114375520497561,0.682739853858948,0.730571031570435,0.0115014063194394,0.670670807361603,0.741506457328796,-0.0192062333226204,0.790662229061127,-0.61224228143692,-0.00356513750739396,0.999616205692291,-0.0242376681417227,-0.0134123666211963,0.993968844413757,0.108624383807182,-0.0150611372664571,0.611299335956573,-0.791399538516998,0,0.765653014183044,-0.643247783184052,-0.00277369213290513,0.72826623916626,-0.685291349887848,-0.00199229246936738,0.643152713775635,0.765509486198425,-0.0187050551176071,0.643257617950439,0.765649795532227,0,0.643164932727814,0.765524923801422,-0.0176171362400055,0.764211595058441,-0.644028902053833,-0.0347486920654774,0.714577376842499,-0.62009984254837,0.323813885450363,0.76478099822998,-0.638618350028992,0.0853037312626839,0.76509565114975,-0.638612508773804,-0.0824779868125916,0.0784146934747696,-0.00997311156243086,-0.996870875358582,0.764211595058441,-0.644028902053833,-0.0347486920654774,0.76509565114975,-0.638612508773804,-0.0824779868125916,0.0404539927840233,-0.0326901897788048,-0.99864649772644,-0.0307879913598299,-0.0231270026415586,0.999258399009705,-0.0390502586960793,-0.015887288376689,0.999110877513886,-0.0367709025740623,-0.014953825622797,0.999211847782135,
- -0.0165512133389711,-0.00682711787521839,0.999839782714844,0.044705294072628,-0.036502331495285,0.998333096504211,0.714577376842499,-0.62009984254837,0.323813885450363,-0.0307879913598299,-0.0231270026415586,0.999258399009705,0.044705294072628,-0.036502331495285,0.998333096504211,0.76478099822998,-0.638618350028992,0.0853037312626839,0.768690288066864,-0.639621138572693,0,0.768690288066864,-0.639621138572693,0,0.768690288066864,-0.639621198177338,0,0.768690288066864,-0.639621198177338,0,-0.758371591567993,0.651822328567505,0,-0.759228587150574,0.650824010372162,3.43345254805172e-006,-0.759223282337189,0.650830268859863,3.41216559718305e-006,-0.0390502586960793,-0.015887288376689,0.999110877513886,0.0245017763227224,0.0101389158517122,0.999648332595825,-0.0367709025740623,-0.014953825622797,0.999211847782135,1,0,0,1,0,0,1,0,0,1,0,0,-0.765636742115021,0.643273234367371,1.39080759709032e-006,-0.765636742115021,0.643273174762726,1.39080748340348e-006,-0.765636563301086,0.643273413181305,-1.53319455113536e-013,-0.765636503696442,0.643273413181305,-3.22777727126706e-014,0.765652656555176,-0.643254160881042,0,0.765652656555176,-0.643254220485687,0,0.765652298927307,-0.643254637718201,0,0.765652298927307,-0.643254637718201,0,-0.643258929252625,-0.765648663043976,-1.27954012896225e-006,-0.643258988857269,-0.765648722648621,-1.27954024264909e-006,-0.643260180950165,-0.765647709369659,1.90037855650428e-014,-0.643260180950165,-0.765647709369659,-1.04520789267516e-013,-0.643214583396912,-0.76568603515625,2.95586937681946e-006,-0.643214583396912,-0.765685975551605,2.95586914944579e-006,-0.643209099769592,-0.765690624713898,-7.05658891320127e-008,-0.643209159374237,-0.765690565109253,-7.05647451582081e-008,-0.76566606760025,0.643238186836243,-1.56830367359362e-007,-0.76566606760025,0.643238246440887,-1.56830381570217e-007,-0.765670478343964,0.643233060836792,-2.90251165324662e-007,-0.765670478343964,0.643233001232147,-2.90251136902953e-007,-0.765648782253265,0.643258810043335,0,-0.765648782253265,0.643258810043335,0,-0.765648901462555,0.643258690834045,0,
- -0.765648901462555,0.643258690834045,0,0.765638291835785,-0.643271267414093,5.0243288569618e-006,0.76563835144043,-0.643271267414093,5.02432931170915e-006,0.76564222574234,-0.643266558647156,3.7716563383583e-007,0.765642285346985,-0.643266618251801,3.77162308495826e-007,-0.643176436424255,-0.76571798324585,-1.83978374934668e-006,-0.643176436424255,-0.765718042850494,-1.83978386303352e-006,-0.643179357051849,-0.765715599060059,-5.65896414173039e-008,-0.643179357051849,-0.765715539455414,-5.65889415327092e-008,0.643199443817139,0.765698671340942,1.81657026132598e-006,0.643199443817139,0.765698671340942,1.81657026132598e-006,0.643211603164673,0.765688419342041,3.37103813308204e-007,0.643211662769318,0.765688419342041,3.37104580694358e-007,-0.765646576881409,0.643261551856995,-1.029130430652e-006,-0.765646517276764,0.64326149225235,-1.02913031696517e-006,-0.765645563602448,0.64326274394989,-2.15622620203249e-007,-0.765645503997803,0.64326274394989,-2.15622762311796e-007,0.765639245510101,-0.643270134925842,1.64832579230279e-006,0.765639245510101,-0.643270134925842,1.64832590598962e-006,0.765642642974854,-0.643266141414642,3.27786835896404e-007,0.765642583370209,-0.643266201019287,3.27786182197087e-007,-0.643309593200684,-0.765606164932251,-9.15188309136283e-007,-0.643309533596039,-0.765606164932251,-9.15188309136283e-007,-0.643305897712708,-0.765609323978424,-2.03212479732429e-007,-0.643305838108063,-0.765609264373779,-2.03212323413027e-007,-0.765647768974304,0.643260061740875,1.45892670389003e-007,-0.765647768974304,0.64326000213623,1.45892670389003e-007,-0.765647411346436,0.643260419368744,3.66135388674138e-008,-0.76564747095108,0.643260478973389,3.66135459728412e-008,0.765649795532227,-0.643257617950439,3.07220489048632e-007,0.765649855136871,-0.643257617950439,3.07220517470341e-007,0.765649914741516,-0.643257439136505,7.41622230293615e-008,0.765649974346161,-0.643257439136505,7.41622514510709e-008,-0.643313884735107,-0.765602588653564,1.89211093015729e-007,-0.643313884735107,-0.765602588653564,1.89211107226583e-007,
- -0.643313944339752,-0.76560240983963,5.07766699797685e-008,-0.643313944339752,-0.76560240983963,5.07766664270548e-008,-0.765649795532227,0.643257737159729,-7.00969337685819e-007,-0.765649735927582,0.643257677555084,-7.00969280842401e-007,-0.765648782253265,0.643258810043335,-2.0404273470831e-007,-0.765648782253265,0.643258810043335,-2.04042805762583e-007,0.765646815299988,-0.643261194229126,5.84749386689509e-007,0.765646815299988,-0.643261134624481,5.8474932984609e-007,0.765647947788239,-0.643259823322296,1.65205918278843e-007,0.765647947788239,-0.643259763717651,1.65205833013715e-007,-0.643182396888733,-0.765713036060333,-4.66582179114994e-007,-0.643182396888733,-0.765712976455688,-4.66582122271575e-007,-0.643176436424255,-0.765717923641205,-1.4172958628933e-007,-0.6431764960289,-0.76571798324585,-1.41729529445911e-007,-0.643245697021484,-0.765659868717194,-4.02294489276755e-007,-0.643245697021484,-0.765659928321838,-4.02294517698465e-007,-0.643238186836243,-0.765666127204895,-1.31929056124136e-007,-0.643238246440887,-0.765666127204895,-1.31929013491572e-007,-0.765645444393158,0.64326286315918,-3.28389717196842e-007,-0.765645444393158,0.643262922763824,-3.28389717196842e-007,-0.765644073486328,0.643264472484589,-1.05148245665987e-007,-0.765644133090973,0.643264472484589,-1.05148295403978e-007,-0.765641331672668,0.643267691135406,-4.47603099473781e-007,-0.765641391277313,0.643267631530762,-4.47603014208653e-007,-0.76564234495163,0.643266439437866,-1.55086723907516e-007,-0.765642404556274,0.643266499042511,-1.55086780750935e-007,0.765645682811737,-0.643262445926666,4.72361222136897e-007,0.765645742416382,-0.643262505531311,4.72361278980316e-007,0.765647172927856,-0.643260836601257,1.60231465429206e-007,0.765647113323212,-0.643260776996613,1.60231394374932e-007,-0.643254935741425,-0.765652000904083,0,-0.643254935741425,-0.765652060508728,0,-0.643254339694977,-0.765652537345886,0,-0.643254339694977,-0.765652537345886,0,0.643245935440063,0.765659749507904,3.12238910282758e-007,0.643245816230774,0.765659689903259,3.12238881861049e-007,
- 0.643242597579956,0.765662431716919,1.11529416813028e-007,0.643242537975311,0.765662372112274,1.11529452340164e-007,-0.765637934207916,0.643271684646606,-2.67814947996214e-009,-0.765637993812561,0.643271684646606,-2.67814925791754e-009,-0.765640139579773,0.643269121646881,-9.96832616451115e-010,-0.765640139579773,0.643269121646881,-9.96832616451115e-010,0.765649616718292,-0.643257856369019,0,0.765649557113647,-0.643257796764374,0,0.765649855136871,-0.643257737159729,0,0.765649855136871,-0.643257737159729,0,-0.643149614334106,-0.765740513801575,3.03458904227227e-007,-0.643149673938751,-0.765740513801575,3.03458932648937e-007,-0.643154561519623,-0.765736401081085,1.1535624366843e-007,-0.643154621124268,-0.76573634147644,1.15356272090139e-007,-0.765649974346161,0.643257439136505,-3.36853133831028e-007,-0.765649914741516,0.64325737953186,-3.36853162252737e-007,-0.765651047229767,0.643256306648254,-1.34259551032301e-007,-0.765650987625122,0.643256187438965,-1.34259565243156e-007,0.765649378299713,-0.643258154392242,0,0.765649378299713,-0.643258035182953,0,0.765649855136871,-0.64325749874115,0,0.765649855136871,-0.64325749874115,0,-0.643322467803955,-0.765595316886902,-4.99696177769238e-008,-0.64332240819931,-0.765595376491547,-4.99696177769238e-008,-0.643325209617615,-0.765592992305756,-2.04793764169153e-008,-0.643325209617615,-0.7655930519104,-2.0479379969629e-008,-0.765646994113922,0.643261015415192,2.72906021336894e-007,-0.765646934509277,0.643261015415192,2.72906021336894e-007,-0.765647828578949,0.643260061740875,1.15907070608046e-007,-0.765647828578949,0.64326000213623,1.15907042186336e-007,0.765645921230316,-0.643262326717377,0,0.765645921230316,-0.643262267112732,0,0.765645980834961,-0.643262147903442,0,0.765645980834961,-0.643262147903442,0,-0.643172919750214,-0.765721023082733,2.43907777530694e-007,-0.643172919750214,-0.765721023082733,2.43907777530694e-007,-0.643176317214966,-0.765718162059784,1.05634661906606e-007,-0.643176317214966,-0.765718102455139,1.05634690328316e-007,-0.643287003040314,-0.765625178813934,-2.33997596410518e-007,
- -0.643287003040314,-0.76562511920929,-2.33997596410518e-007,-0.64328944683075,-0.765623092651367,-1.05118459714504e-007,-0.64328944683075,-0.765623092651367,-1.05118438398222e-007,-0.765641868114471,0.643266975879669,-4.84166129410823e-008,-0.765641927719116,0.643267035484314,-4.84166200465097e-008,-0.76564234495163,0.643266558647156,-2.14984936519613e-008,-0.765642285346985,0.643266558647156,-2.14984900992476e-008,-0.765651404857636,0.643255710601807,0,-0.765651404857636,0.643255710601807,0,-0.76565158367157,0.643255531787872,0,-0.76565158367157,0.643255531787872,0,0.765628933906555,-0.643282413482666,3.4238871648995e-007,0.765628933906555,-0.643282473087311,3.4238868806824e-007,0.765629708766937,-0.643281579017639,1.56409342366715e-007,0.765629768371582,-0.643281519412994,1.56409313945005e-007,-0.643276453018188,-0.765634059906006,0,-0.643276453018188,-0.765634059906006,0,-0.643277943134308,-0.765632808208466,0,-0.643277943134308,-0.765632808208466,0,0.643238425254822,0.765666007995605,1.42369373179463e-007,0.643238365650177,0.765666007995605,1.42369373179463e-007,0.643241822719574,0.765663027763367,6.67757191763485e-008,0.643241822719574,0.765663087368011,6.67757262817759e-008,-0.765651702880859,0.643255352973938,2.59274855807234e-007,-0.765651702880859,0.643255293369293,2.59274855807234e-007,-0.765652477741241,0.643254458904266,1.24274066592989e-007,-0.765652477741241,0.643254458904266,1.24274066592989e-007,0.765645802021027,-0.643262326717377,3.11269673147763e-007,0.765645861625671,-0.643262386322021,3.11269701569472e-007,0.765646755695343,-0.643261313438416,1.47762662550122e-007,0.765646696090698,-0.643261313438416,1.47762634128412e-007,-0.643203437328339,-0.76569539308548,2.07142676345029e-007,-0.643203318119049,-0.765695333480835,2.07142690555884e-007,-0.643208026885986,-0.765691459178925,1.00418930060187e-007,-0.643208026885986,-0.765691459178925,1.00418958481896e-007,0.765653252601624,-0.64325350522995,2.35976273188498e-007,0.765653312206268,-0.643253445625305,2.35976244766789e-007,0.765653252601624,-0.64325350522995,2.35976244766789e-007,
- 0.765653312206268,-0.64325350522995,2.35976273188498e-007,-0.643240690231323,-0.765600502490997,0.00987248308956623,-0.643294990062714,-0.765618503093719,0,-0.633823573589325,-0.773477673530579,0,-0.604730069637299,-0.796370327472687,0.0097935302183032,0.679602265357971,-0.733569204807281,-0.00412424374371767,0.788324356079102,-0.615257918834686,-0.00157838803716004,0.79572856426239,-0.60564249753952,-0.00360818509943783,0.728720605373383,-0.684805452823639,-0.0027838870882988,0.666792809963226,0.745139420032501,0.0124273560941219,0.643189251422882,0.765605449676514,0.0124900471419096,0.64321094751358,0.76562112569809,-0.0101947747170925,0.681345343589783,0.731888055801392,-0.0104171968996525,-0.642871618270874,-0.765941321849823,0.00707079051062465,-0.6425501704216,-0.766217708587646,-0.00629932386800647,-0.6425501704216,-0.766217648983002,-0.00629932386800647,-0.642871737480164,-0.765941083431244,0.0070781409740448,0.664709568023682,0.747065663337708,0.0073633068241179,0.639822840690613,0.768487095832825,0.00736118759959936,0.641586184501648,0.767011821269989,-0.00775498757138848,0.680256128311157,0.732933044433594,-0.00779438344761729,0.52289754152298,-0.467289119958878,0.712894797325134,0.0461999550461769,0.0168698206543922,0.998789727687836,0.00347769167274237,-0.0320054553449154,0.999481678009033,0.0461999550461769,0.0168698206543922,0.998789727687836,0.0451625734567642,0.0177233666181564,0.998822450637817,-0.018790740519762,-0.00717404717579484,0.999797701835632,0.00347769167274237,-0.0320054553449154,0.999481678009033,-0.77292537689209,0.634496867656708,0,-0.761627316474915,0.648015260696411,-2.13487965083914e-006,-0.761783123016357,0.647832214832306,-2.10575080927811e-006,0.761519968509674,-0.647002696990967,-0.038403794169426,0.720389127731323,-0.62275642156601,0.305309653282166,0.758089065551758,-0.647171258926392,0.0804375857114792,0.760755717754364,-0.644675731658936,-0.0751262083649635,-0.761627316474915,0.648015260696411,-2.13487965083914e-006,-0.761483132839203,0.648184895515442,-2.16184866985714e-006,
- -0.761754930019379,0.647865235805511,-1.29771638057719e-006,-0.761745274066925,0.647876560688019,-1.32832610688638e-006,-0.761783123016357,0.647832214832306,-2.10575080927811e-006,0.0595409460365772,-0.0193820483982563,-0.998037695884705,0.761519968509674,-0.647002696990967,-0.038403794169426,0.760755717754364,-0.644675731658936,-0.0751262083649635,0.0735732913017273,-0.0322068892419338,-0.996769607067108,0.998372077941895,-0.0570364855229855,0,0.998052954673767,0.0623729228973389,0,0.998933970928192,0.0461631640791893,0,0.999156057834625,-0.0410752967000008,0,0.998052954673767,0.0623729228973389,0,0.0137631967663765,0.999905228614807,0,0.0378192961215973,0.999284565448761,0,0.998933970928192,0.0461631640791893,0,0.0184110999107361,-0.0307100117206573,-0.999358713626862,-0.00478756288066506,-0.00164430821314454,-0.999987185001373,0.0244937129318714,0.00897641014307737,-0.999659717082977,0.0570849440991879,-0.0187510158866644,-0.998193204402924,0.763150334358215,-0.640133321285248,-0.0884924009442329,0.763913631439209,-0.638456642627716,0.0938565731048584,0.767111420631409,-0.638456284999847,0.0625595524907112,0.765991389751434,-0.640005648136139,-0.0604149475693703,0.0452791154384613,-0.0268790181726217,0.998612761497498,0.100983686745167,-0.064130574464798,0.99281895160675,0.767111420631409,-0.638456284999847,0.0625595524907112,0.763913631439209,-0.638456642627716,0.0938565731048584,-0.00191687617916614,-0.0008065823931247,0.999997854232788,0.0169828925281763,0.00606702594086528,0.999837338924408,0.100983686745167,-0.064130574464798,0.99281895160675,0.0452791154384613,-0.0268790181726217,0.998612761497498,-0.766494035720825,0.642251431941986,1.47698767705151e-006,-0.76800137758255,0.640448153018951,0,-0.768001317977905,0.640448153018951,0,-0.766483783721924,0.64226371049881,1.48700246427325e-006,0.0682327672839165,-0.0770216882228851,-0.994691908359528,-0.0169809088110924,-0.00606702733784914,-0.999837398529053,-0.00478756288066506,-0.00164430821314454,-0.999987185001373,0.0184110999107361,-0.0307100117206573,-0.999358713626862,
- 0.763150334358215,-0.640133321285248,-0.0884924009442329,0.765991389751434,-0.640005648136139,-0.0604149475693703,0.0682327672839165,-0.0770216882228851,-0.994691908359528,0.0184110999107361,-0.0307100117206573,-0.999358713626862,0.762305200099945,-0.646746397018433,-0.0246985927224159,0.705470561981201,-0.60994952917099,0.360933274030685,0.763913631439209,-0.638456642627716,0.0938565731048584,0.763150334358215,-0.640133321285248,-0.0884924009442329,0.705470561981201,-0.60994952917099,0.360933274030685,-0.0162781123071909,-0.0159579161554575,0.999740183353424,0.0452791154384613,-0.0268790181726217,0.998612761497498,0.763913631439209,-0.638456642627716,0.0938565731048584,-0.0162781123071909,-0.0159579161554575,0.999740183353424,-0.0244609992951155,-0.00900553818792105,0.99966025352478,-0.00191687617916614,-0.0008065823931247,0.999997854232788,0.0452791154384613,-0.0268790181726217,0.998612761497498,-0.762161791324615,0.64738655090332,5.69897883906378e-006,-0.762161910533905,0.64738655090332,5.69897929381114e-006,-0.766494035720825,0.642251431941986,1.47698767705151e-006,-0.766483783721924,0.64226371049881,1.48700246427325e-006,0.0570849440991879,-0.0187510158866644,-0.998193204402924,0.762305200099945,-0.646746397018433,-0.0246985927224159,0.763150334358215,-0.640133321285248,-0.0884924009442329,0.0184110999107361,-0.0307100117206573,-0.999358713626862,0,0.643255531787872,-0.765651524066925,0,0.643255531787872,-0.765651643276215,0,0.643255412578583,-0.76565158367157,0,0.643255531787872,-0.765651524066925,-1.70632731055775e-007,-0.643257141113281,0.76565021276474,-1.34039828481036e-006,-0.643256008625031,0.765651166439056,-1.34039805743669e-006,-0.643256068229675,0.765651166439056,-1.70633128959707e-007,-0.643257200717926,0.76565021276474,0,-0.765592515468597,-0.643325865268707,0,-0.765593886375427,-0.643324196338654,0,-0.765593886375427,-0.643324196338654,0,-0.765592515468597,-0.643325865268707,0,0.643259406089783,-0.765648186206818,0,0.643259823322296,-0.765647888183594,0,0.643259823322296,-0.765647888183594,0,0.643259525299072,-0.765648245811462,
- 0,-0.643262386322021,0.765645802021027,0,-0.643262445926666,0.765645682811737,0,-0.643262505531311,0.765645742416382,0,-0.643262386322021,0.765645802021027,0,-0.765715837478638,-0.643179059028625,0,-0.765716254711151,-0.643178701400757,0,-0.765716195106506,-0.643178701400757,0,-0.765715837478638,-0.643179059028625,2.11008909900556e-007,-0.765622437000275,-0.643290221691132,8.79535775766271e-007,-0.765626490116119,-0.64328545331955,8.79535889453109e-007,-0.765626490116119,-0.64328545331955,2.11009080430813e-007,-0.765622496604919,-0.643290221691132,1.19102622875289e-007,0.64326685667038,-0.765642046928406,5.17888452122861e-007,0.643268823623657,-0.765640377998352,5.1788850896628e-007,0.643268823623657,-0.765640437602997,1.19102537610161e-007,0.64326685667038,-0.765641987323761,0,0.643255531787872,-0.765651643276215,0,0.643255472183228,-0.76565158367157,0,0.643255531787872,-0.765651643276215,0,0.643255531787872,-0.765651643276215,0,-0.643280565738678,0.765630483627319,0,-0.643280923366547,0.765630185604095,0,-0.643280863761902,0.765630185604095,0,-0.643280565738678,0.765630483627319,0,-0.765631973743439,-0.64327871799469,0,-0.765631854534149,-0.643278956413269,0,-0.765631914138794,-0.643279016017914,0,-0.765631973743439,-0.64327871799469,0,0.765660583972931,0.643244743347168,0,0.765659272670746,0.643246293067932,0,0.765659272670746,0.643246352672577,0,0.76566070318222,0.643244802951813,0,0.643253087997437,-0.765653550624847,0,0.643253147602081,-0.765653550624847,0,0.643253147602081,-0.765653550624847,0,0.643253087997437,-0.765653550624847,9.7161638734633e-008,-0.643260061740875,0.765647828578949,3.37835757591165e-007,-0.643260419368744,0.76564759016037,3.37835729169456e-007,-0.643260359764099,0.765647530555725,9.71616529454877e-008,-0.64326000213623,0.765647828578949,0,-0.765688180923462,-0.643212020397186,0,-0.765688121318817,-0.643212020397186,0,-0.765688061714172,-0.643212020397186,0,-0.765688180923462,-0.643212020397186,-1.01089277393385e-007,0.643259108066559,-0.765648543834686,0,0.643259286880493,-0.765648365020752,
- 0,0.643259346485138,-0.765648424625397,-1.01089284498812e-007,0.643259167671204,-0.765648543834686,0,-0.643252670764923,0.765653967857361,0,-0.643252611160278,0.765653908252716,0,-0.643252611160278,0.765653908252716,0,-0.643252670764923,0.765653967857361,0,-0.765643954277039,-0.643264651298523,0,-0.765643894672394,-0.643264710903168,0,-0.765643954277039,-0.643264651298523,0,-0.765643954277039,-0.643264651298523,0.00559348007664084,-0.763298869132996,-0.646021366119385,0.0035635509993881,-0.764160990715027,-0.645015835762024,0.00356491352431476,-0.76416027545929,-0.645016551017761,0.00559347914531827,-0.763298869132996,-0.646021366119385,-0.00409615552052855,0.73233550786972,0.680931627750397,-0.0041267741471529,0.765236854553223,0.643735587596893,-0.00701853446662426,0.764944016933441,0.644058465957642,-0.0069963694550097,0.743875682353973,0.668281316757202,0.000537513755261898,-0.643326282501221,0.76559191942215,-0.00099381129257381,-0.643265187740326,0.765642821788788,-0.0012809542240575,-0.605099558830261,0.796148836612701,0.000344117666827515,-0.607217609882355,0.794535458087921,0.00584513414651155,-0.765648305416107,-0.643232882022858,0.00356491352431476,-0.76416027545929,-0.645016551017761,0.0035635509993881,-0.764160990715027,-0.645015835762024,0.00584167614579201,-0.765648365020752,-0.643232882022858,-0.000525599461980164,0.643338084220886,-0.765582025051117,0.000997764756903052,0.643255889415741,-0.765650689601898,0.000994310132227838,0.643255889415741,-0.765650629997253,-0.000526982708834112,0.643338203430176,-0.765581846237183,-0.00588879594579339,0.730080127716064,0.683336317539215,-0.00584018882364035,0.765630781650543,0.643253684043884,-0.0041267741471529,0.765236854553223,0.643735587596893,-0.00409615552052855,0.73233550786972,0.680931627750397,0.000344117666827515,-0.607217609882355,0.794535458087921,-0.0012809542240575,-0.605099558830261,0.796148836612701,-0.00588879594579339,0.730080127716064,0.683336317539215,-0.00409615552052855,0.73233550786972,0.680931627750397,0,-0.0410907417535782,0.999155402183533,
- 0,0.0461801663041115,0.998933136463165,0,0.062549039721489,0.998041927814484,0,-0.0571935959160328,0.998363018035889,0,0.999297320842743,0.0374821722507477,0,0.999918758869171,0.0127466283738613,0,0.062549039721489,0.998041927814484,0,0.0461801663041115,0.998933136463165,0,0.643276572227478,-0.765633881092072,0,0.643276572227478,-0.765633881092072,0,0.643276572227478,-0.765633940696716,0,0.643276572227478,-0.765633881092072,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.643256962299347,0.76565033197403,0,-0.643257021903992,0.765650272369385,0,-0.643257021903992,0.76565033197403,0,-0.643256962299347,0.76565033197403,0,-0.765609920024872,-0.643305063247681,0,-0.765609979629517,-0.643305122852325,0,-0.765609920024872,-0.643305003643036,0,-0.765609920024872,-0.643305063247681,6.25735992798582e-007,-0.765622615814209,-0.643290042877197,6.25735992798582e-007,-0.765622615814209,-0.643290042877197,6.25735992798582e-007,-0.765622556209564,-0.643290042877197,6.25736049642001e-007,-0.765622615814209,-0.643289983272552,7.34753427877877e-007,0.643245398998261,-0.765660107135773,7.34753371034458e-007,0.643245339393616,-0.765660107135773,7.34753484721296e-007,0.643245398998261,-0.765660166740417,7.34753427877877e-007,0.643245339393616,-0.765660107135773,1,0,0,1,0,0,1,0,0,1,0,0,0,0.643265664577484,-0.765643060207367,0,0.643265664577484,-0.765643000602722,0,0.643265664577484,-0.765643060207367,0,0.643265664577484,-0.765643060207367,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.643262088298798,0.765645980834961,0,-0.643262147903442,0.765645980834961,0,-0.643262147903442,0.765646040439606,0,-0.643262088298798,0.765645980834961,0,-0.765665709972382,-0.643238723278046,0,-0.765665709972382,-0.643238663673401,0,-0.765665650367737,-0.643238723278046,0,-0.765665709972382,-0.643238723278046,0,0.765699446201324,0.643198490142822,0,0.765699446201324,0.643198430538177,0,0.765699446201324,0.643198430538177,0,0.765699446201324,0.643198490142822,0,0.643271148204803,-0.765638470649719,0,0.643271148204803,-0.765638470649719,0,0.643271148204803,-0.765638530254364,0,0.643271148204803,-0.765638470649719,
- 1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0,-0.643245160579681,0.765660285949707,0,-0.643245100975037,0.765660285949707,0,-0.643245160579681,0.765660285949707,0,-0.643245160579681,0.765660285949707,0,-0.765704870223999,-0.643192172050476,0,-0.765704751014709,-0.643192172050476,0,-0.765704691410065,-0.643192172050476,0,-0.765704870223999,-0.643192172050476,1.92739420867838e-007,0.643265247344971,-0.76564347743988,1.92739420867838e-007,0.643265247344971,-0.76564347743988,1.92739420867838e-007,0.643265187740326,-0.76564347743988,1.92739420867838e-007,0.643265247344971,-0.765643417835236,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0,-0.643269300460815,0.765640020370483,0,-0.643269300460815,0.765640020370483,0,-0.643269300460815,0.765640020370483,0,-0.643269300460815,0.765640020370483,-1.28770750507101e-007,-0.765592098236084,-0.643326282501221,-1.28770750507101e-007,-0.765592157840729,-0.643326222896576,-1.28770736296246e-007,-0.765592157840729,-0.643326282501221,-1.28770750507101e-007,-0.765592157840729,-0.643326282501221,-3.95108827433432e-007,0.643276333808899,-0.765634000301361,-3.95108855855142e-007,0.643276393413544,-0.765634059906006,-3.95108884276851e-007,0.643276393413544,-0.765634059906006,-3.95108855855142e-007,0.643276393413544,-0.765634059906006,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.643254816532135,0.765652239322662,0,-0.64325475692749,0.765652179718018,0,-0.643254816532135,0.765652239322662,0,-0.643254816532135,0.765652239322662,-1.02638728094462e-006,-0.76566207408905,-0.643242955207825,-1.02638739463146e-006,-0.765662133693695,-0.643243014812469,-1.02638739463146e-006,-0.76566219329834,-0.643242955207825,-1.02638739463146e-006,-0.76566219329834,-0.64324289560318,5.25668212958408e-007,-0.765670657157898,-0.643232822418213,5.25668212958408e-007,-0.765670716762543,-0.643232822418213,5.25668212958408e-007,-0.765670657157898,-0.643232762813568,5.25668156114989e-007,-0.765670657157898,-0.643232703208923,-1.20245317702938e-007,0.643233418464661,-0.765670239925385,-1.20245317702938e-007,0.643233418464661,-0.765670239925385,-1.20245317702938e-007,0.643233418464661,-0.76567018032074,
- -1.20245317702938e-007,0.643233358860016,-0.76567018032074,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0,0.643258631229401,-0.765648901462555,0,0.643258571624756,-0.765648901462555,0,0.643258571624756,-0.7656489610672,0,0.643258631229401,-0.765648901462555,1,0,0,1,0,0,1,0,0,1,0,0,4.42154629354263e-007,-0.643268525600433,0.765640676021576,4.42154657775973e-007,-0.643268585205078,0.765640676021576,4.42154686197682e-007,-0.643268585205078,0.765640676021576,4.42154657775973e-007,-0.643268585205078,0.765640616416931,-1.91092851764552e-007,-0.765713512897491,-0.643181800842285,-1.91092837553697e-007,-0.765713453292847,-0.643181800842285,-1.91092837553697e-007,-0.765713453292847,-0.643181800842285,-1.91092851764552e-007,-0.765713512897491,-0.643181920051575,0,0.765686988830566,0.643213391304016,0,0.765687048435211,0.643213331699371,0,0.765686988830566,0.643213391304016,0,0.765686988830566,0.643213391304016,-3.56543381485608e-007,0.643261134624481,-0.765646934509277,-3.56543381485608e-007,0.643261075019836,-0.765646874904633,-3.56543353063898e-007,0.643261075019836,-0.765646874904633,-3.56543353063898e-007,0.643261075019836,-0.765646934509277,1,0,0,1,0,0,1,0,0,1,0,0,-9.11385455992786e-008,-0.643265426158905,0.765643239021301,-9.11385527047059e-008,-0.64326548576355,0.765643239021301,-9.11385455992786e-008,-0.64326536655426,0.765643298625946,-9.11385598101333e-008,-0.64326548576355,0.765643298625946,-2.65089255435669e-007,-0.765606939792633,-0.643308699131012,-2.65089227013959e-007,-0.765606880187988,-0.643308639526367,-2.65089255435669e-007,-0.765606939792633,-0.643308699131012,-2.65089283857378e-007,-0.765606939792633,-0.643308758735657,1.17073177818838e-007,0.643260657787323,-0.765647351741791,1.17073163607984e-007,0.643260538578033,-0.765647292137146,1.17073184924266e-007,0.643260657787323,-0.765647351741791,1.17073170713411e-007,0.643260657787323,-0.765647292137146,1,0,0,1,0,0,1,0,0,1,0,0,-1.194817969008e-007,-0.643258810043335,0.76564884185791,-1.19481768479091e-007,-0.643258810043335,0.76564884185791,-1.19481782689945e-007,-0.64325875043869,0.76564884185791,
- -1.19481782689945e-007,-0.643258810043335,0.76564884185791,2.40201984524901e-007,-0.765596270561218,-0.64332127571106,2.40202012946611e-007,-0.765596270561218,-0.64332127571106,2.4020204136832e-007,-0.765596330165863,-0.64332127571106,2.40202012946611e-007,-0.765596330165863,-0.64332127571106,-2.52863458172214e-007,0.643257558345795,-0.765649855136871,-2.52863458172214e-007,0.643257617950439,-0.765649855136871,-2.52863458172214e-007,0.643257558345795,-0.765649795532227,-2.52863458172214e-007,0.643257558345795,-0.765649795532227,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,-2.57626908251041e-007,-0.643257617950439,0.765649735927582,-2.5762693667275e-007,-0.643257677555084,0.765649735927582,-2.5762693667275e-007,-0.643257677555084,0.765649735927582,-2.5762696509446e-007,-0.643257737159729,0.765649735927582,-2.22357101620219e-007,-0.765714943408966,-0.643180012702942,-2.22357087409364e-007,-0.765715003013611,-0.643180072307587,-2.22357101620219e-007,-0.765715003013611,-0.643180072307587,-2.22357101620219e-007,-0.765715003013611,-0.643180072307587,2.10737482575496e-007,-0.765673637390137,-0.643229305744171,2.1073752520806e-007,-0.765673637390137,-0.643229305744171,2.10737496786351e-007,-0.765673637390137,-0.643229305744171,2.10737496786351e-007,-0.765673696994781,-0.643229246139526,3.18583431635489e-007,0.643267095088959,-0.765641927719116,3.18583403213779e-007,0.643267035484314,-0.765641927719116,3.1858337479207e-007,0.643267035484314,-0.765641808509827,3.1858337479207e-007,0.643267035484314,-0.765641868114471,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0,0.643265783786774,-0.765642940998077,0,0.643265724182129,-0.765643000602722,0,0.643265724182129,-0.765642881393433,0,0.643265783786774,-0.765642940998077,1,0,0,1,0,0,1,0,0,1,0,0,-4.78583899621299e-007,-0.643261969089508,0.76564610004425,-4.7858384277788e-007,-0.643262028694153,0.76564610004425,-4.78583899621299e-007,-0.643262028694153,0.76564610004425,-4.7858384277788e-007,-0.643261969089508,0.76564610004425,-4.78583899621299e-007,-0.643262028694153,0.76564610004425,
- 3.29173104773872e-007,-0.765640676021576,-0.643268525600433,3.29173133195582e-007,-0.765640735626221,-0.643268465995789,3.29173104773872e-007,-0.765640676021576,-0.643268465995789,3.29173133195582e-007,-0.765640676021576,-0.643268525600433,-1.97220742848003e-007,0.765669524669647,0.643234074115753,-1.97220728637149e-007,0.765669524669647,0.643234074115753,-1.97220742848003e-007,0.765669643878937,0.643234133720398,-1.97220728637149e-007,0.765669584274292,0.643234074115753,0,0.643263578414917,-0.765644669532776,0,0.643263638019562,-0.765644729137421,0,0.643263638019562,-0.765644788742065,0,0.643263578414917,-0.765644669532776,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0,-0.64325749874115,0.765649914741516,0,-0.643257439136505,0.765649914741516,0,-0.64325749874115,0.765649974346161,0,-0.64325749874115,0.765649914741516,-1.87014947528041e-007,-0.76572859287262,-0.643163800239563,-1.87014933317187e-007,-0.765728533267975,-0.643163800239563,-1.87014933317187e-007,-0.765728533267975,-0.643163859844208,-1.87014933317187e-007,-0.76572859287262,-0.643163800239563,0,0.643255591392517,-0.765651524066925,0,0.643255531787872,-0.765651524066925,0,0.643255531787872,-0.765651524066925,0,0.643255591392517,-0.765651524066925,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0,-0.643257319927216,0.765650033950806,-1.70632731055775e-007,-0.643257141113281,0.76565021276474,-1.70633128959707e-007,-0.643257200717926,0.76565021276474,0,-0.643257319927216,0.765650033950806,0,-0.765592277050018,-0.643326163291931,0,-0.765592515468597,-0.643325865268707,0,-0.765592515468597,-0.643325865268707,0,-0.765592277050018,-0.643326163291931,-1.86876931707047e-007,0.765581429004669,0.643338918685913,0,0.765582323074341,0.643337905406952,0,0.765582323074341,0.643337905406952,-1.86877329610979e-007,0.765581488609314,0.643338918685913,0,0.643259406089783,-0.765648305416107,0,0.643259406089783,-0.765648186206818,0,0.643259525299072,-0.765648245811462,0,0.643259406089783,-0.765648305416107,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0,-0.643262386322021,0.765645861625671,0,-0.643262386322021,0.765645802021027,
- 0,-0.643262386322021,0.765645802021027,0,-0.643262386322021,0.765645861625671,0,-0.765715777873993,-0.64317911863327,0,-0.765715837478638,-0.643179059028625,0,-0.765715837478638,-0.643179059028625,0,-0.765715777873993,-0.64317911863327,-8.22023054070087e-008,0.76570188999176,0.643195629119873,0,0.765701532363892,0.643195986747742,0,0.765701532363892,0.643195986747742,-8.22022769852993e-008,0.76570188999176,0.643195629119873,0,-0.765621185302734,-0.643291771411896,2.11008909900556e-007,-0.765622437000275,-0.643290221691132,2.11009080430813e-007,-0.765622496604919,-0.643290221691132,0,-0.765621185302734,-0.643291771411896,0,0.643266260623932,-0.765642523765564,1.19102622875289e-007,0.64326685667038,-0.765642046928406,1.19102537610161e-007,0.64326685667038,-0.765641987323761,0,0.643266260623932,-0.765642523765564,5.35806510271186e-009,-0.64325475692749,0.765652179718018,0,-0.643254637718201,0.765652298927307,0,-0.643254637718201,0.765652298927307,5.35806465862265e-009,-0.64325475692749,0.765652239322662,1,0,0,1,0,0,1,0,0,1,0,0,-7.28642604030938e-008,0.765579521656036,0.643341243267059,-7.28642746139485e-008,0.765579521656036,0.643341183662415,0,0.765579640865326,0.643341243267059,0,0.765579640865326,0.643341243267059,0,0.643255412578583,-0.765651524066925,0,0.643255531787872,-0.765651643276215,0,0.643255531787872,-0.765651643276215,0,0.643255412578583,-0.765651524066925,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.643280506134033,0.765630602836609,0,-0.643280565738678,0.765630483627319,0,-0.643280565738678,0.765630483627319,0,-0.643280506134033,0.765630602836609,0,-0.765632092952728,-0.643278658390045,0,-0.765631973743439,-0.64327871799469,0,-0.765631973743439,-0.64327871799469,0,-0.765632092952728,-0.643278658390045,-1.05385346671483e-007,0.765683710575104,0.643217325210571,0,0.765684068202972,0.643216848373413,0,0.765684068202972,0.643216848373413,-1.05385332460628e-007,0.765683650970459,0.643217325210571,0,0.765661180019379,0.643244206905365,0,0.765660583972931,0.643244743347168,0,0.76566070318222,0.643244802951813,0,0.765661180019379,0.643244206905365,
- 0,0.643253147602081,-0.765653550624847,0,0.643253087997437,-0.765653550624847,0,0.643253087997437,-0.765653550624847,0,0.643253147602081,-0.765653550624847,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0,-0.643259882926941,0.765647947788239,9.7161638734633e-008,-0.643260061740875,0.765647828578949,9.71616529454877e-008,-0.64326000213623,0.765647828578949,0,-0.643259882926941,0.765647947788239,0,-0.765688180923462,-0.643211960792542,0,-0.765688180923462,-0.643212020397186,0,-0.765688180923462,-0.643212020397186,0,-0.765688180923462,-0.643211960792542,-1.5186337520845e-007,0.643259048461914,-0.765648603439331,-1.01089277393385e-007,0.643259108066559,-0.765648543834686,-1.01089284498812e-007,0.643259167671204,-0.765648543834686,-1.5186337520845e-007,0.643259108066559,-0.765648603439331,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.643252730369568,0.765654027462006,0,-0.643252670764923,0.765653967857361,0,-0.643252670764923,0.765653967857361,0,-0.643252730369568,0.765654027462006,0,-0.765643954277039,-0.643264651298523,0,-0.765643954277039,-0.643264651298523,0,-0.765643954277039,-0.643264651298523,0,-0.765643954277039,-0.643264651298523,-4.54112942804841e-008,0.765663802623749,0.643240928649902,-1.38807692451337e-007,0.765663266181946,0.643241465091705,-1.38807706662192e-007,0.765663385391235,0.643241584300995,-4.54112978331978e-008,0.765663743019104,0.643240988254547,0,0.63968163728714,-0.768640100955963,0,0.63968163728714,-0.768640041351318,0,0.639681577682495,-0.768640041351318,0,-0.765588581562042,-0.643330514431,0,-0.765588521957397,-0.64333039522171,0,-0.765588581562042,-0.643330514431,0,-0.765588581562042,-0.643330514431,0,0.765775322914124,0.643108248710632,0,0.765775382518768,0.643108248710632,0,0.765775322914124,0.643108189105988,0,0.765775322914124,0.643108248710632,0,0.643260359764099,-0.76564759016037,0,0.643260359764099,-0.765647530555725,0,0.643260359764099,-0.765647530555725,0,0.643260359764099,-0.76564759016037,1,0,0,1,0,0,1,0,0,1,0,0,7.27684152934671e-007,-0.643296778202057,0.765616893768311,7.27684152934671e-007,-0.643296837806702,0.765616893768311,
- 7.27684152934671e-007,-0.643296718597412,0.765616953372955,7.27684152934671e-007,-0.643296778202057,0.765616893768311,1.06018205769942e-006,-0.765648484230042,-0.643259167671204,1.0601822850731e-006,-0.765648603439331,-0.643259167671204,1.06018205769942e-006,-0.765648543834686,-0.643259108066559,1.06018217138626e-006,-0.765648484230042,-0.643259108066559,0,0.643247067928314,-0.765658617019653,0,0.643247187137604,-0.765658557415009,0,0.643247127532959,-0.765658617019653,0,0.643247067928314,-0.765658617019653,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0,-0.643255889415741,0.765651166439056,0,-0.643255949020386,0.765651345252991,0,-0.643255949020386,0.765651226043701,0,-0.643255889415741,0.765651166439056,0,-0.765612185001373,-0.643302440643311,0,-0.765612125396729,-0.643302440643311,0,-0.765612185001373,-0.643302500247955,0,-0.765612185001373,-0.643302440643311,-0.00366332125850022,0.643267035484314,-0.765633046627045,0.0028233143966645,0.643261075019836,-0.765641689300537,0.00281386123970151,0.643261075019836,-0.765641748905182,-0.00378456641919911,0.643266916275024,-0.765632688999176,0.00178573408629745,-0.682396769523621,0.730979800224304,0.00314138038083911,-0.603476166725159,0.797374904155731,0.00207012775354087,-0.604072690010071,0.796926498413086,0.00182158267125487,-0.683458745479584,0.729986846446991,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0160108897835016,0.729864656925201,0.683404088020325,0.0159234646707773,0.765547633171082,0.643182098865509,0.00123927148524672,0.765640258789063,0.643267810344696,0.00137602910399437,0.732698321342468,0.680552184581757,0.00162013992667198,-0.797356963157654,-0.603505730628967,0.00152533745858818,-0.765648126602173,-0.643257796764374,-0.0103101739659905,-0.765597879886627,-0.643236935138702,-0.0101839452981949,-0.798714339733124,-0.601624250411987,0.00274755619466305,-0.684622704982758,0.72889256477356,0.00265934760682285,-0.605412602424622,0.795907378196716,0.00470809824764729,-0.615240812301636,0.788325130939484,0.00101341248955578,-0.733454346656799,0.679737985134125,1,0,0,
- 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.00176464719697833,0.73180615901947,0.6815105676651,0.00170288467779756,0.765661120414734,0.643241882324219,0.0262979995459318,0.765393853187561,0.643024682998657,0.0263948757201433,0.745130717754364,0.666395843029022,0.000997764756903052,0.643255889415741,-0.765650689601898,0.000750386447180063,0.643251240253448,-0.765654802322388,0.0007439109031111,0.643251240253448,-0.765654861927032,0.000994310132227838,0.643255889415741,-0.765650629997253,-0.00099381129257381,-0.643265187740326,0.765642821788788,-0.000743351585697383,-0.643263876438141,0.765644133090973,-0.000460894021671265,-0.604292809963226,0.796762228012085,-0.0012809542240575,-0.605099558830261,0.796148836612701,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.00567796500399709,0.730334103107452,0.683066487312317,0.00571556109935045,0.765632510185242,0.643252789974213,-0.00584018882364035,0.765630781650543,0.643253684043884,-0.00588879594579339,0.730080127716064,0.683336317539215,-0.00572880217805505,-0.76564621925354,-0.643236398696899,0.00584513414651155,-0.765648305416107,-0.643232882022858,0.00584167614579201,-0.765648365020752,-0.643232882022858,-0.00571528915315866,-0.765646278858185,-0.643236458301544,0.00162013992667198,-0.797356963157654,-0.603505730628967,-0.0101839452981949,-0.798714339733124,-0.601624250411987,0.00178573408629745,-0.682396769523621,0.730979800224304,0.00182158267125487,-0.683458745479584,0.729986846446991,0.00207012775354087,-0.604072690010071,0.796926498413086,0.00314138038083911,-0.603476166725159,0.797374904155731,0.0160108897835016,0.729864656925201,0.683404088020325,0.00137602910399437,0.732698321342468,0.680552184581757,-0.0012809542240575,-0.605099558830261,0.796148836612701,-0.000460894021671265,-0.604292809963226,0.796762228012085,0.00567796500399709,0.730334103107452,0.683066487312317,-0.00588879594579339,0.730080127716064,0.683336317539215,0.00182158267125487,-0.683458745479584,0.729986846446991,0.00207012775354087,-0.604072690010071,0.796926498413086,-0.00219450169242918,-0.619136929512024,0.785279989242554,
- 0.00310570793226361,-0.744018256664276,0.668152034282684,0.00123927148524672,0.765640258789063,0.643267810344696,-0.0458060577511787,0.764831364154816,0.642600059509277,-0.0457836166024208,0.746283531188965,0.664051711559296,0.00137602910399437,0.732698321342468,0.680552184581757,0,-0.681960999965668,0.731388568878174,0,-0.602878332138062,0.797833204269409,0.00314138038083911,-0.603476166725159,0.797374904155731,0.00178573408629745,-0.682396769523621,0.730979800224304,-0.0101839452981949,-0.798714339733124,-0.601624250411987,0,-0.7989541888237,-0.601391792297363,0,-0.681960999965668,0.731388568878174,0.00178573408629745,-0.682396769523621,0.730979800224304,-0.0103101739659905,-0.765597879886627,-0.643236935138702,0,-0.765618562698364,-0.643294751644135,0,-0.7989541888237,-0.601391792297363,-0.0101839452981949,-0.798714339733124,-0.601624250411987,0.0028233143966645,0.643261075019836,-0.765641689300537,0,0.643245160579681,-0.765660285949707,0,0.643245160579681,-0.765660285949707,0.00281386123970151,0.643261075019836,-0.765641748905182,0,0.730126976966858,0.683311462402344,0,0.765652894973755,0.643253982067108,0.0159234646707773,0.765547633171082,0.643182098865509,0.0160108897835016,0.729864656925201,0.683404088020325,0.00314138038083911,-0.603476166725159,0.797374904155731,0,-0.602878332138062,0.797833204269409,0,0.730126976966858,0.683311462402344,0.0160108897835016,0.729864656925201,0.683404088020325,-0.00329656759276986,-0.681023120880127,0.732254564762115,-0.00366422929801047,-0.601963698863983,0.798515021800995,-0.00337672024033964,-0.602973341941834,0.797754228115082,-0.00159436266403645,-0.6820028424263,0.731347739696503,0.0159940905869007,-0.798730134963989,-0.601476907730103,0.000166647863807157,-0.799451887607574,-0.600730180740356,-0.00329656759276986,-0.681023120880127,0.732254564762115,-0.00159436266403645,-0.6820028424263,0.731347739696503,0.0161471795290709,-0.765548527240753,-0.643175423145294,0.000295351463137195,-0.765649735927582,-0.643257558345795,0.000166647863807157,-0.799451887607574,-0.600730180740356,
- 0.0159940905869007,-0.798730134963989,-0.601476907730103,0.00186159601435065,0.643270790576935,-0.765636563301086,-0.00171995721757412,0.643274247646332,-0.765633821487427,-0.0017620298312977,0.643274247646332,-0.765633821487427,0.00186838558875024,0.643270671367645,-0.765636563301086,-0.00604847818613052,0.730276525020599,0.683124959468842,-0.00584577955305576,0.765645563602448,0.643236100673676,-0.0168056692928076,0.765554189682007,0.643151760101318,-0.0169256310909987,0.730126321315765,0.683102548122406,-0.00337672024033964,-0.602973341941834,0.797754228115082,-0.00366422929801047,-0.601963698863983,0.798515021800995,-0.00604847818613052,0.730276525020599,0.683124959468842,-0.0169256310909987,0.730126321315765,0.683102548122406,0.00265574990771711,-0.683392703533173,0.730046153068542,0.00602932740002871,-0.604017853736877,0.79694789648056,-0.00366422929801047,-0.601963698863983,0.798515021800995,-0.00329656759276986,-0.681023120880127,0.732254564762115,0.000166647863807157,-0.799451887607574,-0.600730180740356,-0.0348158851265907,-0.797844290733337,-0.601857423782349,0.00265574990771711,-0.683392703533173,0.730046153068542,-0.00329656759276986,-0.681023120880127,0.732254564762115,0.000295351463137195,-0.765649735927582,-0.643257558345795,-0.0351152010262012,-0.765181422233582,-0.642856419086456,-0.0348158851265907,-0.797844290733337,-0.601857423782349,0.000166647863807157,-0.799451887607574,-0.600730180740356,-0.00171995721757412,0.643274247646332,-0.765633821487427,-0.00955334026366472,0.64324814081192,-0.765598177909851,-0.0095533411949873,0.643248081207275,-0.765598177909851,-0.0017620298312977,0.643274247646332,-0.765633821487427,0.0298761241137981,0.72954273223877,0.683282434940338,0.0296606086194515,0.765317320823669,0.64296942949295,-0.00584577955305576,0.765645563602448,0.643236100673676,-0.00604847818613052,0.730276525020599,0.683124959468842,-0.00366422929801047,-0.601963698863983,0.798515021800995,0.00602932740002871,-0.604017853736877,0.79694789648056,0.0298761241137981,0.72954273223877,0.683282434940338,
- -0.00604847818613052,0.730276525020599,0.683124959468842,-0.00159436266403645,-0.6820028424263,0.731347739696503,-0.00337672024033964,-0.602973341941834,0.797754228115082,0.00265934760682285,-0.605412602424622,0.795907378196716,0.00274755619466305,-0.684622704982758,0.72889256477356,0.000714920228347182,-0.79702627658844,-0.603944301605225,0.0159940905869007,-0.798730134963989,-0.601476907730103,-0.00159436266403645,-0.6820028424263,0.731347739696503,0.00274755619466305,-0.684622704982758,0.72889256477356,0.00053775665583089,-0.765651106834412,-0.643255949020386,0.0161471795290709,-0.765548527240753,-0.643175423145294,0.0159940905869007,-0.798730134963989,-0.601476907730103,0.000714920228347182,-0.79702627658844,-0.603944301605225,0.00144564476795495,0.64326947927475,-0.765638411045074,0.00186159601435065,0.643270790576935,-0.765636563301086,0.00186838558875024,0.643270671367645,-0.765636563301086,0.00145067169796675,0.643269538879395,-0.765638470649719,-0.0169256310909987,0.730126321315765,0.683102548122406,-0.0168056692928076,0.765554189682007,0.643151760101318,0.00170288467779756,0.765661120414734,0.643241882324219,0.00176464719697833,0.73180615901947,0.6815105676651,0.00265934760682285,-0.605412602424622,0.795907378196716,-0.00337672024033964,-0.602973341941834,0.797754228115082,-0.0169256310909987,0.730126321315765,0.683102548122406,0.00176464719697833,0.73180615901947,0.6815105676651,0.000869352952577174,-0.643266618251801,0.765641748905182,0.00110811332706362,-0.643269062042236,0.765639364719391,0.000679263495840132,-0.604525029659271,0.79658579826355,0.00110786780714989,-0.605614542961121,0.795757412910461,0.00865296460688114,-0.765632569789886,-0.643219947814941,-0.00510115828365088,-0.765648186206818,-0.643239200115204,-0.00508080003783107,-0.765648305416107,-0.643239378929138,0.00875390227884054,-0.765631854534149,-0.643219411373138,-0.000865513284225017,0.643252015113831,-0.765654027462006,0.0189733318984509,0.642990469932556,-0.765639185905457,0.0187511555850506,0.64299476146698,-0.7656409740448,-0.000870103831402957,0.643252015113831,-0.76565408706665,
- -0.00857746228575706,0.729530155658722,0.683894813060761,-0.00876147765666246,0.765615224838257,0.643239140510559,0.00507948873564601,0.765635848045349,0.643254220485687,0.00513986684381962,0.729827642440796,0.683611989021301,0.00110786780714989,-0.605614542961121,0.795757412910461,0.000679263495840132,-0.604525029659271,0.79658579826355,-0.00857746228575706,0.729530155658722,0.683894813060761,0.00513986684381962,0.729827642440796,0.683611989021301,-0.000743351585697383,-0.643263876438141,0.765644133090973,0.000869352952577174,-0.643266618251801,0.765641748905182,0.00110786780714989,-0.605614542961121,0.795757412910461,-0.000460894021671265,-0.604292809963226,0.796762228012085,-0.00510115828365088,-0.765648186206818,-0.643239200115204,-0.00572880217805505,-0.76564621925354,-0.643236398696899,-0.00571528915315866,-0.765646278858185,-0.643236458301544,-0.00508080003783107,-0.765648305416107,-0.643239378929138,0.000750386447180063,0.643251240253448,-0.765654802322388,-0.000865513284225017,0.643252015113831,-0.765654027462006,-0.000870103831402957,0.643252015113831,-0.76565408706665,0.0007439109031111,0.643251240253448,-0.765654861927032,0.00513986684381962,0.729827642440796,0.683611989021301,0.00507948873564601,0.765635848045349,0.643254220485687,0.00571556109935045,0.765632510185242,0.643252789974213,0.00567796500399709,0.730334103107452,0.683066487312317,-0.000460894021671265,-0.604292809963226,0.796762228012085,0.00110786780714989,-0.605614542961121,0.795757412910461,0.00513986684381962,0.729827642440796,0.683611989021301,0.00567796500399709,0.730334103107452,0.683066487312317,0.00110811332706362,-0.643269062042236,0.765639364719391,0,-0.643269121646881,0.765640079975128,0,-0.60488361120224,0.796313762664795,0.000679263495840132,-0.604525029659271,0.79658579826355,0,-0.765663981437683,-0.643240690231323,0.00865296460688114,-0.765632569789886,-0.643219947814941,0.00875390227884054,-0.765631854534149,-0.643219411373138,0,-0.765663981437683,-0.643240690231323,0.0189733318984509,0.642990469932556,-0.765639185905457,0.0543077178299427,0.64190149307251,-0.764861583709717,
- 0.0543077141046524,0.64190149307251,-0.764861524105072,0.0187511555850506,0.64299476146698,-0.7656409740448,0,0.727979063987732,0.685599386692047,0,0.765643358230591,0.64326536655426,-0.00876147765666246,0.765615224838257,0.643239140510559,-0.00857746228575706,0.729530155658722,0.683894813060761,0.000679263495840132,-0.604525029659271,0.79658579826355,0,-0.60488361120224,0.796313762664795,0,0.727979063987732,0.685599386692047,-0.00857746228575706,0.729530155658722,0.683894813060761,0,0.999996781349182,-0.00255742622539401,0,0.999297320842743,0.0374821722507477,0,0.999247968196869,0.038774773478508,0,0.999996662139893,-0.00255743064917624,0,-0.999092876911163,0.0425863265991211,0,-0.999996721744537,0.00255059124901891,0,-0.999996721744537,0.00255059124901891,0,-0.999036908149719,0.0438785813748837,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0,-0.00255729816854,-0.999996781349182,0,-0.00255729816854,-0.999996781349182,0,-0.00255729816854,-0.999996781349182,0,-0.00255729816854,-0.999996781349182,0,-0.0410360172390938,0.999157667160034,0,0.0461186654865742,0.99893593788147,0,0.0461801663041115,0.998933136463165,0,-0.0410907417535782,0.999155402183533,0,0.999247968196869,0.038774773478508,0,0.999297320842743,0.0374821722507477,0,0.0461801663041115,0.998933136463165,0,0.0461186654865742,0.99893593788147,0,-0.999092876911163,0.0425863265991211,0,-0.999036908149719,0.0438785813748837,0,-0.0410360172390938,0.999157667160034,0,-0.0410907417535782,0.999155402183533,-1.82436178874923e-006,0.765573978424072,0.64334774017334,-1.82436190243607e-006,0.765574038028717,0.643347799777985,-1.86876931707047e-007,0.765581429004669,0.643338918685913,-1.86877329610979e-007,0.765581488609314,0.643338918685913,-5.02147486258764e-007,0.765703499317169,0.643193781375885,-5.02147486258764e-007,0.765703499317169,0.64319372177124,-8.22023054070087e-008,0.76570188999176,0.643195629119873,-8.22022769852993e-008,0.76570188999176,0.643195629119873,2.43697666491016e-008,-0.643255233764648,0.765651822090149,2.43697648727448e-008,-0.643255174160004,0.765651881694794,
- 5.35806510271186e-009,-0.64325475692749,0.765652179718018,5.35806465862265e-009,-0.64325475692749,0.765652239322662,-3.47965624314384e-007,0.765579462051392,0.643341362476349,-3.47965652736093e-007,0.765579462051392,0.643341362476349,-7.28642746139485e-008,0.765579521656036,0.643341183662415,-7.28642604030938e-008,0.765579521656036,0.643341243267059,-4.37792607499432e-007,0.765682339668274,0.64321893453598,-4.37792635921141e-007,0.765682399272919,0.643218874931335,-1.05385346671483e-007,0.765683710575104,0.643217325210571,-1.05385332460628e-007,0.765683650970459,0.643217325210571,1.65823010433996e-007,0.765664875507355,0.643239676952362,1.65822996223142e-007,0.76566481590271,0.643239617347717,-4.54112942804841e-008,0.765663802623749,0.643240928649902,-4.54112978331978e-008,0.765663743019104,0.643240988254547,0.000666084291879088,-0.616926968097687,0.787020087242126,0.00091739569325,-0.643366634845734,0.765557706356049,0.000537513755261898,-0.643326282501221,0.76559191942215,0.000344117666827515,-0.607217609882355,0.794535458087921,-0.000824543880298734,0.643381714820862,-0.765545129776001,-0.000824543763883412,0.643381714820862,-0.765545070171356,-0.000525599461980164,0.643338084220886,-0.765582025051117,-0.000526982708834112,0.643338203430176,-0.765581846237183,-0.0069963694550097,0.743875682353973,0.668281316757202,0.000666084291879088,-0.616926968097687,0.787020087242126,0.000344117666827515,-0.607217609882355,0.794535458087921,-0.00409615552052855,0.73233550786972,0.680931627750397,0,0.999996781349182,-0.00255741574801505,0,0.999918758869171,0.0127466283738613,0,0.999297320842743,0.0374821722507477,0,0.999996781349182,-0.00255742622539401,0,-0.999839961528778,0.0178914442658424,0,-0.999996781349182,0.00255059171468019,0,-0.999996721744537,0.00255059124901891,0,-0.999092876911163,0.0425863265991211,0,-0.00255729793570936,-0.999996662139893,0,-0.00255729793570936,-0.999996721744537,0,-0.00255729816854,-0.999996781349182,0,-0.00255729816854,-0.999996781349182,0,-0.0571935959160328,0.998363018035889,0,-0.999839961528778,0.0178914442658424,
- 0,-0.999092876911163,0.0425863265991211,0,-0.0410907417535782,0.999155402183533,0,0.76558917760849,0.643329799175262,0,0.765589237213135,0.643329799175262,0,0.76558917760849,0.643329799175262,0,0.76558917760849,0.643329799175262,0,-0.643243134021759,0.765662014484406,0,-0.643243134021759,0.765661954879761,0,-0.643243134021759,0.765661954879761,0,-0.643243134021759,0.765661954879761,0,0.765619158744812,0.643294036388397,0,0.765619158744812,0.643294155597687,0,0.765619158744812,0.643294095993042,0,0.765619158744812,0.643294095993042,0,0.76562637090683,0.64328545331955,0,0.765626430511475,0.643285512924194,0,0.765626430511475,0.643285512924194,0,0.765626430511475,0.643285512924194,0,0.765626728534698,0.643285036087036,0,0.765626728534698,0.643285036087036,0,0.765626728534698,0.643285036087036,0,0.765626728534698,0.643285036087036,0,0.76568341255188,0.643217504024506,0,0.76568341255188,0.64321756362915,0,0.765683472156525,0.64321756362915,0,0.765683472156525,0.64321756362915,-2.46951998406075e-007,-0.643269062042236,0.765640139579773,-2.46952026827785e-007,-0.643269121646881,0.765640199184418,-2.46952026827785e-007,-0.643269121646881,0.765640199184418,-2.46951998406075e-007,-0.643269062042236,0.765640199184418,0,0.765694081783295,0.643204867839813,0,0.765694081783295,0.643204927444458,0,0.765694200992584,0.643204867839813,0,0.765694200992584,0.643204867839813,-1.04894148478252e-007,0.765708804130554,0.643187403678894,-1.04894155583679e-007,0.765708863735199,0.643187403678894,-1.04894134267397e-007,0.765708804130554,0.643187344074249,-1.04894141372824e-007,0.765708804130554,0.643187403678894,4.31102264997207e-008,0.765592336654663,0.643326103687286,4.31102193942934e-008,0.765592277050018,0.643326044082642,4.31102229470071e-008,0.765592277050018,0.643326103687286,4.31102229470071e-008,0.765592277050018,0.643326103687286,-2.39827357972899e-007,0.76571524143219,0.643179893493652,-2.3982732955119e-007,0.765715181827545,0.643179833889008,-2.3982732955119e-007,0.765715181827545,0.643179774284363,-2.3982730112948e-007,0.76571524143219,0.643179714679718,
- -2.43159718138486e-007,-0.643246948719025,0.765658795833588,-2.43159718138486e-007,-0.643246948719025,0.765658795833588,-2.43159718138486e-007,-0.64324688911438,0.765658795833588,-2.43159689716776e-007,-0.643246948719025,0.765658736228943,-1.06467219040951e-007,0.765607357025146,0.643308162689209,-1.06467226146378e-007,0.765607297420502,0.643308162689209,-1.06467226146378e-007,0.765607416629791,0.643308162689209,-1.06467226146378e-007,0.765607297420502,0.643308103084564,-1.4029150463557e-007,0.765615582466125,0.643298327922821,-1.4029150463557e-007,0.76561564207077,0.643298327922821,-1.4029150463557e-007,0.76561564207077,0.643298327922821,-1.40291518846425e-007,0.765615701675415,0.643298268318176,0,0.765618979930878,0.643294334411621,0,0.765618920326233,0.643294394016266,0,0.765618920326233,0.643294274806976,0,0.765618920326233,0.643294274806976,0.000440483592683449,0.643271505832672,-0.765637934207916,0.00044048362178728,0.643271565437317,-0.765637934207916,0.00144564476795495,0.64326947927475,-0.765638411045074,0.00145067169796675,0.643269538879395,-0.765638470649719,-0.0216496586799622,-0.776674270629883,-0.629530370235443,-0.0217153914272785,-0.765474081039429,-0.643100142478943,0.00053775665583089,-0.765651106834412,-0.643255949020386,0.000714920228347182,-0.79702627658844,-0.603944301605225,0.00101341248955578,-0.733454346656799,0.679737985134125,-0.0216496586799622,-0.776674270629883,-0.629530370235443,0.000714920228347182,-0.79702627658844,-0.603944301605225,0.00274755619466305,-0.684622704982758,0.72889256477356,0.0263948757201433,0.745130717754364,0.666395843029022,0.00470809824764729,-0.615240812301636,0.788325130939484,0.00265934760682285,-0.605412602424622,0.795907378196716,0.00176464719697833,0.73180615901947,0.6815105676651,-0.0457836166024208,0.746283531188965,0.664051711559296,-0.00219450169242918,-0.619136929512024,0.785279989242554,0.00207012775354087,-0.604072690010071,0.796926498413086,0.00137602910399437,0.732698321342468,0.680552184581757,-0.016578733921051,0.643190383911133,-0.765526711940765,
- -0.016578733921051,0.643190443515778,-0.76552677154541,-0.00366332125850022,0.643267035484314,-0.765633046627045,-0.00378456641919911,0.643266916275024,-0.765632688999176,0.0269095189869404,-0.775487422943115,-0.630789279937744,0.0269107110798359,-0.765383720397949,-0.643011391162872,0.00152533745858818,-0.765648126602173,-0.643257796764374,0.00162013992667198,-0.797356963157654,-0.603505730628967,0.00310570793226361,-0.744018256664276,0.668152034282684,0.0269095189869404,-0.775487422943115,-0.630789279937744,0.00162013992667198,-0.797356963157654,-0.603505730628967,0.00182158267125487,-0.683458745479584,0.729986846446991,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.639621198177338,0.768690228462219,0,-0.639621198177338,0.768690228462219,0,-0.639621257781982,0.768690288066864,0,0.646250307559967,-0.763125360012054,0,0.646185457706451,-0.763180375099182,0,0.643311738967896,-0.765604317188263,0,0.64327746629715,-0.765633165836334,0.0843764767050743,-0.63863331079483,0.764871299266815,-0.0799710601568222,-0.639341294765472,0.76475316286087,-0.076906718313694,-0.64539098739624,0.759970963001251,0.0722829699516296,-0.644169569015503,0.761459648609161,0.996484816074371,-0.0430427566170692,0.0718696191906929,0.999996542930603,-0.00104128173552454,-0.00240986049175262,0.999711275100708,0.00912027712911367,0.0222281068563461,0.998193800449371,-0.0350919999182224,0.048761859536171,-0.998225033283234,-0.0378466956317425,0.0459821633994579,-0.999836981296539,-0.00688531110063195,-0.0166951417922974,-0.999996781349182,0.00104181002825499,0.00231321644969285,-0.997834980487823,-0.0555137619376183,0.035263754427433,-0.998225033283234,-0.0378466956317425,0.0459821633994579,-0.997834980487823,-0.0555137619376183,0.035263754427433,-0.076906718313694,-0.64539098739624,0.759970963001251,-0.0799710601568222,-0.639341294765472,0.76475316286087,0.0843764767050743,-0.63863331079483,0.764871299266815,0.0722829699516296,-0.644169569015503,0.761459648609161,0.996484816074371,-0.0430427566170692,0.0718696191906929,0.998193800449371,-0.0350919999182224,0.048761859536171,
- 0.999446570873261,-0.0299498848617077,0.0144732324406505,0.999925851821899,-0.00678642699494958,-0.010109718888998,0.999862909317017,0.0116267222911119,0.0117942309007049,0.99982613325119,0.00701129669323564,0.0172825250774622,0.0708347856998444,-0.612916946411133,0.786965787410736,0.267237693071365,-0.616576552391052,0.740552127361298,-0.0215826667845249,-0.64319384098053,0.765399217605591,-0.0592991895973682,-0.61137592792511,0.789115369319916,-0.0525520332157612,-0.637308418750763,0.768814861774445,0.054933212697506,-0.63553112745285,0.770118474960327,0.0634441003203392,-0.641653776168823,0.764365911483765,-0.0666838213801384,-0.641807079315186,0.763961315155029,-0.999529182910919,-0.0222124289721251,0.0211660582572222,-0.998836517333984,-0.0436344966292381,0.0205362197011709,-0.0525520332157612,-0.637308418750763,0.768814861774445,-0.0666838213801384,-0.641807079315186,0.763961315155029,-0.999982297420502,0.0033231230918318,0.00493515376001596,-0.999766945838928,-0.0116431452333927,-0.0181783549487591,-0.998836517333984,-0.0436344966292381,0.0205362197011709,-0.999529182910919,-0.0222124289721251,0.0211660582572222,0,0.643231809139252,-0.76567155122757,0,0.643202364444733,-0.765696227550507,0,0.643202364444733,-0.765696167945862,0,0.643231511116028,-0.765671789646149,0.998218238353729,-0.0198971908539534,0.0562534965574741,0.999767005443573,0.0116432663053274,0.0181783493608236,0.999992847442627,-0.00213832058943808,-0.00311755761504173,0.999414563179016,-0.0182342957705259,0.0289480518549681,0.0634441003203392,-0.641653776168823,0.764365911483765,0.054933212697506,-0.63553112745285,0.770118474960327,0.998218238353729,-0.0198971908539534,0.0562534965574741,0.999414563179016,-0.0182342957705259,0.0289480518549681,0.999414563179016,-0.0182342957705259,0.0289480518549681,0.999992847442627,-0.00213832058943808,-0.00311755761504173,0.999504685401917,-0.0184998996555805,-0.0254569835960865,0.99908572435379,-0.0423984192311764,0.00548890186473727,0,0.643273830413818,-0.765636205673218,0,0.643231809139252,-0.76567155122757,
- 0,0.643231511116028,-0.765671789646149,0,0.643273890018463,-0.765636146068573,-0.999700844287872,0.0140996817499399,0.0199871975928545,-0.999982297420502,0.0033231230918318,0.00493515376001596,-0.999529182910919,-0.0222124289721251,0.0211660582572222,-0.998502552509308,-0.00888904929161072,0.05397654697299,-0.998502552509308,-0.00888904929161072,0.05397654697299,-0.999529182910919,-0.0222124289721251,0.0211660582572222,-0.0666838213801384,-0.641807079315186,0.763961315155029,-0.0597642511129379,-0.62198281288147,0.780746877193451,0.0634441003203392,-0.641653776168823,0.764365911483765,0.059927687048912,-0.623774588108063,0.779303550720215,-0.0597642511129379,-0.62198281288147,0.780746877193451,-0.0666838213801384,-0.641807079315186,0.763961315155029,0.059927687048912,-0.623774588108063,0.779303550720215,0.0634441003203392,-0.641653776168823,0.764365911483765,0.999414563179016,-0.0182342957705259,0.0289480518549681,0.99908572435379,-0.0423984192311764,0.00548890186473727,-0.0597642511129379,-0.62198281288147,0.780746877193451,0.059927687048912,-0.623774588108063,0.779303550720215,0.0708347856998444,-0.612916946411133,0.786965787410736,-0.0592991895973682,-0.61137592792511,0.789115369319916,-0.998502552509308,-0.00888904929161072,0.05397654697299,-0.0597642511129379,-0.62198281288147,0.780746877193451,-0.0592991895973682,-0.61137592792511,0.789115369319916,-0.99927943944931,-0.0122774345800281,0.035913709551096,-0.999700844287872,0.0140996817499399,0.0199871975928545,-0.998502552509308,-0.00888904929161072,0.05397654697299,-0.99927943944931,-0.0122774345800281,0.035913709551096,-0.999932944774628,0.00697605358436704,0.00924438051879406,0,0.643273830413818,-0.765636205673218,0,0.643273890018463,-0.765636146068573,-1.20537174552737e-006,0.643270909786224,-0.765638589859009,-1.21894822768809e-006,0.64327085018158,-0.765638589859009,0.99908572435379,-0.0423984192311764,0.00548890186473727,0.999504685401917,-0.0184998996555805,-0.0254569835960865,0.999925851821899,-0.00678642699494958,-0.010109718888998,0.999446570873261,-0.0299498848617077,0.0144732324406505,
- 0.0708347856998444,-0.612916946411133,0.786965787410736,0.059927687048912,-0.623774588108063,0.779303550720215,0.99908572435379,-0.0423984192311764,0.00548890186473727,0.999446570873261,-0.0299498848617077,0.0144732324406505,0.998078763484955,-0.0198770258575678,0.058683879673481,0.999646961688995,0.00928881671279669,0.0248900298029184,0.999627768993378,0.00962876621633768,0.0255275145173073,0.999434769153595,0.00283867423422635,0.0334970243275166,0.0977704003453255,-0.642683982849121,0.759867250919342,-0.0891522616147995,-0.646450459957123,0.757729351520538,-0.0827830731868744,-0.640727877616882,0.763292133808136,0.085830383002758,-0.641105890274048,0.762637794017792,-0.999456167221069,-0.032794963568449,0.00345767312683165,-0.998273074626923,-0.0337423346936703,0.0480878576636314,-0.0827830731868744,-0.640727877616882,0.763292133808136,-0.0891522616147995,-0.646450459957123,0.757729351520538,-0.99965500831604,-0.00913823582231998,-0.0246237386018038,-0.9999720454216,-0.00267749628983438,-0.00698221242055297,-0.998273074626923,-0.0337423346936703,0.0480878576636314,-0.999456167221069,-0.032794963568449,0.00345767312683165,3.12584717221398e-007,0.647568881511688,-0.762006878852844,0,0.643266260623932,-0.765642583370209,0,0.643281519412994,-0.765629649162292,3.27110655007345e-007,0.647577464580536,-0.761999607086182,0.998664081096649,-0.0370741449296474,0.035991907119751,0.9999720454216,0.00267809256911278,0.0069821965880692,0.999646961688995,0.00928881671279669,0.0248900298029184,0.998078763484955,-0.0198770258575678,0.058683879673481,0.0977704003453255,-0.642683982849121,0.759867250919342,0.085830383002758,-0.641105890274048,0.762637794017792,0.998664081096649,-0.0370741449296474,0.035991907119751,0.998078763484955,-0.0198770258575678,0.058683879673481,0.085830383002758,-0.641105890274048,0.762637794017792,-0.0827830731868744,-0.640727877616882,0.763292133808136,-0.0625584945082664,-0.638455450534821,0.767112135887146,0.0604145303368568,-0.640005826950073,0.7659912109375,-0.998273074626923,-0.0337423346936703,0.0480878576636314,
- -0.992818772792816,-0.0641300827264786,0.100986115634441,-0.0625584945082664,-0.638455450534821,0.767112135887146,-0.0827830731868744,-0.640727877616882,0.763292133808136,-0.9999720454216,-0.00267749628983438,-0.00698221242055297,-0.999837338924408,0.00606422824785113,0.0169861074537039,-0.992818772792816,-0.0641300827264786,0.100986115634441,-0.998273074626923,-0.0337423346936703,0.0480878576636314,0,0.643266260623932,-0.765642583370209,0,0.640449047088623,-0.768000662326813,0,0.640449047088623,-0.768000662326813,0,0.643281519412994,-0.765629649162292,0.994692444801331,-0.0770192891359329,0.0682284906506538,0.999837458133698,-0.00606330018490553,-0.0169861186295748,0.9999720454216,0.00267809256911278,0.0069821965880692,0.998664081096649,-0.0370741449296474,0.035991907119751,0.085830383002758,-0.641105890274048,0.762637794017792,0.0604145303368568,-0.640005826950073,0.7659912109375,0.994692444801331,-0.0770192891359329,0.0682284906506538,0.998664081096649,-0.0370741449296474,0.035991907119751,0.0880376547574997,-0.640511631965637,0.762885570526123,-0.0911078602075577,-0.640883147716522,0.762212634086609,-0.060940969735384,-0.643097341060638,0.763355791568756,0.0626169741153717,-0.641886532306671,0.764238655567169,-0.999030232429504,-0.0317263714969158,0.030528062954545,-0.994621157646179,-0.0754433274269104,0.0709714442491531,-0.060940969735384,-0.643097341060638,0.763355791568756,-0.0911078602075577,-0.640883147716522,0.762212634086609,-0.999966740608215,0.00291031878441572,0.00761246774345636,-0.999902009963989,-0.00474909180775285,-0.0131704825907946,-0.994621157646179,-0.0754433274269104,0.0709714442491531,-0.999030232429504,-0.0317263714969158,0.030528062954545,0,0.643269896507263,-0.76563948392868,0,0.643730521202087,-0.765252232551575,0,0.643730461597443,-0.765252232551575,0,0.643280029296875,-0.765630960464478,0.993191123008728,-0.065384067595005,0.0964178666472435,0.999901831150055,0.00473669543862343,0.0131889143958688,0.999966859817505,-0.0029242888558656,-0.00759807368740439,0.998729944229126,-0.0287025105208158,0.0414088405668736,
- 0.0880376547574997,-0.640511631965637,0.762885570526123,0.0626169741153717,-0.641886532306671,0.764238655567169,0.993191123008728,-0.065384067595005,0.0964178666472435,0.998729944229126,-0.0287025105208158,0.0414088405668736,0.0805215910077095,-0.638139009475708,0.765698909759521,-0.0791019797325134,-0.634801685810089,0.768615484237671,-0.0911078602075577,-0.640883147716522,0.762212634086609,0.0880376547574997,-0.640511631965637,0.762885570526123,0.0805215910077095,-0.638139009475708,0.765698909759521,0.0880376547574997,-0.640511631965637,0.762885570526123,0.998729944229126,-0.0287025105208158,0.0414088405668736,0.998525321483612,-0.0510075241327286,0.0185842979699373,0.999966859817505,-0.0029242888558656,-0.00759807368740439,0.999713003635406,-0.00840995088219643,-0.022435337305069,0.998525321483612,-0.0510075241327286,0.0185842979699373,0.998729944229126,-0.0287025105208158,0.0414088405668736,0,0.642592072486877,-0.766208469867706,0,0.643269896507263,-0.76563948392868,0,0.643280029296875,-0.765630960464478,0,0.642570912837982,-0.766226291656494,-0.999534904956818,0.0107123460620642,0.028552059084177,-0.999966740608215,0.00291031878441572,0.00761246774345636,-0.999030232429504,-0.0317263714969158,0.030528062954545,-0.996298909187317,-0.0278448704630136,0.0813214629888535,-0.996298909187317,-0.0278448704630136,0.0813214629888535,-0.999030232429504,-0.0317263714969158,0.030528062954545,-0.0911078602075577,-0.640883147716522,0.762212634086609,-0.0791019797325134,-0.634801685810089,0.768615484237671,0.0854309648275375,-0.645336091518402,0.759106636047363,-0.0797187089920044,-0.646905601024628,0.758391737937927,-0.0791019797325134,-0.634801685810089,0.768615484237671,0.0805215910077095,-0.638139009475708,0.765698909759521,-0.998461425304413,-0.0408007428050041,0.0375524386763573,-0.996298909187317,-0.0278448704630136,0.0813214629888535,-0.0791019797325134,-0.634801685810089,0.768615484237671,-0.0797187089920044,-0.646905601024628,0.758391737937927,-0.999295830726624,-0.0135486023500562,-0.0349908471107483,-0.999534904956818,0.0107123460620642,0.028552059084177,
- -0.996298909187317,-0.0278448704630136,0.0813214629888535,-0.998461425304413,-0.0408007428050041,0.0375524386763573,0,0.644202470779419,-0.764854967594147,0,0.642592072486877,-0.766208469867706,0,0.642570912837982,-0.766226291656494,0,0.644228994846344,-0.764832615852356,0.998525321483612,-0.0510075241327286,0.0185842979699373,0.999713003635406,-0.00840995088219643,-0.022435337305069,0.999636948108673,0.00972201954573393,0.0251298788934946,0.998208224773407,-0.0345781072974205,0.0488334968686104,0.0854309648275375,-0.645336091518402,0.759106636047363,0.0805215910077095,-0.638139009475708,0.765698909759521,0.998525321483612,-0.0510075241327286,0.0185842979699373,0.998208224773407,-0.0345781072974205,0.0488334968686104,0.0917720273137093,-0.640064120292664,0.762820959091187,-0.0875796526670456,-0.644443452358246,0.759620010852814,-0.0799710601568222,-0.639341294765472,0.76475316286087,0.0843764767050743,-0.63863331079483,0.764871299266815,0.0917720273137093,-0.640064120292664,0.762820959091187,0.0843764767050743,-0.63863331079483,0.764871299266815,0.998193800449371,-0.0350919999182224,0.048761859536171,0.997534990310669,-0.0199690442532301,0.0672689601778984,0.999711275100708,0.00912027712911367,0.0222281068563461,0.999934136867523,0.00406903168186545,0.010729338042438,0.997534990310669,-0.0199690442532301,0.0672689601778984,0.998193800449371,-0.0350919999182224,0.048761859536171,0,0.651120007038116,-0.758974730968475,0,0.651116073131561,-0.758978128433228,0,0.646185457706451,-0.763180375099182,0,0.646250307559967,-0.763125360012054,-0.999212026596069,-0.03968620672822,-0.000540524197276682,-0.99975711107254,-0.0082192113623023,-0.0204515065997839,-0.999836981296539,-0.00688531110063195,-0.0166951417922974,-0.998225033283234,-0.0378466956317425,0.0459821633994579,-0.999212026596069,-0.03968620672822,-0.000540524197276682,-0.998225033283234,-0.0378466956317425,0.0459821633994579,-0.0799710601568222,-0.639341294765472,0.76475316286087,-0.0875796526670456,-0.644443452358246,0.759620010852814,0.999934136867523,0.00406903168186545,0.010729338042438,
- 0.999548137187958,-0.0118751777336001,-0.0276149269193411,0.999634444713593,-0.0184302348643541,-0.0197828486561775,0.997534990310669,-0.0199690442532301,0.0672689601778984,0.0722829699516296,-0.644169569015503,0.761459648609161,-0.076906718313694,-0.64539098739624,0.759970963001251,-0.0797187089920044,-0.646905601024628,0.758391737937927,0.0854309648275375,-0.645336091518402,0.759106636047363,0.0722829699516296,-0.644169569015503,0.761459648609161,0.0854309648275375,-0.645336091518402,0.759106636047363,0.998208224773407,-0.0345781072974205,0.0488334968686104,0.996484816074371,-0.0430427566170692,0.0718696191906929,0.999636948108673,0.00972201954573393,0.0251298788934946,0.999996542930603,-0.00104128173552454,-0.00240986049175262,0.996484816074371,-0.0430427566170692,0.0718696191906929,0.998208224773407,-0.0345781072974205,0.0488334968686104,0,0.643311738967896,-0.765604317188263,0,0.644202470779419,-0.764854967594147,0,0.644228994846344,-0.764832615852356,0,0.64327746629715,-0.765633165836334,-0.999996781349182,0.00104181002825499,0.00231321644969285,-0.999295830726624,-0.0135486023500562,-0.0349908471107483,-0.998461425304413,-0.0408007428050041,0.0375524386763573,-0.997834980487823,-0.0555137619376183,0.035263754427433,-0.997834980487823,-0.0555137619376183,0.035263754427433,-0.998461425304413,-0.0408007428050041,0.0375524386763573,-0.0797187089920044,-0.646905601024628,0.758391737937927,-0.076906718313694,-0.64539098739624,0.759970963001251,-2.92830873149796e-006,0.643269956111908,-0.765639424324036,-2.92830873149796e-006,0.643270015716553,-0.76563948392868,-1.21894822768809e-006,0.64327085018158,-0.765638589859009,-1.20537174552737e-006,0.643270909786224,-0.765638589859009,-0.999723315238953,-0.0179108809679747,0.0152518032118678,-0.999992370605469,-0.00274059432558715,-0.00279326131567359,-0.999932944774628,0.00697605358436704,0.00924438051879406,-0.99927943944931,-0.0122774345800281,0.035913709551096,-0.0215826667845249,-0.64319384098053,0.765399217605591,-0.999723315238953,-0.0179108809679747,0.0152518032118678,
- -0.99927943944931,-0.0122774345800281,0.035913709551096,-0.0592991895973682,-0.61137592792511,0.789115369319916,0.99982613325119,0.00701129669323564,0.0172825250774622,0.267237693071365,-0.616576552391052,0.740552127361298,0.0708347856998444,-0.612916946411133,0.786965787410736,0.999446570873261,-0.0299498848617077,0.0144732324406505,0.374573141336441,-0.594153046607971,0.711812496185303,-0.0145123824477196,-0.64836847782135,0.761188447475433,-0.0891522616147995,-0.646450459957123,0.757729351520538,0.0977704003453255,-0.642683982849121,0.759867250919342,-0.0145123824477196,-0.64836847782135,0.761188447475433,-0.999663472175598,-0.0247443318367004,-0.00779321230947971,-0.999456167221069,-0.032794963568449,0.00345767312683165,-0.0891522616147995,-0.646450459957123,0.757729351520538,-0.999663472175598,-0.0247443318367004,-0.00779321230947971,-0.999626696109772,-0.00960792694240808,-0.0255755614489317,-0.99965500831604,-0.00913823582231998,-0.0246237386018038,-0.999456167221069,-0.032794963568449,0.00345767312683165,1.36055234634114e-006,0.64818274974823,-0.761484742164612,1.36055234634114e-006,0.648182809352875,-0.761484742164612,3.12584717221398e-007,0.647568881511688,-0.762006878852844,3.27110655007345e-007,0.647577464580536,-0.761999607086182,0.999434769153595,0.00283867423422635,0.0334970243275166,0.374573141336441,-0.594153046607971,0.711812496185303,0.0977704003453255,-0.642683982849121,0.759867250919342,0.998078763484955,-0.0198770258575678,0.058683879673481,0.362919628620148,-0.605542778968811,0.708242356777191,-0.0248815082013607,-0.641361474990845,0.766835391521454,-0.0875796526670456,-0.644443452358246,0.759620010852814,0.0917720273137093,-0.640064120292664,0.762820959091187,0.999634444713593,-0.0184302348643541,-0.0197828486561775,0.362919628620148,-0.605542778968811,0.708242356777191,0.0917720273137093,-0.640064120292664,0.762820959091187,0.997534990310669,-0.0199690442532301,0.0672689601778984,0,0.651820123195648,-0.758373558521271,0,0.651820123195648,-0.758373618125916,0,0.651116073131561,-0.758978128433228,
- 0,0.651120007038116,-0.758974730968475,-0.998567342758179,-0.0130059635266662,0.0519061647355556,-0.999654412269592,0.0102009288966656,0.0242281649261713,-0.99975711107254,-0.0082192113623023,-0.0204515065997839,-0.999212026596069,-0.03968620672822,-0.000540524197276682,-0.0248815082013607,-0.641361474990845,0.766835391521454,-0.998567342758179,-0.0130059635266662,0.0519061647355556,-0.999212026596069,-0.03968620672822,-0.000540524197276682,-0.0875796526670456,-0.644443452358246,0.759620010852814,-0.471773982048035,0.744888484477997,-0.471773654222488,-0.419147461652756,0.805376172065735,-0.419147521257401,-0.415985435247421,0.808648407459259,-0.415985494852066,-0.471587032079697,0.7451251745224,-0.471586734056473,0.396607279777527,-0.787665903568268,0.471471160650253,0.467254906892776,-0.791024625301361,0.394908607006073,0.492806643247604,-0.763817846775055,0.416801989078522,0.419222682714462,-0.763825356960297,0.490737348794937,0.69441682100296,-0.0622990280389786,-0.716871082782745,0.673963725566864,-0.0232831928879023,-0.738397479057312,0.711298108100891,0.00194719922728837,-0.702887773513794,0.724781155586243,-0.0389292798936367,-0.687878489494324,-0.681719541549683,-0.0344331674277782,0.730802893638611,-0.70865935087204,-0.000549318385310471,0.705550611019135,-0.685132741928101,0.0154586685821414,0.728254199028015,-0.662280201911926,-0.0226710978895426,0.748913168907166,-0.681719541549683,-0.0344331674277782,0.730802893638611,-0.662280201911926,-0.0226710978895426,0.748913168907166,0.396607279777527,-0.787665903568268,0.471471160650253,0.419222682714462,-0.763825356960297,0.490737348794937,0.492806643247604,-0.763817846775055,0.416801989078522,0.467254906892776,-0.791024625301361,0.394908607006073,0.69441682100296,-0.0622990280389786,-0.716871082782745,0.724781155586243,-0.0389292798936367,-0.687878489494324,0.740654706954956,-0.0232451986521482,-0.67148357629776,0.724653899669647,0.00352392997592688,-0.689104020595551,0.724179089069366,8.73939497978427e-005,-0.689612030982971,0.736403167247772,-0.0238643623888493,-0.676121890544891,
- 0.48458468914032,-0.773155927658081,0.409154742956162,0.445098042488098,-0.796723902225494,0.408801794052124,0.275244057178497,-0.784188628196716,0.556137502193451,0.4044309258461,-0.775290369987488,0.485139578580856,0.724781155586243,-0.0389292798936367,-0.687878489494324,0.711298108100891,0.00194719922728837,-0.702887773513794,0.724653899669647,0.00352392997592688,-0.689104020595551,0.740654706954956,-0.0232451986521482,-0.67148357629776,-0.46389052271843,0.759798645973206,-0.455534368753433,-0.471773982048035,0.744888484477997,-0.471773654222488,-0.471587032079697,0.7451251745224,-0.471586734056473,-0.463446706533432,0.76043164730072,-0.454929620027542,-0.705187141895294,-0.0321153998374939,0.708293437957764,-0.72356116771698,-0.00155081623233855,0.690258502960205,-0.70865935087204,-0.000549318385310471,0.705550611019135,-0.681719541549683,-0.0344331674277782,0.730802893638611,-0.705187141895294,-0.0321153998374939,0.708293437957764,-0.681719541549683,-0.0344331674277782,0.730802893638611,0.419222682714462,-0.763825356960297,0.490737348794937,0.4044309258461,-0.775290369987488,0.485139578580856,0.492806643247604,-0.763817846775055,0.416801989078522,0.48458468914032,-0.773155927658081,0.409154742956162,0.4044309258461,-0.775290369987488,0.485139578580856,0.419222682714462,-0.763825356960297,0.490737348794937,0.48458468914032,-0.773155927658081,0.409154742956162,0.492806643247604,-0.763817846775055,0.416801989078522,0.724781155586243,-0.0389292798936367,-0.687878489494324,0.740654706954956,-0.0232451986521482,-0.67148357629776,0.391321957111359,-0.797034025192261,0.460004299879074,0.462940484285355,-0.795585870742798,0.390806078910828,0.477403938770294,-0.782133817672729,0.400439977645874,0.397978454828262,-0.782207548618317,0.479337692260742,-0.685570955276489,-0.0348152108490467,0.72717273235321,-0.696457266807556,-0.054366335272789,0.715535759925842,0.391321957111359,-0.797034025192261,0.460004299879074,0.397978454828262,-0.782207548618317,0.479337692260742,-0.699823915958405,0.00352097908034921,0.714306712150574,
- -0.720599949359894,-0.0110247172415257,0.693263471126556,-0.696457266807556,-0.054366335272789,0.715535759925842,-0.685570955276489,-0.0348152108490467,0.72717273235321,-0.466648757457733,0.751314640045166,-0.466653227806091,-0.460438430309296,0.758938908576965,-0.460443258285522,-0.460438430309296,0.758938908576965,-0.460443288087845,-0.466605007648468,0.751368939876556,-0.466609537601471,0.74236011505127,-0.0317633859813213,-0.66924786567688,0.720599055290222,0.0110239814966917,-0.693264365196228,0.701687872409821,-0.00235931528732181,-0.712480545043945,0.726211965084076,-0.0338696092367172,-0.68663614988327,0.477403938770294,-0.782133817672729,0.400439977645874,0.462940484285355,-0.795585870742798,0.390806078910828,0.74236011505127,-0.0317633859813213,-0.66924786567688,0.726211965084076,-0.0338696092367172,-0.68663614988327,0.726211965084076,-0.0338696092367172,-0.68663614988327,0.701687872409821,-0.00235931528732181,-0.712480545043945,0.682569563388824,-0.0155867170542479,-0.730654418468475,0.69970828294754,-0.0404596775770187,-0.71328204870224,-0.441463381052017,0.781163990497589,-0.441466689109802,-0.466648757457733,0.751314640045166,-0.466653227806091,-0.466605007648468,0.751368939876556,-0.466609537601471,-0.444584459066391,0.777615785598755,-0.444587796926498,-0.68076103925705,0.0166449025273323,0.732316434383392,-0.699823915958405,0.00352097908034921,0.714306712150574,-0.685570955276489,-0.0348152108490467,0.72717273235321,-0.665453016757965,-0.0107463700696826,0.746362328529358,-0.665453016757965,-0.0107463700696826,0.746362328529358,-0.685570955276489,-0.0348152108490467,0.72717273235321,0.397978454828262,-0.782207548618317,0.479337692260742,0.414819031953812,-0.761930644512177,0.497380137443542,0.477403938770294,-0.782133817672729,0.400439977645874,0.496295988559723,-0.764553725719452,0.411275833845139,0.414819031953812,-0.761930644512177,0.497380137443542,0.397978454828262,-0.782207548618317,0.479337692260742,0.496295988559723,-0.764553725719452,0.411275833845139,0.477403938770294,-0.782133817672729,0.400439977645874,
- 0.726211965084076,-0.0338696092367172,-0.68663614988327,0.69970828294754,-0.0404596775770187,-0.71328204870224,0.414819031953812,-0.761930644512177,0.497380137443542,0.496295988559723,-0.764553725719452,0.411275833845139,0.467254906892776,-0.791024625301361,0.394908607006073,0.396607279777527,-0.787665903568268,0.471471160650253,-0.662280201911926,-0.0226710978895426,0.748913168907166,-0.665453016757965,-0.0107463700696826,0.746362328529358,0.414819031953812,-0.761930644512177,0.497380137443542,0.396607279777527,-0.787665903568268,0.471471160650253,-0.685132741928101,0.0154586685821414,0.728254199028015,-0.68076103925705,0.0166449025273323,0.732316434383392,-0.665453016757965,-0.0107463700696826,0.746362328529358,-0.662280201911926,-0.0226710978895426,0.748913168907166,-0.419147461652756,0.805376172065735,-0.419147521257401,-0.441463381052017,0.781163990497589,-0.441466689109802,-0.444584459066391,0.777615785598755,-0.444587796926498,-0.415985435247421,0.808648407459259,-0.415985494852066,0.69970828294754,-0.0404596775770187,-0.71328204870224,0.682569563388824,-0.0155867170542479,-0.730654418468475,0.673963725566864,-0.0232831928879023,-0.738397479057312,0.69441682100296,-0.0622990280389786,-0.716871082782745,0.467254906892776,-0.791024625301361,0.394908607006073,0.496295988559723,-0.764553725719452,0.411275833845139,0.69970828294754,-0.0404596775770187,-0.71328204870224,0.69441682100296,-0.0622990280389786,-0.716871082782745,-0.449129790067673,0.780137240886688,-0.435509085655212,-0.449129819869995,0.780137360095978,-0.435509085655212,-0.46389052271843,0.759798645973206,-0.455534368753433,-0.463446706533432,0.76043164730072,-0.454929620027542,-0.721985936164856,-0.00726111978292465,0.691869676113129,-0.725804269313812,3.96140567318071e-005,0.687901198863983,-0.72356116771698,-0.00155081623233855,0.690258502960205,-0.705187141895294,-0.0321153998374939,0.708293437957764,0.275244057178497,-0.784188628196716,0.556137502193451,-0.721985936164856,-0.00726111978292465,0.691869676113129,-0.705187141895294,-0.0321153998374939,0.708293437957764,
- 0.4044309258461,-0.775290369987488,0.485139578580856,0.736403167247772,-0.0238643623888493,-0.676121890544891,0.445098042488098,-0.796723902225494,0.408801794052124,0.48458468914032,-0.773155927658081,0.409154742956162,0.740654706954956,-0.0232451986521482,-0.67148357629776,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.76563972234726,0.643269598484039,0,-0.765638947486877,0.643270671367645,0,-0.765638887882233,0.643270671367645,0,-0.765639781951904,0.643269598484039,0,0.76387745141983,-0.642980933189392,0.0553774572908878,0.764424204826355,-0.641945719718933,-0.0596782304346561,0.764365673065186,-0.642101347446442,-0.0587449856102467,0.764030158519745,-0.642156660556793,0.0623916760087013,0.0329720042645931,-0.0246665272861719,-0.999151825904846,0.0105447303503752,0.00683570746332407,-0.999921083450317,-0.0047634313814342,-0.0031905765645206,-0.999983549118042,0.0305726639926434,-0.0226410534232855,-0.999276041984558,0.0235275533050299,-0.0258930306881666,0.999387800693512,0.00730909360572696,0.00490834005177021,0.999961197376251,-0.0237056743353605,-0.0153144337236881,0.999601662158966,0.0183880608528852,-0.0355195142328739,0.99919980764389,0.0235275533050299,-0.0258930306881666,0.999387800693512,0.0183880608528852,-0.0355195142328739,0.99919980764389,0.76387745141983,-0.642980933189392,0.0553774572908878,0.764030158519745,-0.642156660556793,0.0623916760087013,0.764365673065186,-0.642101347446442,-0.0587449856102467,0.764424204826355,-0.641945719718933,-0.0596782304346561,0.0329720042645931,-0.0246665272861719,-0.999151825904846,0.0305726639926434,-0.0226410534232855,-0.999276041984558,0.020174115896225,-0.0258118417114019,-0.999463260173798,-0.00207985704764724,-0.00125771225430071,-0.999996960163116,0.00530197471380234,0.00362655031494796,-0.999979376792908,0.0202108733355999,-0.00891952682286501,-0.99975597858429,0.763699233531952,-0.64273601770401,-0.0604471080005169,0.764663696289063,-0.643069803714752,-0.0418401956558228,0.748825132846832,-0.63211452960968,0.199229091405869,0.764315903186798,-0.641840577125549,0.0621433742344379,
- 0.0305726639926434,-0.0226410534232855,-0.999276041984558,-0.0047634313814342,-0.0031905765645206,-0.999983549118042,-0.00207985704764724,-0.00125771225430071,-0.999996960163116,0.020174115896225,-0.0258118417114019,-0.999463260173798,-0.763358235359192,0.645975410938263,5.09277015225962e-006,-0.76563972234726,0.643269598484039,0,-0.765639781951904,0.643269598484039,0,-0.763379275798798,0.645950496196747,5.04580702909152e-006,0.0366697460412979,-0.0164049472659826,0.999192774295807,0.00384846143424511,0.00236445409245789,0.999989807605743,0.00730909360572696,0.00490834005177021,0.999961197376251,0.0235275533050299,-0.0258930306881666,0.999387800693512,0.0366697460412979,-0.0164049472659826,0.999192774295807,0.0235275533050299,-0.0258930306881666,0.999387800693512,0.764030158519745,-0.642156660556793,0.0623916760087013,0.764315903186798,-0.641840577125549,0.0621433742344379,0.764365673065186,-0.642101347446442,-0.0587449856102467,0.763699233531952,-0.64273601770401,-0.0604471080005169,0.764315903186798,-0.641840577125549,0.0621433742344379,0.764030158519745,-0.642156660556793,0.0623916760087013,0.763699233531952,-0.64273601770401,-0.0604471080005169,0.764365673065186,-0.642101347446442,-0.0587449856102467,0.0305726639926434,-0.0226410534232855,-0.999276041984558,0.020174115896225,-0.0258118417114019,-0.999463260173798,0.764541506767273,-0.642308175563812,0.0540058426558971,0.764611005783081,-0.642214834690094,-0.0541311800479889,0.764105319976807,-0.641842842102051,-0.0646586790680885,0.764082252979279,-0.64185357093811,0.064826563000679,0.0246706884354353,-0.0201661866158247,0.999492228031158,0.0361005291342735,-0.0317266657948494,0.99884444475174,0.764541506767273,-0.642308175563812,0.0540058426558971,0.764082252979279,-0.64185357093811,0.064826563000679,0.00116999121382833,0.000745923607610166,0.999999046325684,-0.00095964124193415,-0.000596968922764063,0.999999344348907,0.0361005291342735,-0.0317266657948494,0.99884444475174,0.0246706884354353,-0.0201661866158247,0.999492228031158,-0.765671133995056,0.643232107162476,0,
- -0.765696346759796,0.643202304840088,0,-0.765696346759796,0.643202364444733,0,-0.765671074390411,0.64323216676712,0,0.0379866100847721,-0.0305082444101572,-0.99881237745285,0.000959580938797444,0.000596969039179385,-0.999999344348907,0.000703452678862959,0.000440016941865906,-0.999999582767487,0.0251206662505865,-0.0199371930211782,-0.999485611915588,0.764105319976807,-0.641842842102051,-0.0646586790680885,0.764611005783081,-0.642214834690094,-0.0541311800479889,0.0379866100847721,-0.0305082444101572,-0.99881237745285,0.0251206662505865,-0.0199371930211782,-0.999485611915588,0.0251206662505865,-0.0199371930211782,-0.999485611915588,0.000703452678862959,0.000440016941865906,-0.999999582767487,-0.011693156324327,-0.00747343385592103,-0.999903738498688,0.0153949167579412,-0.0222290214151144,-0.999634385108948,-0.765633106231689,0.64327746629715,0,-0.765671133995056,0.643232107162476,0,-0.765671074390411,0.64323216676712,0,-0.765633046627045,0.64327746629715,0,0.0134129449725151,0.00855644233524799,0.999873459339142,0.00116999121382833,0.000745923607610166,0.999999046325684,0.0246706884354353,-0.0201661866158247,0.999492228031158,0.0304064359515905,-0.0123928198590875,0.999460756778717,0.0304064359515905,-0.0123928198590875,0.999460756778717,0.0246706884354353,-0.0201661866158247,0.999492228031158,0.764082252979279,-0.64185357093811,0.064826563000679,0.764301121234894,-0.641205489635468,0.0685517713427544,0.764105319976807,-0.641842842102051,-0.0646586790680885,0.763561904430389,-0.642200946807861,-0.0674621909856796,0.764301121234894,-0.641205489635468,0.0685517713427544,0.764082252979279,-0.64185357093811,0.064826563000679,0.763561904430389,-0.642200946807861,-0.0674621909856796,0.764105319976807,-0.641842842102051,-0.0646586790680885,0.0251206662505865,-0.0199371930211782,-0.999485611915588,0.0153949167579412,-0.0222290214151144,-0.999634385108948,0.764301121234894,-0.641205489635468,0.0685517713427544,0.763561904430389,-0.642200946807861,-0.0674621909856796,0.764424204826355,-0.641945719718933,-0.0596782304346561,
- 0.76387745141983,-0.642980933189392,0.0553774572908878,0.0183880608528852,-0.0355195142328739,0.99919980764389,0.0304064359515905,-0.0123928198590875,0.999460756778717,0.764301121234894,-0.641205489635468,0.0685517713427544,0.76387745141983,-0.642980933189392,0.0553774572908878,-0.0237056743353605,-0.0153144337236881,0.999601662158966,0.0134129449725151,0.00855644233524799,0.999873459339142,0.0304064359515905,-0.0123928198590875,0.999460756778717,0.0183880608528852,-0.0355195142328739,0.99919980764389,-0.765638947486877,0.643270671367645,0,-0.765633106231689,0.64327746629715,0,-0.765633046627045,0.64327746629715,0,-0.765638887882233,0.643270671367645,0,0.0153949167579412,-0.0222290214151144,-0.999634385108948,-0.011693156324327,-0.00747343385592103,-0.999903738498688,0.0105447303503752,0.00683570746332407,-0.999921083450317,0.0329720042645931,-0.0246665272861719,-0.999151825904846,0.764424204826355,-0.641945719718933,-0.0596782304346561,0.763561904430389,-0.642200946807861,-0.0674621909856796,0.0153949167579412,-0.0222290214151144,-0.999634385108948,0.0329720042645931,-0.0246665272861719,-0.999151825904846,-0.761942088603973,0.647645115852356,8.24330345494673e-006,-0.761942148208618,0.647645115852356,8.24330345494673e-006,-0.763358235359192,0.645975410938263,5.09277015225962e-006,-0.763379275798798,0.645950496196747,5.04580702909152e-006,-0.00115769973490387,-0.00931410398334265,0.999955952167511,-0.0067276400513947,-0.00462816376239061,0.999966681003571,0.00384846143424511,0.00236445409245789,0.999989807605743,0.0366697460412979,-0.0164049472659826,0.999192774295807,0.748825132846832,-0.63211452960968,0.199229091405869,-0.00115769973490387,-0.00931410398334265,0.999955952167511,0.0366697460412979,-0.0164049472659826,0.999192774295807,0.764315903186798,-0.641840577125549,0.0621433742344379,0.0202108733355999,-0.00891952682286501,-0.99975597858429,0.764663696289063,-0.643069803714752,-0.0418401956558228,0.763699233531952,-0.64273601770401,-0.0604471080005169,0.020174115896225,-0.0258118417114019,-0.999463260173798,
- -0.766474962234497,0.64227420091629,-0.000160865965881385,-0.764769375324249,0.644303977489471,-0.000461587565951049,-0.765480399131775,0.643458604812622,0.000938698300160468,-0.766306221485138,0.642475545406342,-0.000111606910650153,0.765748679637909,-0.643139898777008,-9.72073166849441e-007,0.765750885009766,-0.643137216567993,-5.1165375225537e-007,0.765751957893372,-0.643136024475098,-9.91167212305299e-007,0.765750527381897,-0.643137753009796,-1.83908855433401e-006,0,0,1,0,0,1,0,0,1,0,0,1,-0.643160104751587,-0.765731692314148,1.06539641819836e-006,-0.643160104751587,-0.765731692314148,1.06539641819836e-006,-0.643177509307861,-0.765717089176178,6.0554134506674e-007,-0.643177449703217,-0.765717089176178,6.05541970344348e-007,-0.643160104751587,-0.765731751918793,1.06539641819836e-006,-0.643160104751587,-0.765731692314148,1.06539641819836e-006,0,0,1,0,0,1,0,0,1,0,0,1,-0.763794779777527,0.645455002784729,0.00230216141790152,-0.769789457321167,0.638254225254059,0.00745771592482924,-0.761430144309998,0.648204922676086,-0.00738018285483122,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,-0.761297821998596,0.648376405239105,-0.00579829327762127,-0.763794779777527,0.645455002784729,0.00230216141790152,-0.761430144309998,0.648204922676086,-0.00738018285483122,-0.762473881244659,0.647004127502441,-0.00438692420721054,0.765757024288177,-0.643130123615265,1.59818029032976e-007,0.765753030776978,-0.643134593963623,1.4105494017258e-007,0.76575380563736,-0.643133938312531,2.67638426976191e-007,0.765754222869873,-0.643133461475372,3.46113296245676e-007,0.765756607055664,-0.643130481243134,7.08258980353094e-008,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,-0.769255518913269,0.638892769813538,-0.0078706182539463,-0.761297821998596,0.648376405239105,-0.00579829327762127,-0.762473881244659,0.647004127502441,-0.00438692420721054,-0.767102479934692,0.641522347927094,0.00168470072094351,0.765757143497467,-0.643129944801331,2.10829412594649e-007,0.765757024288177,-0.643130123615265,1.59818029032976e-007,0.765756607055664,-0.643130481243134,7.08258980353094e-008,
- 0.765757381916046,-0.643129527568817,0,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,-0.767997443675995,0.640436112880707,-0.00464916182681918,-0.769255518913269,0.638892769813538,-0.0078706182539463,-0.767102479934692,0.641522347927094,0.00168470072094351,-0.766676902770996,0.642020881175995,0.00395363382995129,0.765754103660584,-0.643133461475372,1.65503038829229e-007,0.765757143497467,-0.643129944801331,2.10829412594649e-007,0.765757381916046,-0.643129527568817,0,0.765754163265228,-0.643133401870728,0,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,-0.764769375324249,0.644303977489471,-0.000461587565951049,-0.767997443675995,0.640436112880707,-0.00464916182681918,-0.766676902770996,0.642020881175995,0.00395363382995129,-0.765480399131775,0.643458604812622,0.000938698300160468,0.765750885009766,-0.643137216567993,-5.1165375225537e-007,0.765754103660584,-0.643133461475372,1.65503038829229e-007,0.765754163265228,-0.643133401870728,0,0.765751957893372,-0.643136024475098,-9.91167212305299e-007,-0.766175270080566,0.642630398273468,0.00126548216212541,-0.7656489610672,0.643258571624756,-0.000335802789777517,-0.766298055648804,0.642485082149506,0.0004732990055345,-0.766032338142395,0.642801821231842,0.000527450814843178,-0.770091474056244,0.637864172458649,0.00940700806677341,-0.770272612571716,0.637712836265564,-0.001622942276299,-0.7656489610672,0.643258571624756,-0.000335802789777517,-0.766175270080566,0.642630398273468,0.00126548216212541,-0.765009045600891,0.643832862377167,0.0155086731538177,-0.767525970935822,0.641012489795685,0.00262782233767211,-0.770272612571716,0.637712836265564,-0.001622942276299,-0.770091474056244,0.637864172458649,0.00940700806677341,-0.760345757007599,0.649486839771271,0.00640719477087259,-0.759759664535522,0.650195002555847,0.00341102061793208,-0.767525970935822,0.641012489795685,0.00262782233767211,-0.765009045600891,0.643832862377167,0.0155086731538177,-0.764552354812622,0.644549965858459,-0.00388179067522287,-0.764150381088257,0.645036101341248,0.00160157436039299,-0.759759664535522,0.650195002555847,0.00341102061793208,
- -0.760345757007599,0.649486839771271,0.00640719477087259,-0.766640782356262,0.642062842845917,-0.00415058340877295,-0.767571806907654,0.64096075296402,0.00163973204325885,-0.764150381088257,0.645036101341248,0.00160157436039299,-0.764552354812622,0.644549965858459,-0.00388179067522287,-0.766298055648804,0.642485082149506,0.0004732990055345,-0.7656489610672,0.643258571624756,-0.000335802789777517,-0.764769375324249,0.644303977489471,-0.000461587565951049,-0.766474962234497,0.64227420091629,-0.000160865965881385,-0.7656489610672,0.643258571624756,-0.000335802789777517,-0.770272612571716,0.637712836265564,-0.001622942276299,-0.767997443675995,0.640436112880707,-0.00464916182681918,-0.764769375324249,0.644303977489471,-0.000461587565951049,-0.770272612571716,0.637712836265564,-0.001622942276299,-0.767525970935822,0.641012489795685,0.00262782233767211,-0.769255518913269,0.638892769813538,-0.0078706182539463,-0.767997443675995,0.640436112880707,-0.00464916182681918,-0.767525970935822,0.641012489795685,0.00262782233767211,-0.759759664535522,0.650195002555847,0.00341102061793208,-0.761297821998596,0.648376405239105,-0.00579829327762127,-0.769255518913269,0.638892769813538,-0.0078706182539463,-0.759759664535522,0.650195002555847,0.00341102061793208,-0.764150381088257,0.645036101341248,0.00160157436039299,-0.763794779777527,0.645455002784729,0.00230216141790152,-0.761297821998596,0.648376405239105,-0.00579829327762127,-0.764150381088257,0.645036101341248,0.00160157436039299,-0.767571806907654,0.64096075296402,0.00163973204325885,-0.769789457321167,0.638254225254059,0.00745771592482924,-0.763794779777527,0.645455002784729,0.00230216141790152,0,0,1,0,0,1,0,0,1,0,0,1,0.765793859958649,-0.643086075782776,3.5661562947098e-007,0.765778243541718,-0.643104732036591,4.53092013685819e-007,0.765851736068726,-0.643017113208771,0,0.76585179567337,-0.643017172813416,0,-0.767684936523438,0.640821039676666,-0.00286692217923701,-0.767192244529724,0.641410827636719,0.00285970862023532,-0.767571806907654,0.64096075296402,0.00163973204325885,-0.766640782356262,0.642062842845917,-0.00415058340877295,
- -0.767264068126678,0.641331195831299,-0.000523225229699165,-0.764312982559204,0.644841730594635,-0.00223398604430258,-0.764903783798218,0.644132435321808,-0.00395034858956933,-0.766553342342377,0.642168283462524,-0.00398462871089578,0.765746772289276,-0.643142104148865,-5.61967112844286e-008,0.76574844121933,-0.643140137195587,1.3708491231057e-008,0.765750885009766,-0.643137216567993,-5.1165375225537e-007,0.765748679637909,-0.643139898777008,-9.72073166849441e-007,-0.643193542957306,-0.765703678131104,1.81258315024024e-007,-0.643193542957306,-0.765703678131104,1.81258315024024e-007,-0.643193483352661,-0.765703618526459,1.8125830081317e-007,-0.643193542957306,-0.765703678131104,1.81258315024024e-007,-0.643177449703217,-0.765717089176178,6.05541970344348e-007,-0.643177509307861,-0.765717089176178,6.0554134506674e-007,-0.763130366802216,0.646225690841675,-0.00494052795693278,-0.764903783798218,0.644132435321808,-0.00395034858956933,-0.764312982559204,0.644841730594635,-0.00223398604430258,-0.765513181686401,0.643420100212097,0.000248085823841393,-0.76661491394043,0.642106354236603,0.000994276837445796,-0.765480399131775,0.643458604812622,0.000938698300160468,-0.765513181686401,0.643420100212097,0.000248085823841393,-0.76707798242569,0.641552269458771,0.00150174484588206,-0.766306221485138,0.642475545406342,-0.000111606910650153,-0.766676902770996,0.642020881175995,0.00395363382995129,-0.76661491394043,0.642106354236603,0.000994276837445796,-0.765513181686401,0.643420100212097,0.000248085823841393,-0.765480399131775,0.643458604812622,0.000938698300160468,-0.767102479934692,0.641522347927094,0.00168470072094351,-0.766385674476624,0.642350256443024,0.00625875825062394,-0.76661491394043,0.642106354236603,0.000994276837445796,-0.766676902770996,0.642020881175995,0.00395363382995129,-0.76707798242569,0.641552269458771,0.00150174484588206,-0.765513181686401,0.643420100212097,0.000248085823841393,-0.764312982559204,0.644841730594635,-0.00223398604430258,-0.767264068126678,0.641331195831299,-0.000523225229699165,-0.773173868656158,0.634095549583435,-0.0111782131716609,
- -0.763130366802216,0.646225690841675,-0.00494052795693278,-0.76661491394043,0.642106354236603,0.000994276837445796,-0.766385674476624,0.642350256443024,0.00625875825062394,-0.76006680727005,0.649796605110168,0.00792870856821537,-0.766385674476624,0.642350256443024,0.00625875825062394,-0.767102479934692,0.641522347927094,0.00168470072094351,-0.762473881244659,0.647004127502441,-0.00438692420721054,0.76575380563736,-0.643133938312531,2.67638426976191e-007,0.765778243541718,-0.643104732036591,4.53092013685819e-007,0.765793859958649,-0.643086075782776,3.5661562947098e-007,0.765754222869873,-0.643133461475372,3.46113296245676e-007,-0.766600251197815,0.642056107521057,0.00937806162983179,-0.769789457321167,0.638254225254059,0.00745771592482924,-0.767571806907654,0.64096075296402,0.00163973204325885,-0.767192244529724,0.641410827636719,0.00285970862023532,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.765759766101837,-0.643126666545868,8.04039359536546e-007,0.765753030776978,-0.643134593963623,1.4105494017258e-007,0.765757024288177,-0.643130123615265,1.59818029032976e-007,0.765755176544189,-0.643132269382477,7.59381975967699e-007,0.765759766101837,-0.643126666545868,8.04039359536546e-007,0.765757024288177,-0.643130123615265,1.59818029032976e-007,0.765757143497467,-0.643129944801331,2.10829412594649e-007,0.765754044055939,-0.643133521080017,3.65463847629144e-007,0.765753924846649,-0.643133699893951,7.30668716641958e-007,0.765755176544189,-0.643132269382477,7.59381975967699e-007,0.765757143497467,-0.643129944801331,2.10829412594649e-007,0.765754103660584,-0.643133461475372,1.65503038829229e-007,0.76574844121933,-0.643140137195587,1.3708491231057e-008,0.765754044055939,-0.643133521080017,3.65463847629144e-007,0.765754103660584,-0.643133461475372,1.65503038829229e-007,0.765750885009766,-0.643137216567993,-5.1165375225537e-007,-0.761430144309998,0.648204922676086,-0.00738018285483122,-0.76006680727005,0.649796605110168,0.00792870856821537,-0.762473881244659,0.647004127502441,-0.00438692420721054,0.000647414766717702,0.642122030258179,-0.766602039337158,
- 2.15610198210925e-005,0.643346846103668,-0.765574753284454,-0.000567709910683334,0.643085360527039,-0.765794277191162,0.000182155490620062,0.642430305480957,-0.766344010829926,1.90793161891634e-006,-0.643142819404602,0.765746235847473,1.11420695247944e-006,-0.643139123916626,0.765749275684357,2.16687908505264e-006,-0.643138825893402,0.765749573707581,2.56304201684543e-006,-0.643139719963074,0.765748858451843,-3.07920053899124e-008,-0.643133401870728,0.765754044055939,-4.37990976820402e-008,-0.643132865428925,0.765754640102386,-7.01388529478209e-008,-0.643133699893951,0.765753924846649,2.15610198210925e-005,0.643346846103668,-0.765574753284454,-0.00281393132172525,0.645714938640594,-0.763573408126831,-0.00503983348608017,0.639120101928711,-0.769090354442596,-0.000567709910683334,0.643085360527039,-0.765794277191162,1.11420695247944e-006,-0.643139123916626,0.765749275684357,-3.07920053899124e-008,-0.643133401870728,0.765754044055939,-7.01388529478209e-008,-0.643133699893951,0.765753924846649,2.16687908505264e-006,-0.643138825893402,0.765749573707581,0.000386202300433069,0.640828311443329,-0.7676842212677,0.000640049285721034,0.644253194332123,-0.764812052249908,0.00145336415152997,0.6444371342659,-0.764655828475952,0.00328839803114533,0.641058623790741,-0.767484784126282,1.61532875608827e-006,-0.643144190311432,0.765744984149933,8.70574240252608e-007,-0.643139481544495,0.765749037265778,1.11420695247944e-006,-0.643139123916626,0.765749275684357,1.90793161891634e-006,-0.643142819404602,0.765746235847473,-9.41792222874938e-007,-0.765697240829468,-0.643201112747192,-9.41792222874938e-007,-0.765697240829468,-0.643201112747192,-9.41792222874938e-007,-0.765697300434113,-0.643201053142548,-9.41792166031519e-007,-0.765697240829468,-0.643201112747192,-1.73686794369132e-006,-0.765713155269623,-0.643182337284088,-1.7368648741467e-006,-0.765713095664978,-0.643182277679443,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,-0.0136600974947214,0.65264892578125,-0.757537305355072,0.00529008591547608,0.637760281562805,-0.770216703414917,
- 0.00113362388219684,0.645555973052979,-0.763712108135223,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,-6.22864604338247e-008,-0.643133223056793,0.765754401683807,0,-0.643106877803802,0.765776336193085,0,-0.643119037151337,0.765766203403473,-7.75204398451024e-008,-0.643133282661438,0.765754222869873,0.00130237441044301,0.648269414901733,-0.761409878730774,0.00113362388219684,0.645555973052979,-0.763712108135223,0.00449688732624054,0.644651651382446,-0.764463186264038,0.00797485839575529,0.645110011100769,-0.764048039913177,1,0,0,1,0,0,1,0,0,1,0,0,-9.86026549298913e-008,-0.643133401870728,0.765754103660584,-2.44201050492165e-008,-0.643128037452698,0.765758574008942,-4.07966069815302e-008,-0.643129289150238,0.765757620334625,-6.22864604338247e-008,-0.643133223056793,0.765754401683807,-7.75204398451024e-008,-0.643133282661438,0.765754222869873,0.00638956110924482,0.639841973781586,-0.768479943275452,0.00130237441044301,0.648269414901733,-0.761409878730774,0.00797485839575529,0.645110011100769,-0.764048039913177,0.0038227909244597,0.638647854328156,-0.769489645957947,1,0,0,1,0,0,1,0,0,1,0,0,-2.04492263122802e-008,-0.643129944801331,0.765757024288177,-4.07966069815302e-008,-0.643129289150238,0.765757620334625,-2.44201050492165e-008,-0.643128037452698,0.765758574008942,-2.67375153129024e-008,-0.643131136894226,0.765756189823151,0.00478839920833707,0.641355156898499,-0.767229080200195,0.00638956110924482,0.639841973781586,-0.768479943275452,0.0038227909244597,0.638647854328156,-0.769489645957947,-0.00147459330037236,0.643551170825958,-0.765401601791382,1,0,0,1,0,0,1,0,0,1,0,0,-1.79305992276113e-008,-0.643133461475372,0.765754163265228,-2.04492263122802e-008,-0.643129944801331,0.765757024288177,-2.67375153129024e-008,-0.643131136894226,0.765756189823151,-4.37990976820402e-008,-0.643132865428925,0.765754640102386,-3.07920053899124e-008,-0.643133401870728,0.765754044055939,0.000640049285721034,0.644253194332123,-0.764812052249908,0.00478839920833707,0.641355156898499,-0.767229080200195,-0.00147459330037236,0.643551170825958,-0.765401601791382,
- 0.00145336415152997,0.6444371342659,-0.764655828475952,1,0,0,1,0,0,1,0,0,1,0,0,8.70574240252608e-007,-0.643139481544495,0.765749037265778,-1.79305992276113e-008,-0.643133461475372,0.765754163265228,-3.07920053899124e-008,-0.643133401870728,0.765754044055939,1.11420695247944e-006,-0.643139123916626,0.765749275684357,-0.000567709910683334,0.643085360527039,-0.765794277191162,-0.000684045488014817,0.643174707889557,-0.765719175338745,-0.00150167557876557,0.641552209854126,-0.7670778632164,0.000182155490620062,0.642430305480957,-0.766344010829926,-0.00503983348608017,0.639120101928711,-0.769090354442596,0.00279615586623549,0.6373330950737,-0.77058333158493,-0.000684045488014817,0.643174707889557,-0.765719175338745,-0.000567709910683334,0.643085360527039,-0.765794277191162,-0.00150167557876557,0.641552209854126,-0.7670778632164,-0.000684045488014817,0.643174707889557,-0.765719175338745,0.000640049285721034,0.644253194332123,-0.764812052249908,0.000386202300433069,0.640828311443329,-0.7676842212677,-0.000684045488014817,0.643174707889557,-0.765719175338745,0.00279615586623549,0.6373330950737,-0.77058333158493,0.00478839920833707,0.641355156898499,-0.767229080200195,0.000640049285721034,0.644253194332123,-0.764812052249908,0.00279615586623549,0.6373330950737,-0.77058333158493,0.00109994842205197,0.639957845211029,-0.768409192562103,0.00638956110924482,0.639841973781586,-0.768479943275452,0.00478839920833707,0.641355156898499,-0.767229080200195,0.00109994842205197,0.639957845211029,-0.768409192562103,-0.00553856883198023,0.653299808502197,-0.757079064846039,0.00130237441044301,0.648269414901733,-0.761409878730774,0.00638956110924482,0.639841973781586,-0.768479943275452,-0.0136600974947214,0.65264892578125,-0.757537305355072,0.00113362388219684,0.645555973052979,-0.763712108135223,0.00130237441044301,0.648269414901733,-0.761409878730774,-0.00553856883198023,0.653299808502197,-0.757079064846039,-3.09825941258168e-006,-0.765740215778351,-0.643150091171265,-3.09825895783433e-006,-0.765740156173706,-0.64315003156662,-3.09825895783433e-006,-0.765740156173706,-0.64315003156662,
- -1.7368648741467e-006,-0.765713095664978,-0.643182277679443,-1.73686794369132e-006,-0.765713155269623,-0.643182337284088,-0.00281393132172525,0.645714938640594,-0.763573408126831,-0.0103018628433347,0.630462110042572,-0.776151657104492,-0.00503983348608017,0.639120101928711,-0.769090354442596,1.52054462887463e-006,0.641705214977264,-0.766951382160187,2.15610198210925e-005,0.643346846103668,-0.765574753284454,0.000647414766717702,0.642122030258179,-0.766602039337158,-0.0103018628433347,0.630462110042572,-0.776151657104492,-0.011392897926271,0.6352778673172,-0.772199630737305,0.00109994842205197,0.639957845211029,-0.768409192562103,0.00279615586623549,0.6373330950737,-0.77058333158493,-0.00503983348608017,0.639120101928711,-0.769090354442596,-0.011392897926271,0.6352778673172,-0.772199630737305,-0.00553856883198023,0.653299808502197,-0.757079064846039,0.00109994842205197,0.639957845211029,-0.768409192562103,0.00529008591547608,0.637760281562805,-0.770216703414917,0.0142337465658784,0.642957925796509,-0.765769302845001,0.00680790329352021,0.639000296592712,-0.769176244735718,0,-0.64301723241806,0.765851736068726,0,-0.643119037151337,0.765766203403473,0,-0.643106877803802,0.765776336193085,0.00113362388219684,0.645555973052979,-0.763712108135223,0.00529008591547608,0.637760281562805,-0.770216703414917,0.00680790329352021,0.639000296592712,-0.769176244735718,0.00449688732624054,0.644651651382446,-0.764463186264038,0.428942978382111,0.0327151417732239,0.902738928794861,0.144401326775551,0.22075329720974,0.964580774307251,-0.304594784975052,-0.28820213675499,0.907833456993103,0.1163215264678,-0.565809845924377,0.816289484500885,0.144401326775551,0.22075329720974,0.964580774307251,-0.0711292326450348,0.477417349815369,0.875792920589447,-0.623330235481262,0.0909590125083923,0.776650428771973,-0.304594784975052,-0.28820213675499,0.907833456993103,-0.0711292326450348,0.477417349815369,0.875792920589447,-0.160051211714745,0.733914852142334,0.660115599632263,-0.754501342773438,0.470126539468765,0.457939654588699,-0.623330235481262,0.0909590125083923,0.776650428771973,
- -0.160051211714745,0.733914852142334,0.660115599632263,-0.0984526202082634,0.92164409160614,0.375338673591614,-0.662973880767822,0.747727990150452,0.0369944609701633,-0.754501342773438,0.470126539468765,0.457939654588699,-0.0984526202082634,0.92164409160614,0.375338673591614,0.0976183488965034,0.99041485786438,0.0977194979786873,-0.373259842395782,0.84931480884552,-0.373284727334976,-0.662973880767822,0.747727990150452,0.0369944609701633,0.0976183488965034,0.99041485786438,0.0977194979786873,0.375389605760574,0.921632766723633,-0.0983646512031555,0.0369848497211933,0.747722029685974,-0.662981152534485,-0.373259842395782,0.84931480884552,-0.373284727334976,0.375389605760574,0.921632766723633,-0.0983646512031555,0.660222828388214,0.733739078044891,-0.160413831472397,0.457904875278473,0.470136374235153,-0.754516363143921,0.0369848497211933,0.747722029685974,-0.662981152534485,0.660222828388214,0.733739078044891,-0.160413831472397,0.875880122184753,0.477188795804977,-0.0715891718864441,0.776644885540009,0.0909439995884895,-0.623339235782623,0.457904875278473,0.470136374235153,-0.754516363143921,0.875880122184753,0.477188795804977,-0.0715891718864441,0.964663088321686,0.220600351691246,0.144085958600044,0.907826721668243,-0.288226962089539,-0.30459126830101,0.776644885540009,0.0909439995884895,-0.623339235782623,0.964663088321686,0.220600351691246,0.144085958600044,0.902732253074646,0.032776664942503,0.428952544927597,0.81628942489624,-0.565810263156891,0.116319693624973,0.907826721668243,-0.288226962089539,-0.30459126830101,0.902732253074646,0.032776664942503,0.428952544927597,0.706622362136841,-0.0360775142908096,0.706670582294464,0.526583015918732,-0.667406558990479,0.526572644710541,0.81628942489624,-0.565810263156891,0.116319693624973,0.706622362136841,-0.0360775142908096,0.706670582294464,0.428942978382111,0.0327151417732239,0.902738928794861,0.1163215264678,-0.565809845924377,0.816289484500885,0.526583015918732,-0.667406558990479,0.526572644710541,0.541667759418488,0.642759799957275,0.541715621948242,0.541667759418488,0.642759799957275,0.541715681552887,
- 0.541667759418488,0.64275985956192,0.541715621948242,0.541667759418488,0.642759799957275,0.541715621948242,0.541667819023132,0.642759799957275,0.541715681552887,0.541667759418488,0.642759799957275,0.541715562343597,0.541667759418488,0.642759799957275,0.541715621948242,0.541667819023132,0.64275985956192,0.541715621948242,0.541667819023132,0.64275985956192,0.541715621948242,0.541667819023132,0.642759799957275,0.541715681552887,0.541667819023132,0.64275985956192,0.541715621948242,0.541667759418488,0.642759799957275,0.541715621948242,-0.451145261526108,0.770009517669678,-0.451168805360794,-0.0367213413119316,0.667376697063446,-0.743814468383789,-0.412107288837433,0.0127686159685254,-0.911045849323273,-0.704552710056305,0.0852637737989426,-0.704510867595673,-0.743814051151276,0.667377233505249,-0.036718413233757,-0.451145261526108,0.770009517669678,-0.451168805360794,-0.704552710056305,0.0852637737989426,-0.704510867595673,-0.91108101606369,0.0128529630601406,-0.412026941776276,-0.836270034313202,0.386960685253143,0.388476371765137,-0.743814051151276,0.667377233505249,-0.036718413233757,-0.91108101606369,0.0128529630601406,-0.412026941776276,-0.976318061351776,-0.185091644525528,-0.112000361084938,-0.703788459300995,0.00391748594120145,0.710398733615875,-0.836270034313202,0.386960685253143,0.388476371765137,-0.976318061351776,-0.185091644525528,-0.112000361084938,-0.882802248001099,-0.455412745475769,0.115149311721325,-0.381802827119827,-0.379061877727509,0.842934489250183,-0.703788459300995,0.00391748594120145,0.710398733615875,-0.882802248001099,-0.455412745475769,0.115149311721325,-0.655585825443268,-0.725716650485992,0.208668366074562,0.0433844141662121,-0.659464359283447,0.750482797622681,-0.381802827119827,-0.379061877727509,0.842934489250183,-0.655585825443268,-0.725716650485992,0.208668366074562,-0.355512827634811,-0.923586547374725,0.143521949648857,0.457829982042313,-0.762098431587219,0.457818508148193,0.0433844141662121,-0.659464359283447,0.750482797622681,-0.355512827634811,-0.923586547374725,0.143521949648857,
- -0.0630728453397751,-0.996017038822174,-0.0630225613713264,0.750485956668854,-0.659460723400116,0.0433868989348412,0.457829982042313,-0.762098431587219,0.457818508148193,-0.0630728453397751,-0.996017038822174,-0.0630225613713264,0.143390685319901,-0.923599302768707,-0.355532586574554,0.842941582202911,-0.379064947366714,-0.381784319877625,0.750485956668854,-0.659460723400116,0.0433868989348412,0.143390685319901,-0.923599302768707,-0.355532586574554,0.208837002515793,-0.725668132305145,-0.655585885047913,0.710430443286896,0.00395807810127735,-0.703756272792816,0.842941582202911,-0.379064947366714,-0.381784319877625,0.208837002515793,-0.725668132305145,-0.655585885047913,0.115429282188416,-0.455275744199753,-0.88283634185791,0.388463020324707,0.386988073587418,-0.836263537406921,0.710430443286896,0.00395807810127735,-0.703756272792816,0.115429282188416,-0.455275744199753,-0.88283634185791,-0.111870869994164,-0.18498632311821,-0.976352870464325,-0.0367213413119316,0.667376697063446,-0.743814468383789,0.388463020324707,0.386988073587418,-0.836263537406921,-0.111870869994164,-0.18498632311821,-0.976352870464325,-0.412107288837433,0.0127686159685254,-0.911045849323273,-0.373259842395782,0.84931480884552,-0.373284727334976,0.0369848497211933,0.747722029685974,-0.662981152534485,-0.0367213413119316,0.667376697063446,-0.743814468383789,-0.451145261526108,0.770009517669678,-0.451168805360794,-0.662973880767822,0.747727990150452,0.0369944609701633,-0.373259842395782,0.84931480884552,-0.373284727334976,-0.451145261526108,0.770009517669678,-0.451168805360794,-0.743814051151276,0.667377233505249,-0.036718413233757,-0.754501342773438,0.470126539468765,0.457939654588699,-0.662973880767822,0.747727990150452,0.0369944609701633,-0.743814051151276,0.667377233505249,-0.036718413233757,-0.836270034313202,0.386960685253143,0.388476371765137,-0.623330235481262,0.0909590125083923,0.776650428771973,-0.754501342773438,0.470126539468765,0.457939654588699,-0.836270034313202,0.386960685253143,0.388476371765137,-0.703788459300995,0.00391748594120145,0.710398733615875,
- -0.304594784975052,-0.28820213675499,0.907833456993103,-0.623330235481262,0.0909590125083923,0.776650428771973,-0.703788459300995,0.00391748594120145,0.710398733615875,-0.381802827119827,-0.379061877727509,0.842934489250183,0.1163215264678,-0.565809845924377,0.816289484500885,-0.304594784975052,-0.28820213675499,0.907833456993103,-0.381802827119827,-0.379061877727509,0.842934489250183,0.0433844141662121,-0.659464359283447,0.750482797622681,0.526583015918732,-0.667406558990479,0.526572644710541,0.1163215264678,-0.565809845924377,0.816289484500885,0.0433844141662121,-0.659464359283447,0.750482797622681,0.457829982042313,-0.762098431587219,0.457818508148193,0.81628942489624,-0.565810263156891,0.116319693624973,0.526583015918732,-0.667406558990479,0.526572644710541,0.457829982042313,-0.762098431587219,0.457818508148193,0.750485956668854,-0.659460723400116,0.0433868989348412,0.907826721668243,-0.288226962089539,-0.30459126830101,0.81628942489624,-0.565810263156891,0.116319693624973,0.750485956668854,-0.659460723400116,0.0433868989348412,0.842941582202911,-0.379064947366714,-0.381784319877625,0.776644885540009,0.0909439995884895,-0.623339235782623,0.907826721668243,-0.288226962089539,-0.30459126830101,0.842941582202911,-0.379064947366714,-0.381784319877625,0.710430443286896,0.00395807810127735,-0.703756272792816,0.457904875278473,0.470136374235153,-0.754516363143921,0.776644885540009,0.0909439995884895,-0.623339235782623,0.710430443286896,0.00395807810127735,-0.703756272792816,0.388463020324707,0.386988073587418,-0.836263537406921,0.0369848497211933,0.747722029685974,-0.662981152534485,0.457904875278473,0.470136374235153,-0.754516363143921,0.388463020324707,0.386988073587418,-0.836263537406921,-0.0367213413119316,0.667376697063446,-0.743814468383789,0.0822760239243507,-0.611155688762665,0.787222564220428,-0.341622471809387,-0.331566721200943,0.879407525062561,-0.387901365756989,-0.386235922574997,0.836871802806854,0.037280734628439,-0.666714191436768,0.744380474090576,-0.341622471809387,-0.331566721200943,0.879407525062561,
- -0.662578225135803,0.0502649955451488,0.747304141521454,-0.70986008644104,-0.00327101373113692,0.70433509349823,-0.387901365756989,-0.386235922574997,0.836871802806854,-0.662578225135803,0.0502649955451488,0.747304141521454,-0.794688820838928,0.432093799114227,0.426338672637939,-0.842349112033844,0.379741579294205,0.382419258356094,-0.70986008644104,-0.00327101373113692,0.70433509349823,-0.794688820838928,0.432093799114227,0.426338672637939,-0.702523469924927,0.711656451225281,0.00241793761961162,-0.749925196170807,0.660134971141815,-0.0428243428468704,-0.842349112033844,0.379741579294205,0.382419258356094,-0.702523469924927,0.711656451225281,0.00241793761961162,-0.41076785326004,0.813974738121033,-0.410749286413193,-0.45727065205574,0.762779772281647,-0.457242339849472,-0.749925196170807,0.660134971141815,-0.0428243428468704,-0.41076785326004,0.813974738121033,-0.410749286413193,0.00240229303017259,0.711664497852325,-0.702515482902527,-0.0428374372422695,0.660160064697266,-0.749902546405792,-0.45727065205574,0.762779772281647,-0.457242339849472,0.00240229303017259,0.711664497852325,-0.702515482902527,0.426258206367493,0.432136356830597,-0.794708847999573,0.382336646318436,0.379769295454025,-0.842374086380005,-0.0428374372422695,0.660160064697266,-0.749902546405792,0.426258206367493,0.432136356830597,-0.794708847999573,0.7472904920578,0.0502439327538013,-0.662595272064209,0.704338669776917,-0.00327081233263016,-0.709856629371643,0.382336646318436,0.379769295454025,-0.842374086380005,0.7472904920578,0.0502439327538013,-0.662595272064209,0.879398226737976,-0.331650346517563,-0.341565430164337,0.836852848529816,-0.386323124170303,-0.387855172157288,0.704338669776917,-0.00327081233263016,-0.709856629371643,0.879398226737976,-0.331650346517563,-0.341565430164337,0.787214517593384,-0.611163437366486,0.0822960287332535,0.744376420974731,-0.666716635227203,0.0373184569180012,0.836852848529816,-0.386323124170303,-0.387855172157288,0.787214517593384,-0.611163437366486,0.0822960287332535,0.495438992977142,-0.713478922843933,0.495467454195023,
- 0.45171120762825,-0.76933878660202,0.451746344566345,0.744376420974731,-0.666716635227203,0.0373184569180012,0.495438992977142,-0.713478922843933,0.495467454195023,0.0822760239243507,-0.611155688762665,0.787222564220428,0.037280734628439,-0.666714191436768,0.744380474090576,0.45171120762825,-0.76933878660202,0.451746344566345,-0.45727065205574,0.762779772281647,-0.457242339849472,-0.0428374372422695,0.660160064697266,-0.749902546405792,-0.447791934013367,-0.0867055132985115,-0.889923870563507,-0.706874787807465,-0.0226435456424952,-0.706976175308228,-0.749925196170807,0.660134971141815,-0.0428243428468704,-0.45727065205574,0.762779772281647,-0.457242339849472,-0.706874787807465,-0.0226435456424952,-0.706976175308228,-0.889896512031555,-0.0868709683418274,-0.447814285755157,-0.842349112033844,0.379741579294205,0.382419258356094,-0.749925196170807,0.660134971141815,-0.0428243428468704,-0.889896512031555,-0.0868709683418274,-0.447814285755157,-0.947701632976532,-0.262211054563522,-0.181953236460686,-0.70986008644104,-0.00327101373113692,0.70433509349823,-0.842349112033844,0.379741579294205,0.382419258356094,-0.947701632976532,-0.262211054563522,-0.181953236460686,-0.864837825298309,-0.501680135726929,0.0193048994988203,-0.387901365756989,-0.386235922574997,0.836871802806854,-0.70986008644104,-0.00327101373113692,0.70433509349823,-0.864837825298309,-0.501680135726929,0.0193048994988203,-0.66357833147049,-0.741092801094055,0.102202549576759,0.037280734628439,-0.666714191436768,0.744380474090576,-0.387901365756989,-0.386235922574997,0.836871802806854,-0.66357833147049,-0.741092801094055,0.102202549576759,-0.397743374109268,-0.916421711444855,0.0444016642868519,0.45171120762825,-0.76933878660202,0.451746344566345,0.037280734628439,-0.666714191436768,0.744380474090576,-0.397743374109268,-0.916421711444855,0.0444016642868519,-0.13854643702507,-0.980607330799103,-0.138615384697914,0.744376420974731,-0.666716635227203,0.0373184569180012,0.45171120762825,-0.76933878660202,0.451746344566345,-0.13854643702507,-0.980607330799103,-0.138615384697914,
- 0.0444903299212456,-0.916447997093201,-0.397672802209854,0.836852848529816,-0.386323124170303,-0.387855172157288,0.744376420974731,-0.666716635227203,0.0373184569180012,0.0444903299212456,-0.916447997093201,-0.397672802209854,0.102461837232113,-0.741103112697601,-0.663526773452759,0.704338669776917,-0.00327081233263016,-0.709856629371643,0.836852848529816,-0.386323124170303,-0.387855172157288,0.102461837232113,-0.741103112697601,-0.663526773452759,0.019599687308073,-0.501543283462524,-0.864910483360291,0.382336646318436,0.379769295454025,-0.842374086380005,0.704338669776917,-0.00327081233263016,-0.709856629371643,0.019599687308073,-0.501543283462524,-0.864910483360291,-0.181818589568138,-0.261971026659012,-0.947793781757355,-0.0428374372422695,0.660160064697266,-0.749902546405792,0.382336646318436,0.379769295454025,-0.842374086380005,-0.181818589568138,-0.261971026659012,-0.947793781757355,-0.447791934013367,-0.0867055132985115,-0.889923870563507,0.161940440535545,-0.496515244245529,0.852788329124451,-0.259355038404465,-0.229421049356461,0.93813693523407,-0.350269109010696,-0.347945094108582,0.869623839855194,0.0784003138542175,-0.619525551795959,0.781051516532898,-0.259355038404465,-0.229421049356461,0.93813693523407,-0.582384467124939,0.136002346873283,0.801456034183502,-0.680298924446106,0.0249812994152308,0.732509016990662,-0.350269109010696,-0.347945094108582,0.869623839855194,-0.582384467124939,0.136002346873283,0.801456034183502,-0.720248520374298,0.501908838748932,0.478883564472198,-0.822281002998352,0.400102347135544,0.40468755364418,-0.680298924446106,0.0249812994152308,0.732509016990662,-0.720248520374298,0.501908838748932,0.478883564472198,-0.635595858097076,0.769923031330109,0.0568893104791641,-0.736466705799103,0.67594438791275,-0.0267544779926538,-0.822281002998352,0.400102347135544,0.40468755364418,-0.635595858097076,0.769923031330109,0.0568893104791641,-0.351082772016525,0.868040978908539,-0.351063787937164,-0.444975107908249,0.77718710899353,-0.444946348667145,-0.736466705799103,0.67594438791275,-0.0267544779926538,
- -0.351082772016525,0.868040978908539,-0.351063787937164,0.056869562715292,0.769949615001678,-0.635565519332886,-0.0267297904938459,0.675979852676392,-0.736435174942017,-0.444975107908249,0.77718710899353,-0.444946348667145,0.056869562715292,0.769949615001678,-0.635565519332886,0.478852659463882,0.501900017261505,-0.720275223255157,0.40466582775116,0.400111079216003,-0.822287499904633,-0.0267297904938459,0.675979852676392,-0.736435174942017,0.478852659463882,0.501900017261505,-0.720275223255157,0.801438689231873,0.135979115962982,-0.582413673400879,0.732523441314697,0.0249944590032101,-0.680282771587372,0.40466582775116,0.400111079216003,-0.822287499904633,0.801438689231873,0.135979115962982,-0.582413673400879,0.938125431537628,-0.229474186897278,-0.259349912405014,0.869621336460114,-0.347970217466354,-0.350250512361526,0.732523441314697,0.0249944590032101,-0.680282771587372,0.938125431537628,-0.229474186897278,-0.259349912405014,0.85278195142746,-0.496516913175583,0.161968916654587,0.781072735786438,-0.619495570659637,0.0784260183572769,0.869621336460114,-0.347970217466354,-0.350250512361526,0.85278195142746,-0.496516913175583,0.161968916654587,0.568769514560699,-0.594132900238037,0.568777084350586,0.491771548986435,-0.718545198440552,0.491786062717438,0.781072735786438,-0.619495570659637,0.0784260183572769,0.568769514560699,-0.594132900238037,0.568777084350586,0.161940440535545,-0.496515244245529,0.852788329124451,0.0784003138542175,-0.619525551795959,0.781051516532898,0.491771548986435,-0.718545198440552,0.491786062717438,-0.444975107908249,0.77718710899353,-0.444946348667145,-0.0267297904938459,0.675979852676392,-0.736435174942017,-0.482961684465408,-0.202135652303696,-0.851991355419159,-0.69920140504837,-0.148648470640183,-0.699300348758698,-0.736466705799103,0.67594438791275,-0.0267544779926538,-0.444975107908249,0.77718710899353,-0.444946348667145,-0.69920140504837,-0.148648470640183,-0.699300348758698,-0.851946592330933,-0.202259108424187,-0.482988834381104,-0.822281002998352,0.400102347135544,0.40468755364418,
- -0.736466705799103,0.67594438791275,-0.0267544779926538,-0.851946592330933,-0.202259108424187,-0.482988834381104,-0.900196194648743,-0.348520874977112,-0.261113226413727,-0.680298924446106,0.0249812994152308,0.732509016990662,-0.822281002998352,0.400102347135544,0.40468755364418,-0.900196194648743,-0.348520874977112,-0.261113226413727,-0.831088602542877,-0.548292577266693,-0.0930972844362259,-0.350269109010696,-0.347945094108582,0.869623839855194,-0.680298924446106,0.0249812994152308,0.732509016990662,-0.831088602542877,-0.548292577266693,-0.0930972844362259,-0.663104653358459,-0.748142898082733,-0.0239683631807566,0.0784003138542175,-0.619525551795959,0.781051516532898,-0.350269109010696,-0.347945094108582,0.869623839855194,-0.663104653358459,-0.748142898082733,-0.0239683631807566,-0.441234946250916,-0.89447957277298,-0.0722357332706451,0.491771548986435,-0.718545198440552,0.491786062717438,0.0784003138542175,-0.619525551795959,0.781051516532898,-0.441234946250916,-0.89447957277298,-0.0722357332706451,-0.224874258041382,-0.948060989379883,-0.224970996379852,0.781072735786438,-0.619495570659637,0.0784260183572769,0.491771548986435,-0.718545198440552,0.491786062717438,-0.224874258041382,-0.948060989379883,-0.224970996379852,-0.0721122846007347,-0.894519507884979,-0.441174119710922,0.869621336460114,-0.347970217466354,-0.350250512361526,0.781072735786438,-0.619495570659637,0.0784260183572769,-0.0721122846007347,-0.894519507884979,-0.441174119710922,-0.0237865466624498,-0.748239517211914,-0.663002192974091,0.732523441314697,0.0249944590032101,-0.680282771587372,0.869621336460114,-0.347970217466354,-0.350250512361526,-0.0237865466624498,-0.748239517211914,-0.663002192974091,-0.0930336117744446,-0.548269689083099,-0.831110715866089,0.40466582775116,0.400111079216003,-0.822287499904633,0.732523441314697,0.0249944590032101,-0.680282771587372,-0.0930336117744446,-0.548269689083099,-0.831110715866089,-0.261112034320831,-0.34830704331398,-0.900279223918915,-0.0267297904938459,0.675979852676392,-0.736435174942017,0.40466582775116,0.400111079216003,-0.822287499904633,
- -0.261112034320831,-0.34830704331398,-0.900279223918915,-0.482961684465408,-0.202135652303696,-0.851991355419159,0.117425926029682,-0.576523125171661,0.808598935604095,-0.314443022012711,-0.300501763820648,0.900457859039307,-0.373619884252548,-0.385056495666504,0.843883574008942,0.0579652525484562,-0.656706988811493,0.751914858818054,-0.314443022012711,-0.300501763820648,0.900457859039307,-0.647128224372864,0.0739282518625259,0.758788347244263,-0.70954304933548,-0.0100101521238685,0.704590857028961,-0.373619884252548,-0.385056495666504,0.843883574008942,-0.647128224372864,0.0739282518625259,0.758788347244263,-0.787699341773987,0.442668855190277,0.428455293178558,-0.852743029594421,0.363655120134354,0.37494558095932,-0.70954304933548,-0.0100101521238685,0.704590857028961,-0.787699341773987,0.442668855190277,0.428455293178558,-0.702278137207031,0.711902141571045,-0.000863682013005018,-0.767674446105957,0.638235688209534,-0.0577173382043839,-0.852743029594421,0.363655120134354,0.37494558095932,-0.702278137207031,0.711902141571045,-0.000863682013005018,-0.414397418498993,0.810277879238129,-0.414396673440933,-0.476434797048569,0.7389315366745,-0.476434737443924,-0.767674446105957,0.638235688209534,-0.0577173382043839,-0.414397418498993,0.810277879238129,-0.414396673440933,-0.00088521366706118,0.711920559406281,-0.702259421348572,-0.0577383860945702,0.638253152370453,-0.767658352851868,-0.476434797048569,0.7389315366745,-0.476434737443924,-0.00088521366706118,0.711920559406281,-0.702259421348572,0.428392350673676,0.442689001560211,-0.787722229957581,0.374884516000748,0.36367467045784,-0.852761626243591,-0.0577383860945702,0.638253152370453,-0.767658352851868,0.428392350673676,0.442689001560211,-0.787722229957581,0.758760392665863,0.0738949924707413,-0.647164702415466,0.704578697681427,-0.0100305704399943,-0.70955502986908,0.374884516000748,0.36367467045784,-0.852761626243591,0.758760392665863,0.0738949924707413,-0.647164702415466,0.900443077087402,-0.300559222698212,-0.314430147409439,0.843865513801575,-0.385095685720444,-0.373620569705963,
- 0.704578697681427,-0.0100305704399943,-0.70955502986908,0.900443077087402,-0.300559222698212,-0.314430147409439,0.808590769767761,-0.576528608798981,0.117455825209618,0.751908719539642,-0.656710922718048,0.0579991824924946,0.843865513801575,-0.385095685720444,-0.373620569705963,0.808590769767761,-0.576528608798981,0.117455825209618,0.522097229957581,-0.674394905567169,0.522116839885712,0.465670794248581,-0.752519965171814,0.465687036514282,0.751908719539642,-0.656710922718048,0.0579991824924946,0.522097229957581,-0.674394905567169,0.522116839885712,0.117425926029682,-0.576523125171661,0.808598935604095,0.0579652525484562,-0.656706988811493,0.751914858818054,0.465670794248581,-0.752519965171814,0.465687036514282,-0.476434797048569,0.7389315366745,-0.476434737443924,-0.0577383860945702,0.638253152370453,-0.767658352851868,-0.394017785787582,0.0585869811475277,-0.91723358631134,-0.700676739215851,0.134520813822746,-0.700682699680328,-0.767674446105957,0.638235688209534,-0.0577173382043839,-0.476434797048569,0.7389315366745,-0.476434737443924,-0.700676739215851,0.134520813822746,-0.700682699680328,-0.917249023914337,0.0586189106106758,-0.393977254629135,-0.852743029594421,0.363655120134354,0.37494558095932,-0.767674446105957,0.638235688209534,-0.0577173382043839,-0.917249023914337,0.0586189106106758,-0.393977254629135,-0.985659301280975,-0.148898527026176,-0.0794047713279724,-0.70954304933548,-0.0100101521238685,0.704590857028961,-0.852743029594421,0.363655120134354,0.37494558095932,-0.985659301280975,-0.148898527026176,-0.0794047713279724,-0.887600183486938,-0.432361304759979,0.158838167786598,-0.373619884252548,-0.385056495666504,0.843883574008942,-0.70954304933548,-0.0100101521238685,0.704590857028961,-0.887600183486938,-0.432361304759979,0.158838167786598,-0.644982874393463,-0.717103004455566,0.264121830463409,0.0579652525484562,-0.656706988811493,0.751914858818054,-0.373619884252548,-0.385056495666504,0.843883574008942,-0.644982874393463,-0.717103004455566,0.264121830463409,-0.310810297727585,-0.926044464111328,0.214099362492561,
- 0.465670794248581,-0.752519965171814,0.465687036514282,0.0579652525484562,-0.656706988811493,0.751914858818054,-0.310810297727585,-0.926044464111328,0.214099362492561,0.00513854157179594,-0.99997341632843,0.00515577523037791,0.751908719539642,-0.656710922718048,0.0579991824924946,0.465670794248581,-0.752519965171814,0.465687036514282,0.00513854157179594,-0.99997341632843,0.00515577523037791,0.214072719216347,-0.926055192947388,-0.310796797275543,0.843865513801575,-0.385095685720444,-0.373620569705963,0.751908719539642,-0.656710922718048,0.0579991824924946,0.214072719216347,-0.926055192947388,-0.310796797275543,0.264260977506638,-0.717036843299866,-0.644999504089355,0.704578697681427,-0.0100305704399943,-0.70955502986908,0.843865513801575,-0.385095685720444,-0.373620569705963,0.264260977506638,-0.717036843299866,-0.644999504089355,0.159006342291832,-0.43227630853653,-0.887611508369446,0.374884516000748,0.36367467045784,-0.852761626243591,0.704578697681427,-0.0100305704399943,-0.70955502986908,0.159006342291832,-0.43227630853653,-0.887611508369446,-0.079288475215435,-0.148844763636589,-0.985676765441895,-0.0577383860945702,0.638253152370453,-0.767658352851868,0.374884516000748,0.36367467045784,-0.852761626243591,-0.079288475215435,-0.148844763636589,-0.985676765441895,-0.394017785787582,0.0585869811475277,-0.91723358631134,0.0805400088429451,-0.619466006755829,0.780880987644196,-0.331298559904099,-0.330485016107559,0.883753836154938,-0.388097584247589,-0.375911295413971,0.841469585895538,0.0295615531504154,-0.670435011386871,0.741379141807556,-0.331298559904099,-0.330485016107559,0.883753836154938,-0.638274848461151,0.0657120794057846,0.766998827457428,-0.695595622062683,0.0236017573624849,0.718045711517334,-0.388097584247589,-0.375911295413971,0.841469585895538,-0.638274848461151,0.0657120794057846,0.766998827457428,-0.75712251663208,0.462845027446747,0.461020708084106,-0.811440050601959,0.419500738382339,0.406920284032822,-0.695595622062683,0.0236017573624849,0.718045711517334,-0.75712251663208,0.462845027446747,0.461020708084106,
- -0.655398488044739,0.7537562251091,0.048004150390625,-0.707488238811493,0.706691920757294,-0.0068590953014791,-0.811440050601959,0.419500738382339,0.406920284032822,-0.655398488044739,0.7537562251091,0.048004150390625,-0.360626548528671,0.860171139240265,-0.360630184412003,-0.413520395755768,0.811170041561127,-0.413526117801666,-0.707488238811493,0.706691920757294,-0.0068590953014791,-0.360626548528671,0.860171139240265,-0.360630184412003,0.0479933470487595,0.753773093223572,-0.655379772186279,-0.00687564723193645,0.706703126430511,-0.707476735115051,-0.413520395755768,0.811170041561127,-0.413526117801666,0.0479933470487595,0.753773093223572,-0.655379772186279,0.461007744073868,0.462850451469421,-0.757127046585083,0.40691089630127,0.419501185417175,-0.811444520950317,-0.00687564723193645,0.706703126430511,-0.707476735115051,0.461007744073868,0.462850451469421,-0.757127046585083,0.76700359582901,0.0657032430171967,-0.63826996088028,0.718066096305847,0.0236270967870951,-0.695573806762695,0.40691089630127,0.419501185417175,-0.811444520950317,0.76700359582901,0.0657032430171967,-0.63826996088028,0.883751690387726,-0.330482453107834,-0.331307083368301,0.841464281082153,-0.37592414021492,-0.388096690177917,0.718066096305847,0.0236270967870951,-0.695573806762695,0.883751690387726,-0.330482453107834,-0.331307083368301,0.780866920948029,-0.619478523731232,0.0805799439549446,0.741366326808929,-0.670448184013367,0.0295830499380827,0.841464281082153,-0.37592414021492,-0.388096690177917,0.780866920948029,-0.619478523731232,0.0805799439549446,0.487077325582504,-0.724918246269226,0.487082302570343,0.443756729364395,-0.778561532497406,0.443758934736252,0.741366326808929,-0.670448184013367,0.0295830499380827,0.487077325582504,-0.724918246269226,0.487082302570343,0.0805400088429451,-0.619466006755829,0.780880987644196,0.0295615531504154,-0.670435011386871,0.741379141807556,0.443756729364395,-0.778561532497406,0.443758934736252,-0.413520395755768,0.811170041561127,-0.413526117801666,-0.00687564723193645,0.706703126430511,-0.707476735115051,
- -0.412065118551254,0.0128986267372966,-0.911063134670258,-0.704528748989105,0.0853764191269875,-0.704521358013153,-0.707488238811493,0.706691920757294,-0.0068590953014791,-0.413520395755768,0.811170041561127,-0.413526117801666,-0.704528748989105,0.0853764191269875,-0.704521358013153,-0.911101758480072,0.012966088950634,-0.411977261304855,-0.811440050601959,0.419500738382339,0.406920284032822,-0.707488238811493,0.706691920757294,-0.0068590953014791,-0.911101758480072,0.012966088950634,-0.411977261304855,-0.976322054862976,-0.185056984424591,-0.112023070454597,-0.695595622062683,0.0236017573624849,0.718045711517334,-0.811440050601959,0.419500738382339,0.406920284032822,-0.976322054862976,-0.185056984424591,-0.112023070454597,-0.882791221141815,-0.45543161034584,0.115159638226032,-0.388097584247589,-0.375911295413971,0.841469585895538,-0.695595622062683,0.0236017573624849,0.718045711517334,-0.882791221141815,-0.45543161034584,0.115159638226032,-0.655519008636475,-0.725740373134613,0.208796113729477,0.0295615531504154,-0.670435011386871,0.741379141807556,-0.388097584247589,-0.375911295413971,0.841469585895538,-0.655519008636475,-0.725740373134613,0.208796113729477,-0.35543492436409,-0.923589944839478,0.143693163990974,0.443756729364395,-0.778561532497406,0.443758934736252,0.0295615531504154,-0.670435011386871,0.741379141807556,-0.35543492436409,-0.923589944839478,0.143693163990974,-0.0629240646958351,-0.99603271484375,-0.0629238188266754,0.741366326808929,-0.670448184013367,0.0295830499380827,0.443756729364395,-0.778561532497406,0.443758934736252,-0.0629240646958351,-0.99603271484375,-0.0629238188266754,0.143544346094131,-0.923610627651215,-0.35544091463089,0.841464281082153,-0.37592414021492,-0.388096690177917,0.741366326808929,-0.670448184013367,0.0295830499380827,0.143544346094131,-0.923610627651215,-0.35544091463089,0.208946704864502,-0.725694596767426,-0.655521750450134,0.718066096305847,0.0236270967870951,-0.695573806762695,0.841464281082153,-0.37592414021492,-0.388096690177917,0.208946704864502,-0.725694596767426,-0.655521750450134,
- 0.115522302687168,-0.455246210098267,-0.882839441299438,0.40691089630127,0.419501185417175,-0.811444520950317,0.718066096305847,0.0236270967870951,-0.695573806762695,0.115522302687168,-0.455246210098267,-0.882839441299438,-0.11186783015728,-0.184896439313889,-0.976370215415955,-0.00687564723193645,0.706703126430511,-0.707476735115051,0.40691089630127,0.419501185417175,-0.811444520950317,-0.11186783015728,-0.184896439313889,-0.976370215415955,-0.412065118551254,0.0128986267372966,-0.911063134670258,0.138821095228195,-0.534156620502472,0.833909749984741,-0.279100477695465,-0.258508890867233,0.92481142282486,-0.375581115484238,-0.371723800897598,0.848976075649261,0.0495404824614525,-0.652090787887573,0.756520509719849,-0.279100477695465,-0.258508890867233,0.92481142282486,-0.595607578754425,0.118045225739479,0.794554471969604,-0.697536051273346,0.0112422732636333,0.716461479663849,-0.375581115484238,-0.371723800897598,0.848976075649261,-0.595607578754425,0.118045225739479,0.794554471969604,-0.725882112979889,0.494541943073273,0.478041231632233,-0.830009520053864,0.394219130277634,0.394557058811188,-0.697536051273346,0.0112422732636333,0.716461479663849,-0.725882112979889,0.494541943073273,0.478041231632233,-0.635031580924988,0.770144522190094,0.060100756585598,-0.73757803440094,0.674570143222809,-0.0305565744638443,-0.830009520053864,0.394219130277634,0.394557058811188,-0.635031580924988,0.770144522190094,0.060100756585598,-0.34732112288475,0.871055364608765,-0.347319215536118,-0.444936543703079,0.777211844921112,-0.444941788911819,-0.73757803440094,0.674570143222809,-0.0305565744638443,-0.34732112288475,0.871055364608765,-0.347319215536118,0.0600786209106445,0.770161211490631,-0.63501363992691,-0.0305575989186764,0.674593269824982,-0.737556934356689,-0.444936543703079,0.777211844921112,-0.444941788911819,0.0600786209106445,0.770161211490631,-0.63501363992691,0.477965801954269,0.494546085596085,-0.725928962230682,0.39450940489769,0.394255638122559,-0.830015063285828,-0.0305575989186764,0.674593269824982,-0.737556934356689,
- 0.477965801954269,0.494546085596085,-0.725928962230682,0.79452508687973,0.11797646433115,-0.595660507678986,0.716470003128052,0.0112277967855334,-0.697527587413788,0.39450940489769,0.394255638122559,-0.830015063285828,0.79452508687973,0.11797646433115,-0.595660507678986,0.924792528152466,-0.25858861207962,-0.279089063405991,0.84897792339325,-0.371762037277222,-0.37553882598877,0.716470003128052,0.0112277967855334,-0.697527587413788,0.924792528152466,-0.25858861207962,-0.279089063405991,0.833912312984467,-0.534149527549744,0.1388328820467,0.756534934043884,-0.65207314491272,0.049553707242012,0.84897792339325,-0.371762037277222,-0.37553882598877,0.833912312984467,-0.534149527549744,0.1388328820467,0.546224176883698,-0.635037481784821,0.546229422092438,0.463916778564453,-0.754692435264587,0.463918566703796,0.756534934043884,-0.65207314491272,0.049553707242012,0.546224176883698,-0.635037481784821,0.546229422092438,0.138821095228195,-0.534156620502472,0.833909749984741,0.0495404824614525,-0.652090787887573,0.756520509719849,0.463916778564453,-0.754692435264587,0.463918566703796,-0.444936543703079,0.777211844921112,-0.444941788911819,-0.0305575989186764,0.674593269824982,-0.737556934356689,-0.45700278878212,-0.114898033440113,-0.882012963294983,-0.706108689308167,-0.0532073155045509,-0.706101655960083,-0.73757803440094,0.674570143222809,-0.0305565744638443,-0.444936543703079,0.777211844921112,-0.444941788911819,-0.706108689308167,-0.0532073155045509,-0.706101655960083,-0.882032513618469,-0.114862777292728,-0.456973940134048,-0.830009520053864,0.394219130277634,0.394557058811188,-0.73757803440094,0.674570143222809,-0.0305565744638443,-0.882032513618469,-0.114862777292728,-0.456973940134048,-0.937552392482758,-0.283497035503387,-0.201556384563446,-0.697536051273346,0.0112422732636333,0.716461479663849,-0.830009520053864,0.394219130277634,0.394557058811188,-0.937552392482758,-0.283497035503387,-0.201556384563446,-0.857868850231171,-0.51380455493927,-0.00811703223735094,-0.375581115484238,-0.371723800897598,0.848976075649261,
- -0.697536051273346,0.0112422732636333,0.716461479663849,-0.857868850231171,-0.51380455493927,-0.00811703223735094,-0.664349019527435,-0.743980467319489,0.0716479942202568,0.0495404824614525,-0.652090787887573,0.756520509719849,-0.375581115484238,-0.371723800897598,0.848976075649261,-0.664349019527435,-0.743980467319489,0.0716479942202568,-0.408830553293228,-0.912465631961823,0.0162481870502234,0.463916778564453,-0.754692435264587,0.463918566703796,0.0495404824614525,-0.652090787887573,0.756520509719849,-0.408830553293228,-0.912465631961823,0.0162481870502234,-0.159702971577644,-0.974161684513092,-0.159699350595474,0.756534934043884,-0.65207314491272,0.049553707242012,0.463916778564453,-0.754692435264587,0.463918566703796,-0.159702971577644,-0.974161684513092,-0.159699350595474,0.0162030570209026,-0.912469625473022,-0.40882334113121,0.84897792339325,-0.371762037277222,-0.37553882598877,0.756534934043884,-0.65207314491272,0.049553707242012,0.0162030570209026,-0.912469625473022,-0.40882334113121,0.0718299597501755,-0.743981540203094,-0.664328098297119,0.716470003128052,0.0112277967855334,-0.697527587413788,0.84897792339325,-0.371762037277222,-0.37553882598877,0.0718299597501755,-0.743981540203094,-0.664328098297119,-0.00789822172373533,-0.513700127601624,-0.857933521270752,0.39450940489769,0.394255638122559,-0.830015063285828,0.716470003128052,0.0112277967855334,-0.697527587413788,-0.00789822172373533,-0.513700127601624,-0.857933521270752,-0.201450824737549,-0.283354789018631,-0.937618017196655,-0.0305575989186764,0.674593269824982,-0.737556934356689,0.39450940489769,0.394255638122559,-0.830015063285828,-0.201450824737549,-0.283354789018631,-0.937618017196655,-0.45700278878212,-0.114898033440113,-0.882012963294983,0.0182287450879812,-0.612728953361511,0.790082812309265,-0.352261751890183,-0.355287492275238,0.86584210395813,-0.394717961549759,-0.377436935901642,0.837698698043823,-0.0155238946899772,-0.643042325973511,0.765673339366913,-0.352261751890183,-0.355287492275238,0.86584210395813,-0.66057151556015,0.0419938005506992,0.749587714672089,
- -0.70937716960907,0.0130294524133205,0.704708695411682,-0.394717961549759,-0.377436935901642,0.837698698043823,-0.66057151556015,0.0419938005506992,0.749587714672089,-0.780537068843842,0.441008895635605,0.4430271089077,-0.831650078296661,0.399449318647385,0.385743916034698,-0.70937716960907,0.0130294524133205,0.704708695411682,-0.780537068843842,0.441008895635605,0.4430271089077,-0.678798377513886,0.733780980110168,0.0282558649778366,-0.732653856277466,0.679811716079712,-0.0327768437564373,-0.831650078296661,0.399449318647385,0.385743916034698,-0.678798377513886,0.733780980110168,0.0282558649778366,-0.382584244012833,0.840984702110291,-0.382588386535645,-0.440819025039673,0.781889796257019,-0.440825045108795,-0.732653856277466,0.679811716079712,-0.0327768437564373,-0.382584244012833,0.840984702110291,-0.382588386535645,0.028240567073226,0.733789265155792,-0.678789913654327,-0.0327944532036781,0.679826200008392,-0.732639670372009,-0.440819025039673,0.781889796257019,-0.440825045108795,0.028240567073226,0.733789265155792,-0.678789913654327,0.442958384752274,0.441048949956894,-0.780553340911865,0.385687708854675,0.399477541446686,-0.831662595272064,-0.0327944532036781,0.679826200008392,-0.732639670372009,0.442958384752274,0.441048949956894,-0.780553340911865,0.749572694301605,0.0419656373560429,-0.660590350627899,0.704702138900757,0.0130371423438191,-0.709383487701416,0.385687708854675,0.399477541446686,-0.831662595272064,0.749572694301605,0.0419656373560429,-0.660590350627899,0.865829885005951,-0.355343699455261,-0.352234899997711,0.837695300579071,-0.377488553524017,-0.394675821065903,0.704702138900757,0.0130371423438191,-0.709383487701416,0.865829885005951,-0.355343699455261,-0.352234899997711,0.790075600147247,-0.612737476825714,0.018258661031723,0.765664994716644,-0.643052875995636,-0.0154969552531838,0.837695300579071,-0.377488553524017,-0.394675821065903,0.790075600147247,-0.612737476825714,0.018258661031723,0.482423007488251,-0.731112360954285,0.482434153556824,0.454945474863052,-0.765533149242401,0.454954534769058,
- 0.765664994716644,-0.643052875995636,-0.0154969552531838,0.482423007488251,-0.731112360954285,0.482434153556824,0.0182287450879812,-0.612728953361511,0.790082812309265,-0.0155238946899772,-0.643042325973511,0.765673339366913,0.454945474863052,-0.765533149242401,0.454954534769058,-0.440819025039673,0.781889796257019,-0.440825045108795,-0.0327944532036781,0.679826200008392,-0.732639670372009,-0.457337498664856,-0.153456881642342,-0.875952780246735,-0.702554941177368,-0.113200522959232,-0.702568233013153,-0.732653856277466,0.679811716079712,-0.0327768437564373,-0.440819025039673,0.781889796257019,-0.440825045108795,-0.702554941177368,-0.113200522959232,-0.702568233013153,-0.875964105129242,-0.153432250022888,-0.457324385643005,-0.831650078296661,0.399449318647385,0.385743916034698,-0.732653856277466,0.679811716079712,-0.0327768437564373,-0.875964105129242,-0.153432250022888,-0.457324385643005,-0.947424232959747,-0.276362508535385,-0.161279618740082,-0.70937716960907,0.0130294524133205,0.704708695411682,-0.831650078296661,0.399449318647385,0.385743916034698,-0.947424232959747,-0.276362508535385,-0.161279618740082,-0.866962194442749,-0.477282881736755,0.143449366092682,-0.394717961549759,-0.377436935901642,0.837698698043823,-0.70937716960907,0.0130294524133205,0.704708695411682,-0.866962194442749,-0.477282881736755,0.143449366092682,-0.598621189594269,-0.714807510375977,0.361528784036636,-0.0155238946899772,-0.643042325973511,0.765673339366913,-0.394717961549759,-0.377436935901642,0.837698698043823,-0.598621189594269,-0.714807510375977,0.361528784036636,-0.31102180480957,-0.905154645442963,0.289759635925293,0.454945474863052,-0.765533149242401,0.454954534769058,-0.0155238946899772,-0.643042325973511,0.765673339366913,-0.31102180480957,-0.905154645442963,0.289759635925293,-0.0127277001738548,-0.999838054180145,-0.0127245876938105,0.765664994716644,-0.643052875995636,-0.0154969552531838,0.454945474863052,-0.765533149242401,0.454954534769058,-0.0127277001738548,-0.999838054180145,-0.0127245876938105,0.289631932973862,-0.905189156532288,-0.311040252447128,
- 0.837695300579071,-0.377488553524017,-0.394675821065903,0.765664994716644,-0.643052875995636,-0.0154969552531838,0.289631932973862,-0.905189156532288,-0.311040252447128,0.36169308423996,-0.71473354101181,-0.598610043525696,0.704702138900757,0.0130371423438191,-0.709383487701416,0.837695300579071,-0.377488553524017,-0.394675821065903,0.36169308423996,-0.71473354101181,-0.598610043525696,0.143794178962708,-0.477172136306763,-0.866966068744659,0.385687708854675,0.399477541446686,-0.831662595272064,0.704702138900757,0.0130371423438191,-0.709383487701416,0.143794178962708,-0.477172136306763,-0.866966068744659,-0.161155462265015,-0.276217401027679,-0.947487711906433,-0.0327944532036781,0.679826200008392,-0.732639670372009,0.385687708854675,0.399477541446686,-0.831662595272064,-0.161155462265015,-0.276217401027679,-0.947487711906433,-0.457337498664856,-0.153456881642342,-0.875952780246735,0.118047796189785,-0.562513768672943,0.818317234516144,-0.304481834173203,-0.286446660757065,0.908426761627197,-0.3829645216465,-0.374748319387436,0.844335198402405,0.0531242340803146,-0.644405484199524,0.762836515903473,-0.304481834173203,-0.286446660757065,0.908426761627197,-0.625209629535675,0.0905266329646111,0.775188863277435,-0.717043161392212,-0.00711896223947406,0.69699239730835,-0.3829645216465,-0.374748319387436,0.844335198402405,-0.625209629535675,0.0905266329646111,0.775188863277435,-0.758311867713928,0.467427313327789,0.454395115375519,-0.860129237174988,0.359618604183197,0.361735016107559,-0.717043161392212,-0.00711896223947406,0.69699239730835,-0.758311867713928,0.467427313327789,0.454395115375519,-0.668152272701263,0.743338644504547,0.0319386571645737,-0.775485217571259,0.627328336238861,-0.0712877959012985,-0.860129237174988,0.359618604183197,0.361735016107559,-0.668152272701263,0.743338644504547,0.0319386571645737,-0.378911167383194,0.844306826591492,-0.378909379243851,-0.486931443214417,0.725117146968842,-0.486931949853897,-0.775485217571259,0.627328336238861,-0.0712877959012985,-0.378911167383194,0.844306826591492,-0.378909379243851,
- 0.0319138877093792,0.743341028690338,-0.668150961399078,-0.0713248029351234,0.627337217330933,-0.775474548339844,-0.486931443214417,0.725117146968842,-0.486931949853897,0.0319138877093792,0.743341028690338,-0.668150961399078,0.454294443130493,0.467476040124893,-0.758342087268829,0.361640363931656,0.359635770320892,-0.860161900520325,-0.0713248029351234,0.627337217330933,-0.775474548339844,0.454294443130493,0.467476040124893,-0.758342087268829,0.775168716907501,0.0904957205057144,-0.625239014625549,0.696970522403717,-0.0071490271948278,-0.717064082622528,0.361640363931656,0.359635770320892,-0.860161900520325,0.775168716907501,0.0904957205057144,-0.625239014625549,0.908416926860809,-0.286542624235153,-0.304420471191406,0.844308495521545,-0.374840974807739,-0.382932662963867,0.696970522403717,-0.0071490271948278,-0.717064082622528,0.908416926860809,-0.286542624235153,-0.304420471191406,0.818302273750305,-0.562530934810638,0.118069238960743,0.762812077999115,-0.644431054592133,0.0531626790761948,0.844308495521545,-0.374840974807739,-0.382932662963867,0.818302273750305,-0.562530934810638,0.118069238960743,0.529010236263275,-0.663544833660126,0.529014647006989,0.473140418529511,-0.743151545524597,0.47314241528511,0.762812077999115,-0.644431054592133,0.0531626790761948,0.529010236263275,-0.663544833660126,0.529014647006989,0.118047796189785,-0.562513768672943,0.818317234516144,0.0531242340803146,-0.644405484199524,0.762836515903473,0.473140418529511,-0.743151545524597,0.47314241528511,-0.486931443214417,0.725117146968842,-0.486931949853897,-0.0713248029351234,0.627337217330933,-0.775474548339844,-0.488149285316467,-0.248751401901245,-0.836560249328613,-0.691229224205017,-0.210688233375549,-0.691239893436432,-0.775485217571259,0.627328336238861,-0.0712877959012985,-0.486931443214417,0.725117146968842,-0.486931949853897,-0.691229224205017,-0.210688233375549,-0.691239893436432,-0.836580097675323,-0.248747304081917,-0.488117307424545,-0.860129237174988,0.359618604183197,0.361735016107559,-0.775485217571259,0.627328336238861,-0.0712877959012985,
- -0.836580097675323,-0.248747304081917,-0.488117307424545,-0.896942794322968,-0.362341612577438,-0.253381490707397,-0.717043161392212,-0.00711896223947406,0.69699239730835,-0.860129237174988,0.359618604183197,0.361735016107559,-0.896942794322968,-0.362341612577438,-0.253381490707397,-0.839597582817078,-0.542506575584412,-0.0276150722056627,-0.3829645216465,-0.374748319387436,0.844335198402405,-0.717043161392212,-0.00711896223947406,0.69699239730835,-0.839597582817078,-0.542506575584412,-0.0276150722056627,-0.645228743553162,-0.754297733306885,0.121305145323277,0.0531242340803146,-0.644405484199524,0.762836515903473,-0.3829645216465,-0.374748319387436,0.844335198402405,-0.645228743553162,-0.754297733306885,0.121305145323277,-0.350432217121124,-0.929049551486969,0.118592351675034,0.473140418529511,-0.743151545524597,0.47314241528511,0.0531242340803146,-0.644405484199524,0.762836515903473,-0.350432217121124,-0.929049551486969,0.118592351675034,-0.0584055222570896,-0.996582865715027,-0.0584059245884418,0.762812077999115,-0.644431054592133,0.0531626790761948,0.473140418529511,-0.743151545524597,0.47314241528511,-0.0584055222570896,-0.996582865715027,-0.0584059245884418,0.118558034300804,-0.929063022136688,-0.350408226251602,0.844308495521545,-0.374840974807739,-0.382932662963867,0.762812077999115,-0.644431054592133,0.0531626790761948,0.118558034300804,-0.929063022136688,-0.350408226251602,0.12123254686594,-0.75427508354187,-0.645268797874451,0.696970522403717,-0.0071490271948278,-0.717064082622528,0.844308495521545,-0.374840974807739,-0.382932662963867,0.12123254686594,-0.75427508354187,-0.645268797874451,-0.0276265144348145,-0.542498469352722,-0.83960235118866,0.361640363931656,0.359635770320892,-0.860161900520325,0.696970522403717,-0.0071490271948278,-0.717064082622528,-0.0276265144348145,-0.542498469352722,-0.83960235118866,-0.253371894359589,-0.36238768696785,-0.896926820278168,-0.0713248029351234,0.627337217330933,-0.775474548339844,0.361640363931656,0.359635770320892,-0.860161900520325,-0.253371894359589,-0.36238768696785,-0.896926820278168,
- -0.488149285316467,-0.248751401901245,-0.836560249328613,0.0974370539188385,-0.591310501098633,0.800535976886749,-0.325336217880249,-0.312488675117493,0.892472505569458,-0.368880391120911,-0.36376091837883,0.855339229106903,0.0561385191977024,-0.644057095050812,0.762914776802063,-0.325336217880249,-0.312488675117493,0.892472505569458,-0.64548248052597,0.0683481991291046,0.760710716247559,-0.690724432468414,0.0190518591552973,0.722867131233215,-0.368880391120911,-0.36376091837883,0.855339229106903,-0.64548248052597,0.0683481991291046,0.760710716247559,-0.777242124080658,0.44921287894249,0.440570652484894,-0.823161482810974,0.401936262845993,0.401064068078995,-0.690724432468414,0.0190518591552973,0.722867131233215,-0.777242124080658,0.44921287894249,0.440570652484894,-0.685299515724182,0.728044390678406,0.0177744496613741,-0.730729579925537,0.682245850563049,-0.0239788331091404,-0.823161482810974,0.401936262845993,0.401064068078995,-0.685299515724182,0.728044390678406,0.0177744496613741,-0.39429572224617,0.830098032951355,-0.39429447054863,-0.43820121884346,0.784832000732422,-0.438198953866959,-0.730729579925537,0.682245850563049,-0.0239788331091404,-0.39429572224617,0.830098032951355,-0.39429447054863,0.0177713893353939,0.728052318096161,-0.685291230678558,-0.0239691250026226,0.682253122329712,-0.730723023414612,-0.43820121884346,0.784832000732422,-0.438198953866959,0.0177713893353939,0.728052318096161,-0.685291230678558,0.440569460391998,0.449218839406967,-0.777239322662354,0.401055157184601,0.401964068412781,-0.823152422904968,-0.0239691250026226,0.682253122329712,-0.730723023414612,0.440569460391998,0.449218839406967,-0.777239322662354,0.760711908340454,0.0683762803673744,-0.645478188991547,0.722893714904785,0.0191063471138477,-0.690694987773895,0.401055157184601,0.401964068412781,-0.823152422904968,0.760711908340454,0.0683762803673744,-0.645478188991547,0.892475306987762,-0.312470227479935,-0.325346142053604,0.855346322059631,-0.363751471042633,-0.368873178958893,0.722893714904785,0.0191063471138477,-0.690694987773895,
- 0.892475306987762,-0.312470227479935,-0.325346142053604,0.800529420375824,-0.591315269470215,0.0974632054567337,0.762915253639221,-0.644055306911469,0.0561541020870209,0.855346322059631,-0.363751471042633,-0.368873178958893,0.800529420375824,-0.591315269470215,0.0974632054567337,0.509537935256958,-0.693354308605194,0.509539842605591,0.470398306846619,-0.746626496315002,0.470397889614105,0.762915253639221,-0.644055306911469,0.0561541020870209,0.509537935256958,-0.693354308605194,0.509539842605591,0.0974370539188385,-0.591310501098633,0.800535976886749,0.0561385191977024,-0.644057095050812,0.762914776802063,0.470398306846619,-0.746626496315002,0.470397889614105,-0.43820121884346,0.784832000732422,-0.438198953866959,-0.0239691250026226,0.682253122329712,-0.730723023414612,-0.411995768547058,0.0129011869430542,-0.911094486713409,-0.704528868198395,0.0853246822953224,-0.704527318477631,-0.730729579925537,0.682245850563049,-0.0239788331091404,-0.43820121884346,0.784832000732422,-0.438198953866959,-0.704528868198395,0.0853246822953224,-0.704527318477631,-0.911108613014221,0.0129105905070901,-0.41196396946907,-0.823161482810974,0.401936262845993,0.401064068078995,-0.730729579925537,0.682245850563049,-0.0239788331091404,-0.911108613014221,0.0129105905070901,-0.41196396946907,-0.976326942443848,-0.185033991932869,-0.112017758190632,-0.690724432468414,0.0190518591552973,0.722867131233215,-0.823161482810974,0.401936262845993,0.401064068078995,-0.976326942443848,-0.185033991932869,-0.112017758190632,-0.882807731628418,-0.45539391040802,0.115182258188725,-0.368880391120911,-0.36376091837883,0.855339229106903,-0.690724432468414,0.0190518591552973,0.722867131233215,-0.882807731628418,-0.45539391040802,0.115182258188725,-0.655547261238098,-0.725724995136261,0.208760902285576,0.0561385191977024,-0.644057095050812,0.762914776802063,-0.368880391120911,-0.36376091837883,0.855339229106903,-0.655547261238098,-0.725724995136261,0.208760902285576,-0.355466902256012,-0.923585474491119,0.143642351031303,0.470398306846619,-0.746626496315002,0.470397889614105,
- 0.0561385191977024,-0.644057095050812,0.762914776802063,-0.355466902256012,-0.923585474491119,0.143642351031303,-0.0629406645894051,-0.996030688285828,-0.0629394054412842,0.762915253639221,-0.644055306911469,0.0561541020870209,0.470398306846619,-0.746626496315002,0.470397889614105,-0.0629406645894051,-0.996030688285828,-0.0629394054412842,0.143570587038994,-0.923599123954773,-0.355460375547409,0.855346322059631,-0.363751471042633,-0.368873178958893,0.762915253639221,-0.644055306911469,0.0561541020870209,0.143570587038994,-0.923599123954773,-0.355460375547409,0.208926975727081,-0.725689291954041,-0.655533850193024,0.722893714904785,0.0191063471138477,-0.690694987773895,0.855346322059631,-0.363751471042633,-0.368873178958893,0.208926975727081,-0.725689291954041,-0.655533850193024,0.115442790091038,-0.455250829458237,-0.882847487926483,0.401055157184601,0.401964068412781,-0.823152422904968,0.722893714904785,0.0191063471138477,-0.690694987773895,0.115442790091038,-0.455250829458237,-0.882847487926483,-0.111865870654583,-0.184863239526749,-0.976376831531525,-0.0239691250026226,0.682253122329712,-0.730723023414612,0.401055157184601,0.401964068412781,-0.823152422904968,-0.111865870654583,-0.184863239526749,-0.976376831531525,-0.411995768547058,0.0129011869430542,-0.911094486713409,0.0970110818743706,-0.592999160289764,0.799337685108185,-0.323432624340057,-0.312356173992157,0.893210530281067,-0.381817787885666,-0.377102583646774,0.843806147575378,0.0419046059250832,-0.660165131092072,0.749950706958771,-0.323432624340057,-0.312356173992157,0.893210530281067,-0.64089572429657,0.0712044984102249,0.764318466186523,-0.701084315776825,0.00902004260569811,0.713021159172058,-0.381817787885666,-0.377102583646774,0.843806147575378,-0.64089572429657,0.0712044984102249,0.764318466186523,-0.770209968090057,0.454936355352402,0.447000473737717,-0.830518543720245,0.394566029310226,0.393136948347092,-0.701084315776825,0.00902004260569811,0.713021159172058,-0.770209968090057,0.454936355352402,0.447000473737717,-0.676572382450104,0.735906004905701,0.0263091735541821,
- -0.735958516597748,0.676365971565247,-0.0299042332917452,-0.830518543720245,0.394566029310226,0.393136948347092,-0.676572382450104,0.735906004905701,0.0263091735541821,-0.385000050067902,0.838778018951416,-0.385001748800278,-0.442988127470016,0.779435515403748,-0.442991733551025,-0.735958516597748,0.676365971565247,-0.0299042332917452,-0.385000050067902,0.838778018951416,-0.385001748800278,0.0263017360121012,0.735903680324554,-0.676575243473053,-0.0299120508134365,0.676370680332184,-0.735953867435455,-0.442988127470016,0.779435515403748,-0.442991733551025,0.0263017360121012,0.735903680324554,-0.676575243473053,0.446949809789658,0.454933226108551,-0.770241379737854,0.393104821443558,0.394580453634262,-0.830526828765869,-0.0299120508134365,0.676370680332184,-0.735953867435455,0.446949809789658,0.454933226108551,-0.770241379737854,0.764288425445557,0.071172870695591,-0.640935063362122,0.713018357753754,0.00902991276234388,-0.701087176799774,0.393104821443558,0.394580453634262,-0.830526828765869,0.764288425445557,0.071172870695591,-0.640935063362122,0.893192887306213,-0.312405318021774,-0.323433697223663,0.843800365924835,-0.377134919166565,-0.381798446178436,0.713018357753754,0.00902991276234388,-0.701087176799774,0.893192887306213,-0.312405318021774,-0.323433697223663,0.799330294132233,-0.593007326126099,0.0970228686928749,0.749943435192108,-0.66017210483551,0.0419236235320568,0.843800365924835,-0.377134919166565,-0.381798446178436,0.799330294132233,-0.593007326126099,0.0970228686928749,0.507940948009491,-0.695698082447052,0.50793719291687,0.456365942955017,-0.763849258422852,0.456360042095184,0.749943435192108,-0.66017210483551,0.0419236235320568,0.507940948009491,-0.695698082447052,0.50793719291687,0.0970110818743706,-0.592999160289764,0.799337685108185,0.0419046059250832,-0.660165131092072,0.749950706958771,0.456365942955017,-0.763849258422852,0.456360042095184,-0.442988127470016,0.779435515403748,-0.442991733551025,-0.0299120508134365,0.676370680332184,-0.735953867435455,-0.456988424062729,-0.114875517785549,-0.882023394107819,
- -0.706108570098877,-0.0531903170049191,-0.706102967262268,-0.735958516597748,0.676365971565247,-0.0299042332917452,-0.442988127470016,0.779435515403748,-0.442991733551025,-0.706108570098877,-0.0531903170049191,-0.706102967262268,-0.882040977478027,-0.114866562187672,-0.456956624984741,-0.830518543720245,0.394566029310226,0.393136948347092,-0.735958516597748,0.676365971565247,-0.0299042332917452,-0.882040977478027,-0.114866562187672,-0.456956624984741,-0.937568783760071,-0.28347247838974,-0.201514586806297,-0.701084315776825,0.00902004260569811,0.713021159172058,-0.830518543720245,0.394566029310226,0.393136948347092,-0.937568783760071,-0.28347247838974,-0.201514586806297,-0.857883036136627,-0.513781309127808,-0.00809516478329897,-0.381817787885666,-0.377102583646774,0.843806147575378,-0.701084315776825,0.00902004260569811,0.713021159172058,-0.857883036136627,-0.513781309127808,-0.00809516478329897,-0.664362788200378,-0.743965566158295,0.0716740339994431,0.0419046059250832,-0.660165131092072,0.749950706958771,-0.381817787885666,-0.377102583646774,0.843806147575378,-0.664362788200378,-0.743965566158295,0.0716740339994431,-0.408855080604553,-0.912455022335052,0.0162311270833015,0.456365942955017,-0.763849258422852,0.456360042095184,0.0419046059250832,-0.660165131092072,0.749950706958771,-0.408855080604553,-0.912455022335052,0.0162311270833015,-0.15974023938179,-0.974148869514465,-0.159740537405014,0.749943435192108,-0.66017210483551,0.0419236235320568,0.456365942955017,-0.763849258422852,0.456360042095184,-0.15974023938179,-0.974148869514465,-0.159740537405014,0.0161811858415604,-0.912465751171112,-0.408832848072052,0.843800365924835,-0.377134919166565,-0.381798446178436,0.749943435192108,-0.66017210483551,0.0419236235320568,0.0161811858415604,-0.912465751171112,-0.408832848072052,0.0718634575605392,-0.743953704833984,-0.66435569524765,0.713018357753754,0.00902991276234388,-0.701087176799774,0.843800365924835,-0.377134919166565,-0.381798446178436,0.0718634575605392,-0.743953704833984,-0.66435569524765,-0.00783018115907907,-0.513648986816406,-0.857964694499969,
- 0.393104821443558,0.394580453634262,-0.830526828765869,0.713018357753754,0.00902991276234388,-0.701087176799774,-0.00783018115907907,-0.513648986816406,-0.857964694499969,-0.201382026076317,-0.283302247524261,-0.937648773193359,-0.0299120508134365,0.676370680332184,-0.735953867435455,0.393104821443558,0.394580453634262,-0.830526828765869,-0.201382026076317,-0.283302247524261,-0.937648773193359,-0.456988424062729,-0.114875517785549,-0.882023394107819,0.0938879102468491,-0.595989406108856,0.797484636306763,-0.32917457818985,-0.316953271627426,0.889485776424408,-0.394334852695465,-0.393908351659775,0.830262780189514,0.0307850074023008,-0.674314558506012,0.737802147865295,-0.32917457818985,-0.316953271627426,0.889485776424408,-0.649516522884369,0.0641366094350815,0.757637560367584,-0.716252684593201,-0.0109848212450743,0.697754621505737,-0.394334852695465,-0.393908351659775,0.830262780189514,-0.649516522884369,0.0641366094350815,0.757637560367584,-0.78137469291687,0.445232778787613,0.437288522720337,-0.848732650279999,0.371988654136658,0.375868856906891,-0.716252684593201,-0.0109848212450743,0.697754621505737,-0.78137469291687,0.445232778787613,0.437288522720337,-0.689392805099487,0.72424852848053,0.0141970561817288,-0.756308555603027,0.652355134487152,-0.0492973402142525,-0.848732650279999,0.371988654136658,0.375868856906891,-0.689392805099487,0.72424852848053,0.0141970561817288,-0.398189008235931,0.826372563838959,-0.398188233375549,-0.463681250810623,0.754982471466064,-0.463682234287262,-0.756308555603027,0.652355134487152,-0.0492973402142525,-0.398189008235931,0.826372563838959,-0.398188233375549,0.0141559978947043,0.724270820617676,-0.689370214939117,-0.0493220984935761,0.652370631694794,-0.756293594837189,-0.463681250810623,0.754982471466064,-0.463682234287262,0.0141559978947043,0.724270820617676,-0.689370214939117,0.437221080064774,0.445257246494293,-0.781398594379425,0.375793278217316,0.372003197669983,-0.848759770393372,-0.0493220984935761,0.652370631694794,-0.756293594837189,0.437221080064774,0.445257246494293,-0.781398594379425,
- 0.757610261440277,0.0641159787774086,-0.649550497531891,0.697741389274597,-0.0109920166432858,-0.716265380382538,0.375793278217316,0.372003197669983,-0.848759770393372,0.757610261440277,0.0641159787774086,-0.649550497531891,0.889475107192993,-0.317013412714005,-0.329144984483719,0.830239534378052,-0.393981426954269,-0.394310683012009,0.697741389274597,-0.0109920166432858,-0.716265380382538,0.889475107192993,-0.317013412714005,-0.329144984483719,0.797467947006226,-0.596004486083984,0.0939335823059082,0.737794280052185,-0.674322128295898,0.0308107975870371,0.830239534378052,-0.393981426954269,-0.394310683012009,0.797467947006226,-0.596004486083984,0.0939335823059082,0.506271839141846,-0.698121190071106,0.506276309490204,0.445177674293518,-0.7769376039505,0.445179551839828,0.737794280052185,-0.674322128295898,0.0308107975870371,0.506271839141846,-0.698121190071106,0.506276309490204,0.0938879102468491,-0.595989406108856,0.797484636306763,0.0307850074023008,-0.674314558506012,0.737802147865295,0.445177674293518,-0.7769376039505,0.445179551839828,-0.463681250810623,0.754982471466064,-0.463682234287262,-0.0493220984935761,0.652370631694794,-0.756293594837189,-0.4651800096035,-0.140839159488678,-0.873940467834473,-0.70475709438324,-0.0814942792057991,-0.704752504825592,-0.756308555603027,0.652355134487152,-0.0492973402142525,-0.463681250810623,0.754982471466064,-0.463682234287262,-0.70475709438324,-0.0814942792057991,-0.704752504825592,-0.873989522457123,-0.140765234827995,-0.465110242366791,-0.848732650279999,0.371988654136658,0.375868856906891,-0.756308555603027,0.652355134487152,-0.0492973402142525,-0.873989522457123,-0.140765234827995,-0.465110242366791,-0.927435696125031,-0.302924782037735,-0.219316259026527,-0.716252684593201,-0.0109848212450743,0.697754621505737,-0.848732650279999,0.371988654136658,0.375868856906891,-0.927435696125031,-0.302924782037735,-0.219316259026527,-0.850805103778839,-0.524434745311737,-0.0331488028168678,-0.394334852695465,-0.393908351659775,0.830262780189514,-0.716252684593201,-0.0109848212450743,0.697754621505737,
- -0.850805103778839,-0.524434745311737,-0.0331488028168678,-0.664609491825104,-0.745925068855286,0.0434756949543953,0.0307850074023008,-0.674314558506012,0.737802147865295,-0.394334852695465,-0.393908351659775,0.830262780189514,-0.664609491825104,-0.745925068855286,0.0434756949543953,-0.418791741132736,-0.908028066158295,-0.00992288626730442,0.445177674293518,-0.7769376039505,0.445179551839828,0.0307850074023008,-0.674314558506012,0.737802147865295,-0.418791741132736,-0.908028066158295,-0.00992288626730442,-0.179200887680054,-0.96735405921936,-0.179201066493988,0.737794280052185,-0.674322128295898,0.0308107975870371,0.445177674293518,-0.7769376039505,0.445179551839828,-0.179200887680054,-0.96735405921936,-0.179201066493988,-0.010063118301332,-0.908025443553925,-0.41879415512085,0.830239534378052,-0.393981426954269,-0.394310683012009,0.737794280052185,-0.674322128295898,0.0308107975870371,-0.010063118301332,-0.908025443553925,-0.41879415512085,0.0434792637825012,-0.745903015136719,-0.664633870124817,0.697741389274597,-0.0109920166432858,-0.716265380382538,0.830239534378052,-0.393981426954269,-0.394310683012009,0.0434792637825012,-0.745903015136719,-0.664633870124817,-0.0330518074333668,-0.524392545223236,-0.850834906101227,0.375793278217316,0.372003197669983,-0.848759770393372,0.697741389274597,-0.0109920166432858,-0.716265380382538,-0.0330518074333668,-0.524392545223236,-0.850834906101227,-0.219264566898346,-0.302920877933502,-0.927449107170105,-0.0493220984935761,0.652370631694794,-0.756293594837189,0.375793278217316,0.372003197669983,-0.848759770393372,-0.219264566898346,-0.302920877933502,-0.927449107170105,-0.4651800096035,-0.140839159488678,-0.873940467834473,0.109842427074909,-0.583638429641724,0.804550051689148,-0.294167548418045,-0.291587382555008,0.910188019275665,-0.380339503288269,-0.362502664327621,0.850842833518982,0.0341777987778187,-0.662791073322296,0.748023986816406,-0.294167548418045,-0.291587382555008,0.910188019275665,-0.591590762138367,0.108026884496212,0.798968493938446,-0.681603610515594,0.0433675348758698,0.730435371398926,
- -0.380339503288269,-0.362502664327621,0.850842833518982,-0.591590762138367,0.108026884496212,0.798968493938446,-0.701636135578156,0.506872892379761,0.500785887241364,-0.790092706680298,0.443346232175827,0.423317283391953,-0.681603610515594,0.0433675348758698,0.730435371398926,-0.701636135578156,0.506872892379761,0.500785887241364,-0.595611691474915,0.797374546527863,0.0971627905964851,-0.681420266628265,0.731744289398193,0.0147209158167243,-0.790092706680298,0.443346232175827,0.423317283391953,-0.595611691474915,0.797374546527863,0.0971627905964851,-0.303461194038391,0.903226912021637,-0.303467392921448,-0.387701004743576,0.836280286312103,-0.387715548276901,-0.681420266628265,0.731744289398193,0.0147209158167243,-0.303461194038391,0.903226912021637,-0.303467392921448,0.0971315577626228,0.797402501106262,-0.595579206943512,0.0147122051566839,0.731761395931244,-0.681402027606964,-0.387701004743576,0.836280286312103,-0.387715548276901,0.0971315577626228,0.797402501106262,-0.595579206943512,0.500774800777435,0.506899476051331,-0.701624989509583,0.423301547765732,0.443370461463928,-0.790087580680847,0.0147122051566839,0.731761395931244,-0.681402027606964,0.500774800777435,0.506899476051331,-0.701624989509583,0.798975646495819,0.10802984982729,-0.591580450534821,0.730471968650818,0.043406680226326,-0.681561946868896,0.423301547765732,0.443370461463928,-0.790087580680847,0.798975646495819,0.10802984982729,-0.591580450534821,0.910196721553802,-0.291597694158554,-0.294130504131317,0.850847363471985,-0.362520903348923,-0.38031217455864,0.730471968650818,0.043406680226326,-0.681561946868896,0.910196721553802,-0.291597694158554,-0.294130504131317,0.804549336433411,-0.583628535270691,0.109900206327438,0.748037815093994,-0.662773907184601,0.0342091880738735,0.850847363471985,-0.362520903348923,-0.38031217455864,0.804549336433411,-0.583628535270691,0.109900206327438,0.511631071567535,-0.690250277519226,0.51165235042572,0.448397397994995,-0.77321583032608,0.448416113853455,0.748037815093994,-0.662773907184601,0.0342091880738735,
- 0.511631071567535,-0.690250277519226,0.51165235042572,0.109842427074909,-0.583638429641724,0.804550051689148,0.0341777987778187,-0.662791073322296,0.748023986816406,0.448397397994995,-0.77321583032608,0.448416113853455,-0.387701004743576,0.836280286312103,-0.387715548276901,0.0147122051566839,0.731761395931244,-0.681402027606964,-0.412063837051392,0.0129253938794136,-0.911063253879547,-0.704514920711517,0.0853622704744339,-0.704536855220795,-0.681420266628265,0.731744289398193,0.0147209158167243,-0.387701004743576,0.836280286312103,-0.387715548276901,-0.704514920711517,0.0853622704744339,-0.704536855220795,-0.911117434501648,0.0129759237170219,-0.411942541599274,-0.790092706680298,0.443346232175827,0.423317283391953,-0.681420266628265,0.731744289398193,0.0147209158167243,-0.911117434501648,0.0129759237170219,-0.411942541599274,-0.976355195045471,-0.184954524040222,-0.11190352588892,-0.681603610515594,0.0433675348758698,0.730435371398926,-0.790092706680298,0.443346232175827,0.423317283391953,-0.976355195045471,-0.184954524040222,-0.11190352588892,-0.882805049419403,-0.455372363328934,0.115287534892559,-0.380339503288269,-0.362502664327621,0.850842833518982,-0.681603610515594,0.0433675348758698,0.730435371398926,-0.882805049419403,-0.455372363328934,0.115287534892559,-0.655542850494385,-0.725695490837097,0.208877325057983,0.0341777987778187,-0.662791073322296,0.748023986816406,-0.380339503288269,-0.362502664327621,0.850842833518982,-0.655542850494385,-0.725695490837097,0.208877325057983,-0.355467587709427,-0.923577189445496,0.143693834543228,0.448397397994995,-0.77321583032608,0.448416113853455,0.0341777987778187,-0.662791073322296,0.748023986816406,-0.355467587709427,-0.923577189445496,0.143693834543228,-0.0629409626126289,-0.99603009223938,-0.0629488453269005,0.748037815093994,-0.662773907184601,0.0342091880738735,0.448397397994995,-0.77321583032608,0.448416113853455,-0.0629409626126289,-0.99603009223938,-0.0629488453269005,0.143541991710663,-0.923613488674164,-0.355434685945511,0.850847363471985,-0.362520903348923,-0.38031217455864,
- 0.748037815093994,-0.662773907184601,0.0342091880738735,0.143541991710663,-0.923613488674164,-0.355434685945511,0.208948388695717,-0.72569614648819,-0.655519485473633,0.730471968650818,0.043406680226326,-0.681561946868896,0.850847363471985,-0.362520903348923,-0.38031217455864,0.208948388695717,-0.72569614648819,-0.655519485473633,0.11550872027874,-0.455238431692123,-0.882845282554626,0.423301547765732,0.443370461463928,-0.790087580680847,0.730471968650818,0.043406680226326,-0.681561946868896,0.11550872027874,-0.455238431692123,-0.882845282554626,-0.111864991486073,-0.184870809316635,-0.97637552022934,0.0147122051566839,0.731761395931244,-0.681402027606964,0.423301547765732,0.443370461463928,-0.790087580680847,-0.111864991486073,-0.184870809316635,-0.97637552022934,-0.412063837051392,0.0129253938794136,-0.911063253879547,0.105392336845398,-0.577792406082153,0.809350669384003,-0.322432547807693,-0.303961217403412,0.896462380886078,-0.361413687467575,-0.359857439994812,0.860164284706116,0.0669499561190605,-0.633300244808197,0.771004855632782,-0.322432547807693,-0.303961217403412,0.896462380886078,-0.648730278015137,0.0696759670972824,0.757822036743164,-0.690046072006226,0.0150467129424214,0.723609030246735,-0.361413687467575,-0.359857439994812,0.860164284706116,-0.648730278015137,0.0696759670972824,0.757822036743164,-0.786224901676178,0.442813575267792,0.431006520986557,-0.830237150192261,0.391619086265564,0.396661847829819,-0.690046072006226,0.0150467129424214,0.723609030246735,-0.786224901676178,0.442813575267792,0.431006520986557,-0.69849044084549,0.71560937166214,0.00377562595531344,-0.743121325969696,0.668303906917572,-0.0337711162865162,-0.830237150192261,0.391619086265564,0.396661847829819,-0.69849044084549,0.71560937166214,0.00377562595531344,-0.409414172172546,0.815335273742676,-0.409400075674057,-0.451379746198654,0.769753873348236,-0.451370477676392,-0.743121325969696,0.668303906917572,-0.0337711162865162,-0.409414172172546,0.815335273742676,-0.409400075674057,0.00377529044635594,0.715614557266235,-0.698485136032104,
- -0.033773485571146,0.668311297893524,-0.743114650249481,-0.451379746198654,0.769753873348236,-0.451370477676392,0.00377529044635594,0.715614557266235,-0.698485136032104,0.430903732776642,0.442869871854782,-0.78624951839447,0.396561563014984,0.391674011945724,-0.830259203910828,-0.033773485571146,0.668311297893524,-0.743114650249481,0.430903732776642,0.442869871854782,-0.78624951839447,0.757800698280334,0.0696594342589378,-0.648757040500641,0.723600745201111,0.0150361396372318,-0.690055072307587,0.396561563014984,0.391674011945724,-0.830259203910828,0.757800698280334,0.0696594342589378,-0.648757040500641,0.896455109119415,-0.304045498371124,-0.322373300790787,0.860152304172516,-0.359935253858566,-0.361364901065826,0.723600745201111,0.0150361396372318,-0.690055072307587,0.896455109119415,-0.304045498371124,-0.322373300790787,0.80934089422226,-0.577801704406738,0.105416566133499,0.770996928215027,-0.633306801319122,0.0669793114066124,0.860152304172516,-0.359935253858566,-0.361364901065826,0.80934089422226,-0.577801704406738,0.105416566133499,0.519735515117645,-0.678038001060486,0.519749402999878,0.480897516012192,-0.733117878437042,0.480911403894424,0.770996928215027,-0.633306801319122,0.0669793114066124,0.519735515117645,-0.678038001060486,0.519749402999878,0.105392336845398,-0.577792406082153,0.809350669384003,0.0669499561190605,-0.633300244808197,0.771004855632782,0.480897516012192,-0.733117878437042,0.480911403894424,-0.451379746198654,0.769753873348236,-0.451370477676392,-0.033773485571146,0.668311297893524,-0.743114650249481,-0.437345951795578,-0.0563064143061638,-0.897528886795044,-0.707078874111176,0.0105696907266974,-0.707055628299713,-0.743121325969696,0.668303906917572,-0.0337711162865162,-0.451379746198654,0.769753873348236,-0.451370477676392,-0.707078874111176,0.0105696907266974,-0.707055628299713,-0.897563099861145,-0.0561747588217258,-0.437292665243149,-0.830237150192261,0.391619086265564,0.396661847829819,-0.743121325969696,0.668303906917572,-0.0337711162865162,-0.897563099861145,-0.0561747588217258,-0.437292665243149,
- -0.957705557346344,-0.238721713423729,-0.160660699009895,-0.690046072006226,0.0150467129424214,0.723609030246735,-0.830237150192261,0.391619086265564,0.396661847829819,-0.957705557346344,-0.238721713423729,-0.160660699009895,-0.871456444263458,-0.488032966852188,0.0488621108233929,-0.361413687467575,-0.359857439994812,0.860164284706116,-0.690046072006226,0.0150467129424214,0.723609030246735,-0.871456444263458,-0.488032966852188,0.0488621108233929,-0.661908864974976,-0.73730456829071,0.13512422144413,0.0669499561190605,-0.633300244808197,0.771004855632782,-0.361413687467575,-0.359857439994812,0.860164284706116,-0.661908864974976,-0.73730456829071,0.13512422144413,-0.385226339101791,-0.919767677783966,0.0750197619199753,0.480897516012192,-0.733117878437042,0.480911403894424,0.0669499561190605,-0.633300244808197,0.771004855632782,-0.385226339101791,-0.919767677783966,0.0750197619199753,-0.115489825606346,-0.986571669578552,-0.115492098033428,0.770996928215027,-0.633306801319122,0.0669793114066124,0.480897516012192,-0.733117878437042,0.480911403894424,-0.115489825606346,-0.986571669578552,-0.115492098033428,0.0749061033129692,-0.919770777225494,-0.38524141907692,0.860152304172516,-0.359935253858566,-0.361364901065826,0.770996928215027,-0.633306801319122,0.0669793114066124,0.0749061033129692,-0.919770777225494,-0.38524141907692,0.135166794061661,-0.737301588058472,-0.661903619766235,0.723600745201111,0.0150361396372318,-0.690055072307587,0.860152304172516,-0.359935253858566,-0.361364901065826,0.135166794061661,-0.737301588058472,-0.661903619766235,0.0489777512848377,-0.487973630428314,-0.871483087539673,0.396561563014984,0.391674011945724,-0.830259203910828,0.723600745201111,0.0150361396372318,-0.690055072307587,0.0489777512848377,-0.487973630428314,-0.871483087539673,-0.16060546040535,-0.238682672381401,-0.957724630832672,-0.033773485571146,0.668311297893524,-0.743114650249481,0.396561563014984,0.391674011945724,-0.830259203910828,-0.16060546040535,-0.238682672381401,-0.957724630832672,-0.437345951795578,-0.0563064143061638,-0.897528886795044,
- 0.0999063551425934,-0.587989866733551,0.80267471075058,-0.322613626718521,-0.309301793575287,0.894568562507629,-0.400258630514145,-0.400966733694077,0.824025928974152,0.0247517451643944,-0.681314408779144,0.731572329998016,-0.322613626718521,-0.309301793575287,0.894568562507629,-0.642575204372406,0.0713699609041214,0.762891530990601,-0.722110092639923,-0.0181350819766521,0.691540479660034,-0.400258630514145,-0.400966733694077,0.824025928974152,-0.642575204372406,0.0713699609041214,0.762891530990601,-0.774284720420837,0.452025324106216,0.442895352840424,-0.854546189308167,0.364756852388382,0.369734019041061,-0.722110092639923,-0.0181350819766521,0.691540479660034,-0.774284720420837,0.452025324106216,0.442895352840424,-0.682425320148468,0.730672121047974,0.0203441437333822,-0.762161672115326,0.645017147064209,-0.0553386136889458,-0.854546189308167,0.364756852388382,0.369734019041061,-0.682425320148468,0.730672121047974,0.0203441437333822,-0.391565144062042,0.832682728767395,-0.391556113958359,-0.469605416059494,0.747634768486023,-0.469588130712509,-0.762161672115326,0.645017147064209,-0.0553386136889458,-0.391565144062042,0.832682728767395,-0.391556113958359,0.0203373059630394,0.730702936649323,-0.682392537593842,-0.0553182773292065,0.645039558410645,-0.762144386768341,-0.469605416059494,0.747634768486023,-0.469588130712509,0.0203373059630394,0.730702936649323,-0.682392537593842,0.442890048027039,0.452037900686264,-0.774280428886414,0.36972388625145,0.364758491516113,-0.854549884796143,-0.0553182773292065,0.645039558410645,-0.762144386768341,0.442890048027039,0.452037900686264,-0.774280428886414,0.762885093688965,0.0713720843195915,-0.642582476139069,0.691580891609192,-0.0180937312543392,-0.722072422504425,0.36972388625145,0.364758491516113,-0.854549884796143,0.762885093688965,0.0713720843195915,-0.642582476139069,0.894576251506805,-0.309308916330338,-0.322585374116898,0.824028432369232,-0.400977224111557,-0.400242894887924,0.691580891609192,-0.0180937312543392,-0.722072422504425,0.894576251506805,-0.309308916330338,-0.322585374116898,
- 0.802674412727356,-0.587982535362244,0.0999507084488869,0.731590211391449,-0.681294679641724,0.0247633513063192,0.824028432369232,-0.400977224111557,-0.400242894887924,0.802674412727356,-0.587982535362244,0.0999507084488869,0.511804699897766,-0.689999580383301,0.511816799640656,0.439036726951599,-0.783885300159454,0.439056515693665,0.731590211391449,-0.681294679641724,0.0247633513063192,0.511804699897766,-0.689999580383301,0.511816799640656,0.0999063551425934,-0.587989866733551,0.80267471075058,0.0247517451643944,-0.681314408779144,0.731572329998016,0.439036726951599,-0.783885300159454,0.439056515693665,-0.469605416059494,0.747634768486023,-0.469588130712509,-0.0553182773292065,0.645039558410645,-0.762144386768341,-0.412086963653564,0.0128024565055966,-0.91105455160141,-0.704499304294586,0.0852277129888535,-0.704568684101105,-0.762161672115326,0.645017147064209,-0.0553386136889458,-0.469605416059494,0.747634768486023,-0.469588130712509,-0.704499304294586,0.0852277129888535,-0.704568684101105,-0.911092400550842,0.0127934571355581,-0.412003457546234,-0.854546189308167,0.364756852388382,0.369734019041061,-0.762161672115326,0.645017147064209,-0.0553386136889458,-0.911092400550842,0.0127934571355581,-0.412003457546234,-0.976316571235657,-0.185104310512543,-0.111993595957756,-0.722110092639923,-0.0181350819766521,0.691540479660034,-0.854546189308167,0.364756852388382,0.369734019041061,-0.976316571235657,-0.185104310512543,-0.111993595957756,-0.882795393466949,-0.455412417650223,0.115203656256199,-0.400258630514145,-0.400966733694077,0.824025928974152,-0.722110092639923,-0.0181350819766521,0.691540479660034,-0.882795393466949,-0.455412417650223,0.115203656256199,-0.65557324886322,-0.725697040557861,0.208776324987412,0.0247517451643944,-0.681314408779144,0.731572329998016,-0.400258630514145,-0.400966733694077,0.824025928974152,-0.65557324886322,-0.725697040557861,0.208776324987412,-0.355529576539993,-0.923568904399872,0.143594190478325,0.439036726951599,-0.783885300159454,0.439056515693665,0.0247517451643944,-0.681314408779144,0.731572329998016,
- -0.355529576539993,-0.923568904399872,0.143594190478325,-0.0629795342683792,-0.996022403240204,-0.063031941652298,0.731590211391449,-0.681294679641724,0.0247633513063192,0.439036726951599,-0.783885300159454,0.439056515693665,-0.0629795342683792,-0.996022403240204,-0.063031941652298,0.143524929881096,-0.923604667186737,-0.355464607477188,0.824028432369232,-0.400977224111557,-0.400242894887924,0.731590211391449,-0.681294679641724,0.0247633513063192,0.143524929881096,-0.923604667186737,-0.355464607477188,0.20893782377243,-0.725684940814972,-0.655535101890564,0.691580891609192,-0.0180937312543392,-0.722072422504425,0.824028432369232,-0.400977224111557,-0.400242894887924,0.20893782377243,-0.725684940814972,-0.655535101890564,0.115487955510616,-0.455250293016434,-0.882841885089874,0.36972388625145,0.364758491516113,-0.854549884796143,0.691580891609192,-0.0180937312543392,-0.722072422504425,0.115487955510616,-0.455250293016434,-0.882841885089874,-0.111903458833694,-0.184955582022667,-0.976355075836182,-0.0553182773292065,0.645039558410645,-0.762144386768341,0.36972388625145,0.364758491516113,-0.854549884796143,-0.111903458833694,-0.184955582022667,-0.976355075836182,-0.412086963653564,0.0128024565055966,-0.91105455160141,0.0874753147363663,-0.604416072368622,0.791851758956909,-0.336091905832291,-0.325056940317154,0.883957147598267,-0.380524158477783,-0.37749195098877,0.844216287136078,0.0446677505970001,-0.657930731773376,0.75175267457962,-0.336091905832291,-0.325056940317154,0.883957147598267,-0.656783401966095,0.0564535707235336,0.751963078975677,-0.702467322349548,0.00546243973076344,0.711695194244385,-0.380524158477783,-0.37749195098877,0.844216287136078,-0.656783401966095,0.0564535707235336,0.751963078975677,-0.788788080215454,0.437985509634018,0.431256175041199,-0.834958910942078,0.388478338718414,0.389779567718506,-0.702467322349548,0.00546243973076344,0.711695194244385,-0.788788080215454,0.437985509634018,0.431256175041199,-0.696695804595947,0.717325448989868,0.00768548855558038,-0.742518901824951,0.668886959552765,-0.0354405790567398,
- -0.834958910942078,0.388478338718414,0.389779567718506,-0.696695804595947,0.717325448989868,0.00768548855558038,-0.40515124797821,0.819568037986755,-0.405167579650879,-0.449846655130386,0.771534264087677,-0.449858695268631,-0.742518901824951,0.668886959552765,-0.0354405790567398,-0.40515124797821,0.819568037986755,-0.405167579650879,0.00767412595450878,0.717336118221283,-0.696685016155243,-0.0354406200349331,0.668899297714233,-0.742507636547089,-0.449846655130386,0.771534264087677,-0.449858695268631,0.00767412595450878,0.717336118221283,-0.696685016155243,0.43117019534111,0.438035577535629,-0.788807392120361,0.389700800180435,0.388537019491196,-0.834968447685242,-0.0354406200349331,0.668899297714233,-0.742507636547089,0.43117019534111,0.438035577535629,-0.788807392120361,0.751939713954926,0.0564433373510838,-0.656811058521271,0.711696445941925,0.0054766540415585,-0.702465891838074,0.389700800180435,0.388537019491196,-0.834968447685242,0.751939713954926,0.0564433373510838,-0.656811058521271,0.883951246738434,-0.325133085250854,-0.336033821105957,0.844214916229248,-0.377556890249252,-0.380462825298309,0.711696445941925,0.0054766540415585,-0.702465891838074,0.883951246738434,-0.325133085250854,-0.336033821105957,0.791838765144348,-0.604428112506866,0.087510421872139,0.751746416091919,-0.657935798168182,0.044695183634758,0.844214916229248,-0.377556890249252,-0.380462825298309,0.791838765144348,-0.604428112506866,0.087510421872139,0.500324666500092,-0.706653654575348,0.500315845012665,0.459118068218231,-0.76054710149765,0.459106415510178,0.751746416091919,-0.657935798168182,0.044695183634758,0.500324666500092,-0.706653654575348,0.500315845012665,0.0874753147363663,-0.604416072368622,0.791851758956909,0.0446677505970001,-0.657930731773376,0.75175267457962,0.459118068218231,-0.76054710149765,0.459106415510178,-0.449846655130386,0.771534264087677,-0.449858695268631,-0.0354406200349331,0.668899297714233,-0.742507636547089,-0.412067234516144,0.0127719398587942,-0.91106390953064,-0.704525470733643,0.0851851627230644,-0.704547762870789,
- -0.742518901824951,0.668886959552765,-0.0354405790567398,-0.449846655130386,0.771534264087677,-0.449858695268631,-0.704525470733643,0.0851851627230644,-0.704547762870789,-0.911087930202484,0.012767044827342,-0.412014335393906,-0.834958910942078,0.388478338718414,0.389779567718506,-0.742518901824951,0.668886959552765,-0.0354405790567398,-0.911087930202484,0.012767044827342,-0.412014335393906,-0.976315796375275,-0.185102477669716,-0.11200238764286,-0.702467322349548,0.00546243973076344,0.711695194244385,-0.834958910942078,0.388478338718414,0.389779567718506,-0.976315796375275,-0.185102477669716,-0.11200238764286,-0.882805824279785,-0.455391556024551,0.115205556154251,-0.380524158477783,-0.37749195098877,0.844216287136078,-0.702467322349548,0.00546243973076344,0.711695194244385,-0.882805824279785,-0.455391556024551,0.115205556154251,-0.655597388744354,-0.725688874721527,0.208728790283203,0.0446677505970001,-0.657930731773376,0.75175267457962,-0.380524158477783,-0.37749195098877,0.844216287136078,-0.655597388744354,-0.725688874721527,0.208728790283203,-0.355566293001175,-0.923568964004517,0.143502429127693,0.459118068218231,-0.76054710149765,0.459106415510178,0.0446677505970001,-0.657930731773376,0.75175267457962,-0.355566293001175,-0.923568964004517,0.143502429127693,-0.0630921646952629,-0.996011853218079,-0.0630846098065376,0.751746416091919,-0.657935798168182,0.044695183634758,0.459118068218231,-0.76054710149765,0.459106415510178,-0.0630921646952629,-0.996011853218079,-0.0630846098065376,0.14336459338665,-0.923593938350677,-0.355557024478912,0.844214916229248,-0.377556890249252,-0.380462825298309,0.751746416091919,-0.657935798168182,0.044695183634758,0.14336459338665,-0.923593938350677,-0.355557024478912,0.208840027451515,-0.725661516189575,-0.655592203140259,0.711696445941925,0.0054766540415585,-0.702465891838074,0.844214916229248,-0.377556890249252,-0.380462825298309,0.208840027451515,-0.725661516189575,-0.655592203140259,0.115453831851482,-0.455237448215485,-0.882852852344513,0.389700800180435,0.388537019491196,-0.834968447685242,
- 0.711696445941925,0.0054766540415585,-0.702465891838074,0.115453831851482,-0.455237448215485,-0.882852852344513,-0.111861288547516,-0.184920936822891,-0.976366460323334,-0.0354406200349331,0.668899297714233,-0.742507636547089,0.389700800180435,0.388537019491196,-0.834968447685242,-0.111861288547516,-0.184920936822891,-0.976366460323334,-0.412067234516144,0.0127719398587942,-0.91106390953064,-0.541681826114655,-0.642763614654541,-0.541697084903717,-0.541681885719299,-0.642763614654541,-0.541697084903717,-0.541681885719299,-0.642763614654541,-0.541697084903717,-0.541681826114655,-0.642763555049896,-0.541697025299072,-0.541681826114655,-0.642763555049896,-0.541697025299072,-0.541681885719299,-0.642763555049896,-0.541697084903717,-0.541681826114655,-0.642763614654541,-0.541697084903717,-0.541681826114655,-0.642763614654541,-0.541697025299072,-0.541681826114655,-0.642763614654541,-0.541697084903717,-0.541681885719299,-0.642763614654541,-0.541697084903717,-0.541681826114655,-0.642763555049896,-0.541697025299072,-0.541681826114655,-0.642763614654541,-0.541697025299072,0.428889811038971,0.032605703920126,0.902768135070801,0.144318640232086,0.220670938491821,0.964612066745758,-0.304610550403595,-0.288199812173843,0.907828807830811,0.116315834224224,-0.565800487995148,0.816296815872192,0.144318640232086,0.220670938491821,0.964612066745758,-0.0712242797017097,0.477359056472778,0.875817000865936,-0.623347461223602,0.0909650251269341,0.776635944843292,-0.304610550403595,-0.288199812173843,0.907828807830811,-0.0712242797017097,0.477359056472778,0.875817000865936,-0.160155832767487,0.733874499797821,0.66013514995575,-0.754514336585999,0.470106899738312,0.457938522100449,-0.623347461223602,0.0909650251269341,0.776635944843292,-0.160155832767487,0.733874499797821,0.66013514995575,-0.0985727086663246,0.921638488769531,0.375321209430695,-0.662986278533936,0.747717142105103,0.0369883254170418,-0.754514336585999,0.470106899738312,0.457938522100449,-0.0985727086663246,0.921638488769531,0.375321209430695,0.097574882209301,0.990422904491425,0.0976805835962296,
- -0.373271018266678,0.849314033985138,-0.373275339603424,-0.662986278533936,0.747717142105103,0.0369883254170418,0.097574882209301,0.990422904491425,0.0976805835962296,0.375436633825302,0.921608209609985,-0.098416268825531,0.0369815900921822,0.747726857662201,-0.6629758477211,-0.373271018266678,0.849314033985138,-0.373275339603424,0.375436633825302,0.921608209609985,-0.098416268825531,0.660190343856812,0.733763694763184,-0.160435661673546,0.457904070615768,0.470133692026138,-0.754518449306488,0.0369815900921822,0.747726857662201,-0.6629758477211,0.660190343856812,0.733763694763184,-0.160435661673546,0.875900864601135,0.477150917053223,-0.0715866237878799,0.776641428470612,0.0909425690770149,-0.623343884944916,0.457904070615768,0.470133692026138,-0.754518449306488,0.875900864601135,0.477150917053223,-0.0715866237878799,0.964685142040253,0.220532029867172,0.144042491912842,0.907827258110046,-0.288221120834351,-0.304595142602921,0.776641428470612,0.0909425690770149,-0.623343884944916,0.964685142040253,0.220532029867172,0.144042491912842,0.902739882469177,0.0328587144613266,0.428930044174194,0.816298186779022,-0.565800130367279,0.116307266056538,0.907827258110046,-0.288221120834351,-0.304595142602921,0.902739882469177,0.0328587144613266,0.428930044174194,0.70659601688385,-0.0360513553023338,0.706698179244995,0.526586174964905,-0.667403042316437,0.526573956012726,0.816298186779022,-0.565800130367279,0.116307266056538,0.70659601688385,-0.0360513553023338,0.706698179244995,0.428889811038971,0.032605703920126,0.902768135070801,0.116315834224224,-0.565800487995148,0.816296815872192,0.526586174964905,-0.667403042316437,0.526573956012726,0.541665256023407,0.642757892608643,0.541720449924469,0.541665256023407,0.642757892608643,0.541720449924469,0.541665256023407,0.642757892608643,0.541720449924469,0.541665256023407,0.642757892608643,0.541720449924469,0.541665196418762,0.642757892608643,0.541720390319824,0.541665315628052,0.642757892608643,0.541720509529114,0.541665315628052,0.642757952213287,0.541720509529114,0.541665256023407,0.642757952213287,0.541720449924469,
- 0.541665256023407,0.642757952213287,0.541720449924469,0.541665256023407,0.642757892608643,0.541720449924469,0.541665196418762,0.642757892608643,0.541720390319824,0.541665256023407,0.642757892608643,0.541720449924469,-0.451165646314621,0.77001166343689,-0.45114478468895,-0.0367215275764465,0.667386412620544,-0.743805706501007,-0.412092983722687,0.0127761475741863,-0.911052227020264,-0.704534530639648,0.0853115022182465,-0.704523265361786,-0.743815779685974,0.667375683784485,-0.0367111936211586,-0.451165646314621,0.77001166343689,-0.45114478468895,-0.704534530639648,0.0853115022182465,-0.704523265361786,-0.91109710931778,0.0129199856892228,-0.4119893014431,-0.836273550987244,0.386948645114899,0.388480514287949,-0.743815779685974,0.667375683784485,-0.0367111936211586,-0.91109710931778,0.0129199856892228,-0.4119893014431,-0.976338088512421,-0.185042023658752,-0.111908078193665,-0.703790187835693,0.00392755074426532,0.710396945476532,-0.836273550987244,0.386948645114899,0.388480514287949,-0.976338088512421,-0.185042023658752,-0.111908078193665,-0.882816016674042,-0.455364406108856,0.115235783159733,-0.381808251142502,-0.379058867692947,0.842933356761932,-0.703790187835693,0.00392755074426532,0.710396945476532,-0.882816016674042,-0.455364406108856,0.115235783159733,-0.655584573745728,-0.725701630115509,0.208724915981293,0.0433779656887054,-0.659455358982086,0.750491201877594,-0.381808251142502,-0.379058867692947,0.842933356761932,-0.655584573745728,-0.725701630115509,0.208724915981293,-0.355508625507355,-0.923584640026093,0.143544659018517,0.457821071147919,-0.762099921703339,0.457824647426605,0.0433779656887054,-0.659455358982086,0.750491201877594,-0.355508625507355,-0.923584640026093,0.143544659018517,-0.0630535930395126,-0.996019005775452,-0.0630108788609505,0.750485777854919,-0.659461736679077,0.0433721616864204,0.457821071147919,-0.762099921703339,0.457824647426605,-0.0630535930395126,-0.996019005775452,-0.0630108788609505,0.143428176641464,-0.92359733581543,-0.355522453784943,0.842945337295532,-0.37905877828598,-0.381782293319702,
- 0.750485777854919,-0.659461736679077,0.0433721616864204,0.143428176641464,-0.92359733581543,-0.355522453784943,0.208899453282356,-0.725642442703247,-0.655594408512115,0.710430145263672,0.00394732132554054,-0.70375657081604,0.842945337295532,-0.37905877828598,-0.381782293319702,0.208899453282356,-0.725642442703247,-0.655594408512115,0.115480951964855,-0.455245703458786,-0.882845163345337,0.388459831476212,0.386981278657913,-0.836268186569214,0.710430145263672,0.00394732132554054,-0.70375657081604,0.115480951964855,-0.455245703458786,-0.882845163345337,-0.11185447871685,-0.184992447495461,-0.976353645324707,-0.0367215275764465,0.667386412620544,-0.743805706501007,0.388459831476212,0.386981278657913,-0.836268186569214,-0.11185447871685,-0.184992447495461,-0.976353645324707,-0.412092983722687,0.0127761475741863,-0.911052227020264,-0.373271018266678,0.849314033985138,-0.373275339603424,0.0369815900921822,0.747726857662201,-0.6629758477211,-0.0367215275764465,0.667386412620544,-0.743805706501007,-0.451165646314621,0.77001166343689,-0.45114478468895,-0.662986278533936,0.747717142105103,0.0369883254170418,-0.373271018266678,0.849314033985138,-0.373275339603424,-0.451165646314621,0.77001166343689,-0.45114478468895,-0.743815779685974,0.667375683784485,-0.0367111936211586,-0.754514336585999,0.470106899738312,0.457938522100449,-0.662986278533936,0.747717142105103,0.0369883254170418,-0.743815779685974,0.667375683784485,-0.0367111936211586,-0.836273550987244,0.386948645114899,0.388480514287949,-0.623347461223602,0.0909650251269341,0.776635944843292,-0.754514336585999,0.470106899738312,0.457938522100449,-0.836273550987244,0.386948645114899,0.388480514287949,-0.703790187835693,0.00392755074426532,0.710396945476532,-0.304610550403595,-0.288199812173843,0.907828807830811,-0.623347461223602,0.0909650251269341,0.776635944843292,-0.703790187835693,0.00392755074426532,0.710396945476532,-0.381808251142502,-0.379058867692947,0.842933356761932,0.116315834224224,-0.565800487995148,0.816296815872192,-0.304610550403595,-0.288199812173843,0.907828807830811,
- -0.381808251142502,-0.379058867692947,0.842933356761932,0.0433779656887054,-0.659455358982086,0.750491201877594,0.526586174964905,-0.667403042316437,0.526573956012726,0.116315834224224,-0.565800487995148,0.816296815872192,0.0433779656887054,-0.659455358982086,0.750491201877594,0.457821071147919,-0.762099921703339,0.457824647426605,0.816298186779022,-0.565800130367279,0.116307266056538,0.526586174964905,-0.667403042316437,0.526573956012726,0.457821071147919,-0.762099921703339,0.457824647426605,0.750485777854919,-0.659461736679077,0.0433721616864204,0.907827258110046,-0.288221120834351,-0.304595142602921,0.816298186779022,-0.565800130367279,0.116307266056538,0.750485777854919,-0.659461736679077,0.0433721616864204,0.842945337295532,-0.37905877828598,-0.381782293319702,0.776641428470612,0.0909425690770149,-0.623343884944916,0.907827258110046,-0.288221120834351,-0.304595142602921,0.842945337295532,-0.37905877828598,-0.381782293319702,0.710430145263672,0.00394732132554054,-0.70375657081604,0.457904070615768,0.470133692026138,-0.754518449306488,0.776641428470612,0.0909425690770149,-0.623343884944916,0.710430145263672,0.00394732132554054,-0.70375657081604,0.388459831476212,0.386981278657913,-0.836268186569214,0.0369815900921822,0.747726857662201,-0.6629758477211,0.457904070615768,0.470133692026138,-0.754518449306488,0.388459831476212,0.386981278657913,-0.836268186569214,-0.0367215275764465,0.667386412620544,-0.743805706501007,0.0822717696428299,-0.611150801181793,0.787226855754852,-0.341628700494766,-0.331573575735092,0.8794025182724,-0.38790300488472,-0.386243730783463,0.836867392063141,0.0372842140495777,-0.666706502437592,0.744387209415436,-0.341628700494766,-0.331573575735092,0.8794025182724,-0.662586450576782,0.0502508394420147,0.747297823429108,-0.709857642650604,-0.00327950739301741,0.704337537288666,-0.38790300488472,-0.386243730783463,0.836867392063141,-0.662586450576782,0.0502508394420147,0.747297823429108,-0.794695734977722,0.432067543268204,0.426352351903915,-0.84234893321991,0.379728585481644,0.382432371377945,
- -0.709857642650604,-0.00327950739301741,0.704337537288666,-0.794695734977722,0.432067543268204,0.426352351903915,-0.702524423599243,0.711655497550964,0.00241022324189544,-0.749920845031738,0.660139381885529,-0.0428346507251263,-0.84234893321991,0.379728585481644,0.382432371377945,-0.702524423599243,0.711655497550964,0.00241022324189544,-0.410757720470428,0.813972294330597,-0.410764187574387,-0.457256644964218,0.762776911258698,-0.457260996103287,-0.749920845031738,0.660139381885529,-0.0428346507251263,-0.410757720470428,0.813972294330597,-0.410764187574387,0.00241337926127017,0.711659848690033,-0.702519953250885,-0.0428351759910584,0.660155057907104,-0.74990701675415,-0.457256644964218,0.762776911258698,-0.457260996103287,0.00241337926127017,0.711659848690033,-0.702519953250885,0.426256775856018,0.432143747806549,-0.794705510139465,0.382335633039474,0.379777997732162,-0.842370510101318,-0.0428351759910584,0.660155057907104,-0.74990701675415,0.426256775856018,0.432143747806549,-0.794705510139465,0.747289657592773,0.0502530336380005,-0.662595510482788,0.704339802265167,-0.00326273078098893,-0.709855437278748,0.382335633039474,0.379777997732162,-0.842370510101318,0.747289657592773,0.0502530336380005,-0.662595510482788,0.879398107528687,-0.331653714179993,-0.341562241315842,0.836850702762604,-0.3863305747509,-0.387852549552917,0.704339802265167,-0.00326273078098893,-0.709855437278748,0.879398107528687,-0.331653714179993,-0.341562241315842,0.787221252918243,-0.611156761646271,0.0822810009121895,0.744383811950684,-0.666709125041962,0.0373051576316357,0.836850702762604,-0.3863305747509,-0.387852549552917,0.787221252918243,-0.611156761646271,0.0822810009121895,0.495465874671936,-0.71347314119339,0.495449095964432,0.451741218566895,-0.769334971904755,0.45172306895256,0.744383811950684,-0.666709125041962,0.0373051576316357,0.495465874671936,-0.71347314119339,0.495449095964432,0.0822717696428299,-0.611150801181793,0.787226855754852,0.0372842140495777,-0.666706502437592,0.744387209415436,0.451741218566895,-0.769334971904755,0.45172306895256,
- -0.457256644964218,0.762776911258698,-0.457260996103287,-0.0428351759910584,0.660155057907104,-0.74990701675415,-0.447800815105438,-0.0867514461278915,-0.889914989471436,-0.706914305686951,-0.0226825810968876,-0.706935465335846,-0.749920845031738,0.660139381885529,-0.0428346507251263,-0.457256644964218,0.762776911258698,-0.457260996103287,-0.706914305686951,-0.0226825810968876,-0.706935465335846,-0.889915704727173,-0.0868535563349724,-0.447779595851898,-0.84234893321991,0.379728585481644,0.382432371377945,-0.749920845031738,0.660139381885529,-0.0428346507251263,-0.889915704727173,-0.0868535563349724,-0.447779595851898,-0.947723984718323,-0.262155503034592,-0.181916803121567,-0.709857642650604,-0.00327950739301741,0.704337537288666,-0.84234893321991,0.379728585481644,0.382432371377945,-0.947723984718323,-0.262155503034592,-0.181916803121567,-0.864880084991455,-0.501606166362762,0.0193323586136103,-0.38790300488472,-0.386243730783463,0.836867392063141,-0.709857642650604,-0.00327950739301741,0.704337537288666,-0.864880084991455,-0.501606166362762,0.0193323586136103,-0.663579285144806,-0.741091251373291,0.102207124233246,0.0372842140495777,-0.666706502437592,0.744387209415436,-0.38790300488472,-0.386243730783463,0.836867392063141,-0.663579285144806,-0.741091251373291,0.102207124233246,-0.39773815870285,-0.916424751281738,0.0443858541548252,0.451741218566895,-0.769334971904755,0.45172306895256,0.0372842140495777,-0.666706502437592,0.744387209415436,-0.39773815870285,-0.916424751281738,0.0443858541548252,-0.13856452703476,-0.98060268163681,-0.138629361987114,0.744383811950684,-0.666709125041962,0.0373051576316357,0.451741218566895,-0.769334971904755,0.45172306895256,-0.13856452703476,-0.98060268163681,-0.138629361987114,0.0445089004933834,-0.916454613208771,-0.397655457258224,0.836850702762604,-0.3863305747509,-0.387852549552917,0.744383811950684,-0.666709125041962,0.0373051576316357,0.0445089004933834,-0.916454613208771,-0.397655457258224,0.102482371032238,-0.741097271442413,-0.663529992103577,0.704339802265167,-0.00326273078098893,-0.709855437278748,
- 0.836850702762604,-0.3863305747509,-0.387852549552917,0.102482371032238,-0.741097271442413,-0.663529992103577,0.0196248702704906,-0.501513719558716,-0.864927053451538,0.382335633039474,0.379777997732162,-0.842370510101318,0.704339802265167,-0.00326273078098893,-0.709855437278748,0.0196248702704906,-0.501513719558716,-0.864927053451538,-0.181803569197655,-0.26196551322937,-0.947798192501068,-0.0428351759910584,0.660155057907104,-0.74990701675415,0.382335633039474,0.379777997732162,-0.842370510101318,-0.181803569197655,-0.26196551322937,-0.947798192501068,-0.447800815105438,-0.0867514461278915,-0.889914989471436,0.161934986710548,-0.496530026197433,0.852780699729919,-0.259347140789032,-0.229450777173042,0.938131868839264,-0.350251704454422,-0.347970843315125,0.869620621204376,0.0784005150198936,-0.619533479213715,0.781045138835907,-0.259347140789032,-0.229450777173042,0.938131868839264,-0.582397520542145,0.136001795530319,0.801446676254272,-0.680292367935181,0.0249783042818308,0.732514977455139,-0.350251704454422,-0.347970843315125,0.869620621204376,-0.582397520542145,0.136001795530319,0.801446676254272,-0.720255732536316,0.501905977725983,0.478875815868378,-0.822287619113922,0.40010067820549,0.404675722122192,-0.680292367935181,0.0249783042818308,0.732514977455139,-0.720255732536316,0.501905977725983,0.478875815868378,-0.635605812072754,0.769912421703339,0.0569224506616592,-0.736468374729156,0.675944328308105,-0.0267139617353678,-0.822287619113922,0.40010067820549,0.404675722122192,-0.635605812072754,0.769912421703339,0.0569224506616592,-0.3510762155056,0.868039965629578,-0.351072937250137,-0.444960534572601,0.777197778224945,-0.4449422955513,-0.736468374729156,0.675944328308105,-0.0267139617353678,-0.3510762155056,0.868039965629578,-0.351072937250137,0.0568742007017136,0.769933462142944,-0.635584533214569,-0.02671361528337,0.675972700119019,-0.736442387104034,-0.444960534572601,0.777197778224945,-0.4449422955513,0.0568742007017136,0.769933462142944,-0.635584533214569,0.47883129119873,0.501898050308228,-0.720290899276733,
- 0.404651939868927,0.400109261274338,-0.822295129299164,-0.02671361528337,0.675972700119019,-0.736442387104034,0.47883129119873,0.501898050308228,-0.720290899276733,0.801435589790344,0.135983571410179,-0.582416951656342,0.73252671957016,0.0249896384775639,-0.680279433727264,0.404651939868927,0.400109261274338,-0.822295129299164,0.801435589790344,0.135983571410179,-0.582416951656342,0.938125014305115,-0.229472413659096,-0.259352654218674,0.869628846645355,-0.34796205163002,-0.350240170955658,0.73252671957016,0.0249896384775639,-0.680279433727264,0.938125014305115,-0.229472413659096,-0.259352654218674,0.852773904800415,-0.496526509523392,0.16198205947876,0.781059384346008,-0.619511246681213,0.0784343406558037,0.869628846645355,-0.34796205163002,-0.350240170955658,0.852773904800415,-0.496526509523392,0.16198205947876,0.568763256072998,-0.594143271446228,0.568772494792938,0.49176749587059,-0.718550026416779,0.491783022880554,0.781059384346008,-0.619511246681213,0.0784343406558037,0.568763256072998,-0.594143271446228,0.568772494792938,0.161934986710548,-0.496530026197433,0.852780699729919,0.0784005150198936,-0.619533479213715,0.781045138835907,0.49176749587059,-0.718550026416779,0.491783022880554,-0.444960534572601,0.777197778224945,-0.4449422955513,-0.02671361528337,0.675972700119019,-0.736442387104034,-0.482970207929611,-0.202070489525795,-0.852001965045929,-0.69922548532486,-0.148586437106133,-0.699289560317993,-0.736468374729156,0.675944328308105,-0.0267139617353678,-0.444960534572601,0.777197778224945,-0.4449422955513,-0.69922548532486,-0.148586437106133,-0.699289560317993,-0.851969361305237,-0.202172338962555,-0.482985019683838,-0.822287619113922,0.40010067820549,0.404675722122192,-0.736468374729156,0.675944328308105,-0.0267139617353678,-0.851969361305237,-0.202172338962555,-0.482985019683838,-0.900221467018127,-0.348471194505692,-0.261092096567154,-0.680292367935181,0.0249783042818308,0.732514977455139,-0.822287619113922,0.40010067820549,0.404675722122192,-0.900221467018127,-0.348471194505692,-0.261092096567154,-0.831100285053253,-0.548279285430908,-0.0930702313780785,
- -0.350251704454422,-0.347970843315125,0.869620621204376,-0.680292367935181,0.0249783042818308,0.732514977455139,-0.831100285053253,-0.548279285430908,-0.0930702313780785,-0.663101196289063,-0.748146831989288,-0.0239347014576197,0.0784005150198936,-0.619533479213715,0.781045138835907,-0.350251704454422,-0.347970843315125,0.869620621204376,-0.663101196289063,-0.748146831989288,-0.0239347014576197,-0.441201269626617,-0.894498407840729,-0.0722091272473335,0.49176749587059,-0.718550026416779,0.491783022880554,0.0784005150198936,-0.619533479213715,0.781045138835907,-0.441201269626617,-0.894498407840729,-0.0722091272473335,-0.224906414747238,-0.94805371761322,-0.224969834089279,0.781059384346008,-0.619511246681213,0.0784343406558037,0.49176749587059,-0.718550026416779,0.491783022880554,-0.224906414747238,-0.94805371761322,-0.224969834089279,-0.0722002387046814,-0.894502580165863,-0.441194206476212,0.869628846645355,-0.34796205163002,-0.350240170955658,0.781059384346008,-0.619511246681213,0.0784343406558037,-0.0722002387046814,-0.894502580165863,-0.441194206476212,-0.0238571539521217,-0.74822986125946,-0.663010537624359,0.73252671957016,0.0249896384775639,-0.680279433727264,0.869628846645355,-0.34796205163002,-0.350240170955658,-0.0238571539521217,-0.74822986125946,-0.663010537624359,-0.0930772498250008,-0.548298060894012,-0.831087112426758,0.404651939868927,0.400109261274338,-0.822295129299164,0.73252671957016,0.0249896384775639,-0.680279433727264,-0.0930772498250008,-0.548298060894012,-0.831087112426758,-0.261094659566879,-0.348281860351563,-0.900294125080109,-0.02671361528337,0.675972700119019,-0.736442387104034,0.404651939868927,0.400109261274338,-0.822295129299164,-0.261094659566879,-0.348281860351563,-0.900294125080109,-0.482970207929611,-0.202070489525795,-0.852001965045929,0.117441885173321,-0.576525330543518,0.80859500169754,-0.314465016126633,-0.300493508577347,0.900452792644501,-0.373646408319473,-0.385042816400528,0.843878090381622,0.0579882748425007,-0.656702101230621,0.751917362213135,-0.314465016126633,-0.300493508577347,0.900452792644501,
- -0.647139132022858,0.0739262029528618,0.758779287338257,-0.709547877311707,-0.0100112045183778,0.704586029052734,-0.373646408319473,-0.385042816400528,0.843878090381622,-0.647139132022858,0.0739262029528618,0.758779287338257,-0.787704586982727,0.442659854888916,0.428455054759979,-0.852744519710541,0.363652229309082,0.374945312738419,-0.709547877311707,-0.0100112045183778,0.704586029052734,-0.787704586982727,0.442659854888916,0.428455054759979,-0.702276945114136,0.711903274059296,-0.000882994441781193,-0.767668902873993,0.638242483139038,-0.0577148646116257,-0.852744519710541,0.363652229309082,0.374945312738419,-0.702276945114136,0.711903274059296,-0.000882994441781193,-0.414410084486008,0.810269951820374,-0.414399415254593,-0.476434797048569,0.738932132720947,-0.476433783769608,-0.767668902873993,0.638242483139038,-0.0577148646116257,-0.414410084486008,0.810269951820374,-0.414399415254593,-0.000914019648917019,0.711915612220764,-0.702264368534088,-0.057755783200264,0.638250708580017,-0.767658948898315,-0.476434797048569,0.738932132720947,-0.476433783769608,-0.000914019648917019,0.711915612220764,-0.702264368534088,0.428403437137604,0.44266864657402,-0.7877277135849,0.374896913766861,0.363661468029022,-0.852761685848236,-0.057755783200264,0.638250708580017,-0.767658948898315,0.428403437137604,0.44266864657402,-0.7877277135849,0.758761703968048,0.0738981366157532,-0.647162854671478,0.704582989215851,-0.0100144436582923,-0.709550797939301,0.374896913766861,0.363661468029022,-0.852761685848236,0.758761703968048,0.0738981366157532,-0.647162854671478,0.900442004203796,-0.300569653511047,-0.314423412084579,0.843866348266602,-0.38510650396347,-0.373607724905014,0.704582989215851,-0.0100144436582923,-0.709550797939301,0.900442004203796,-0.300569653511047,-0.314423412084579,0.808583736419678,-0.576536238193512,0.117466442286968,0.751898229122162,-0.656720638275146,0.0580250583589077,0.843866348266602,-0.38510650396347,-0.373607724905014,0.808583736419678,-0.576536238193512,0.117466442286968,0.522109627723694,-0.674387633800507,0.522113919258118,
- 0.465681880712509,-0.752516269683838,0.465681880712509,0.751898229122162,-0.656720638275146,0.0580250583589077,0.522109627723694,-0.674387633800507,0.522113919258118,0.117441885173321,-0.576525330543518,0.80859500169754,0.0579882748425007,-0.656702101230621,0.751917362213135,0.465681880712509,-0.752516269683838,0.465681880712509,-0.476434797048569,0.738932132720947,-0.476433783769608,-0.057755783200264,0.638250708580017,-0.767658948898315,-0.393983870744705,0.0586565509438515,-0.917243778705597,-0.700684905052185,0.134595990180969,-0.700660169124603,-0.767668902873993,0.638242483139038,-0.0577148646116257,-0.476434797048569,0.738932132720947,-0.476433783769608,-0.700684905052185,0.134595990180969,-0.700660169124603,-0.917258143424988,0.0586746484041214,-0.393947780132294,-0.852744519710541,0.363652229309082,0.374945312738419,-0.767668902873993,0.638242483139038,-0.0577148646116257,-0.917258143424988,0.0586746484041214,-0.393947780132294,-0.985662400722504,-0.14888559281826,-0.0793890580534935,-0.709547877311707,-0.0100112045183778,0.704586029052734,-0.852744519710541,0.363652229309082,0.374945312738419,-0.985662400722504,-0.14888559281826,-0.0793890580534935,-0.887597024440765,-0.432364106178284,0.158849030733109,-0.373646408319473,-0.385042816400528,0.843878090381622,-0.709547877311707,-0.0100112045183778,0.704586029052734,-0.887597024440765,-0.432364106178284,0.158849030733109,-0.644978225231171,-0.71710193157196,0.264136135578156,0.0579882748425007,-0.656702101230621,0.751917362213135,-0.373646408319473,-0.385042816400528,0.843878090381622,-0.644978225231171,-0.71710193157196,0.264136135578156,-0.310801982879639,-0.926040887832642,0.21412681043148,0.465681880712509,-0.752516269683838,0.465681880712509,0.0579882748425007,-0.656702101230621,0.751917362213135,-0.310801982879639,-0.926040887832642,0.21412681043148,0.00516380975022912,-0.999973177909851,0.00518372608348727,0.751898229122162,-0.656720638275146,0.0580250583589077,0.465681880712509,-0.752516269683838,0.465681880712509,0.00516380975022912,-0.999973177909851,0.00518372608348727,
- 0.214099332690239,-0.926062405109406,-0.310757100582123,0.843866348266602,-0.38510650396347,-0.373607724905014,0.751898229122162,-0.656720638275146,0.0580250583589077,0.214099332690239,-0.926062405109406,-0.310757100582123,0.264333605766296,-0.717039227485657,-0.644967079162598,0.704582989215851,-0.0100144436582923,-0.709550797939301,0.843866348266602,-0.38510650396347,-0.373607724905014,0.264333605766296,-0.717039227485657,-0.644967079162598,0.159088656306267,-0.432220190763474,-0.887624025344849,0.374896913766861,0.363661468029022,-0.852761685848236,0.704582989215851,-0.0100144436582923,-0.709550797939301,0.159088656306267,-0.432220190763474,-0.887624025344849,-0.079242043197155,-0.148769587278366,-0.985691726207733,-0.057755783200264,0.638250708580017,-0.767658948898315,0.374896913766861,0.363661468029022,-0.852761685848236,-0.079242043197155,-0.148769587278366,-0.985691726207733,-0.393983870744705,0.0586565509438515,-0.917243778705597,0.0805424302816391,-0.619459867477417,0.780885577201843,-0.331303864717484,-0.330473452806473,0.883756279945374,-0.388102471828461,-0.375913053750992,0.841466546058655,0.0295698959380388,-0.670439541339874,0.741374671459198,-0.331303864717484,-0.330473452806473,0.883756279945374,-0.638266324996948,0.0657008662819862,0.767006874084473,-0.695590257644653,0.0235937498509884,0.718051254749298,-0.388102471828461,-0.375913053750992,0.841466546058655,-0.638266324996948,0.0657008662819862,0.767006874084473,-0.757131934165955,0.462847322225571,0.461002886295319,-0.81144654750824,0.419498205184937,0.406910061836243,-0.695590257644653,0.0235937498509884,0.718051254749298,-0.757131934165955,0.462847322225571,0.461002886295319,-0.65541934967041,0.753738343715668,0.0480006784200668,-0.707499444484711,0.706680536270142,-0.006864367518574,-0.81144654750824,0.419498205184937,0.406910061836243,-0.65541934967041,0.753738343715668,0.0480006784200668,-0.360650658607483,0.860160052776337,-0.360632479190826,-0.41352990269661,0.81116133928299,-0.413533985614777,-0.707499444484711,0.706680536270142,-0.006864367518574,
- -0.360650658607483,0.860160052776337,-0.360632479190826,0.0479800179600716,0.753761112689972,-0.655394732952118,-0.00688603753224015,0.706694662570953,-0.707485198974609,-0.41352990269661,0.81116133928299,-0.413533985614777,0.0479800179600716,0.753761112689972,-0.655394732952118,0.46096271276474,0.462874442338943,-0.757139801979065,0.406877189874649,0.419520825147629,-0.811451315879822,-0.00688603753224015,0.706694662570953,-0.707485198974609,0.46096271276474,0.462874442338943,-0.757139801979065,0.766997575759888,0.0657003596425056,-0.638277411460876,0.718058168888092,0.023630091920495,-0.695581912994385,0.406877189874649,0.419520825147629,-0.811451315879822,0.766997575759888,0.0657003596425056,-0.638277411460876,0.883745074272156,-0.330532550811768,-0.331274837255478,0.841458678245544,-0.375971108675003,-0.388062953948975,0.718058168888092,0.023630091920495,-0.695581912994385,0.883745074272156,-0.330532550811768,-0.331274837255478,0.780863344669342,-0.619482576847076,0.0805837288498878,0.741359412670136,-0.67045533657074,0.0295961908996105,0.841458678245544,-0.375971108675003,-0.388062953948975,0.780863344669342,-0.619482576847076,0.0805837288498878,0.487089157104492,-0.724910855293274,0.487081348896027,0.443774074316025,-0.778555989265442,0.443751215934753,0.741359412670136,-0.67045533657074,0.0295961908996105,0.487089157104492,-0.724910855293274,0.487081348896027,0.0805424302816391,-0.619459867477417,0.780885577201843,0.0295698959380388,-0.670439541339874,0.741374671459198,0.443774074316025,-0.778555989265442,0.443751215934753,-0.41352990269661,0.81116133928299,-0.413533985614777,-0.00688603753224015,0.706694662570953,-0.707485198974609,-0.412088334560394,0.0128493886440992,-0.91105329990387,-0.704559504985809,0.0853634625673294,-0.704492092132568,-0.707499444484711,0.706680536270142,-0.006864367518574,-0.41352990269661,0.81116133928299,-0.413533985614777,-0.704559504985809,0.0853634625673294,-0.704492092132568,-0.911118686199188,0.013063988648355,-0.411937028169632,-0.81144654750824,0.419498205184937,0.406910061836243,
- -0.707499444484711,0.706680536270142,-0.006864367518574,-0.911118686199188,0.013063988648355,-0.411937028169632,-0.976353585720062,-0.184949174523354,-0.111926324665546,-0.695590257644653,0.0235937498509884,0.718051254749298,-0.81144654750824,0.419498205184937,0.406910061836243,-0.976353585720062,-0.184949174523354,-0.111926324665546,-0.882804572582245,-0.455374956130981,0.115281067788601,-0.388102471828461,-0.375913053750992,0.841466546058655,-0.695590257644653,0.0235937498509884,0.718051254749298,-0.882804572582245,-0.455374956130981,0.115281067788601,-0.655552089214325,-0.725703537464142,0.208819836378098,0.0295698959380388,-0.670439541339874,0.741374671459198,-0.388102471828461,-0.375913053750992,0.841466546058655,-0.655552089214325,-0.725703537464142,0.208819836378098,-0.355470448732376,-0.923576891422272,0.143689066171646,0.443774074316025,-0.778555989265442,0.443751215934753,0.0295698959380388,-0.670439541339874,0.741374671459198,-0.355470448732376,-0.923576891422272,0.143689066171646,-0.0629906132817268,-0.996027171611786,-0.0629454031586647,0.741359412670136,-0.67045533657074,0.0295961908996105,0.443774074316025,-0.778555989265442,0.443751215934753,-0.0629906132817268,-0.996027171611786,-0.0629454031586647,0.143488302826881,-0.923610508441925,-0.355464339256287,0.841458678245544,-0.375971108675003,-0.388062953948975,0.741359412670136,-0.67045533657074,0.0295961908996105,0.143488302826881,-0.923610508441925,-0.355464339256287,0.208909824490547,-0.725701451301575,-0.655525803565979,0.718058168888092,0.023630091920495,-0.695581912994385,0.841458678245544,-0.375971108675003,-0.388062953948975,0.208909824490547,-0.725701451301575,-0.655525803565979,0.1154850050807,-0.455249488353729,-0.882842719554901,0.406877189874649,0.419520825147629,-0.811451315879822,0.718058168888092,0.023630091920495,-0.695581912994385,0.1154850050807,-0.455249488353729,-0.882842719554901,-0.111898705363274,-0.184918165206909,-0.976362645626068,-0.00688603753224015,0.706694662570953,-0.707485198974609,0.406877189874649,0.419520825147629,-0.811451315879822,
- -0.111898705363274,-0.184918165206909,-0.976362645626068,-0.412088334560394,0.0128493886440992,-0.91105329990387,0.138804823160172,-0.53414660692215,0.833918929100037,-0.279103398323059,-0.258498519659042,0.924813389778137,-0.375580102205276,-0.371715784072876,0.848979890346527,0.0495168380439281,-0.652083814144135,0.756528079509735,-0.279103398323059,-0.258498519659042,0.924813389778137,-0.595599830150604,0.118039317429066,0.794561207294464,-0.697523474693298,0.0112413913011551,0.716473758220673,-0.375580102205276,-0.371715784072876,0.848979890346527,-0.595599830150604,0.118039317429066,0.794561207294464,-0.725885927677155,0.49453341960907,0.478044241666794,-0.830005645751953,0.394219815731049,0.39456495642662,-0.697523474693298,0.0112413913011551,0.716473758220673,-0.725885927677155,0.49453341960907,0.478044241666794,-0.635016322135925,0.770159900188446,0.0600668825209141,-0.737564504146576,0.674583971500397,-0.0305787064135075,-0.830005645751953,0.394219815731049,0.39456495642662,-0.635016322135925,0.770159900188446,0.0600668825209141,-0.347325801849365,0.87105655670166,-0.34731137752533,-0.444929391145706,0.777214109897614,-0.444944947957993,-0.737564504146576,0.674583971500397,-0.0305787064135075,-0.347325801849365,0.87105655670166,-0.34731137752533,0.0600731894373894,0.770167708396912,-0.635006248950958,-0.0305641107261181,0.674605786800385,-0.737545132637024,-0.444929391145706,0.777214109897614,-0.444944947957993,0.0600731894373894,0.770167708396912,-0.635006248950958,0.477966368198395,0.494536727666855,-0.725934982299805,0.394523531198502,0.394257515668869,-0.830007374286652,-0.0305641107261181,0.674605786800385,-0.737545132637024,0.477966368198395,0.494536727666855,-0.725934982299805,0.794511377811432,0.117972545325756,-0.595679521560669,0.716463804244995,0.0112447096034884,-0.697533667087555,0.394523531198502,0.394257515668869,-0.830007374286652,0.794511377811432,0.117972545325756,-0.595679521560669,0.924783408641815,-0.258583903312683,-0.279123574495316,0.848979830741882,-0.371733427047729,-0.375562787055969,
- 0.716463804244995,0.0112447096034884,-0.697533667087555,0.924783408641815,-0.258583903312683,-0.279123574495316,0.83391010761261,-0.534153759479523,0.138829857110977,0.756533086299896,-0.652075111865997,0.0495552867650986,0.848979830741882,-0.371733427047729,-0.375562787055969,0.83391010761261,-0.534153759479523,0.138829857110977,0.54621833562851,-0.635037958621979,0.546234667301178,0.463921546936035,-0.754693746566772,0.463911801576614,0.756533086299896,-0.652075111865997,0.0495552867650986,0.54621833562851,-0.635037958621979,0.546234667301178,0.138804823160172,-0.53414660692215,0.833918929100037,0.0495168380439281,-0.652083814144135,0.756528079509735,0.463921546936035,-0.754693746566772,0.463911801576614,-0.444929391145706,0.777214109897614,-0.444944947957993,-0.0305641107261181,0.674605786800385,-0.737545132637024,-0.456968367099762,-0.11487090587616,-0.882034420967102,-0.706110596656799,-0.0531484670937061,-0.706104099750519,-0.737564504146576,0.674583971500397,-0.0305787064135075,-0.444929391145706,0.777214109897614,-0.444944947957993,-0.706110596656799,-0.0531484670937061,-0.706104099750519,-0.882058382034302,-0.114798173308373,-0.456940144300461,-0.830005645751953,0.394219815731049,0.39456495642662,-0.737564504146576,0.674583971500397,-0.0305787064135075,-0.882058382034302,-0.114798173308373,-0.456940144300461,-0.937584698200226,-0.283443599939346,-0.201481327414513,-0.697523474693298,0.0112413913011551,0.716473758220673,-0.830005645751953,0.394219815731049,0.39456495642662,-0.937584698200226,-0.283443599939346,-0.201481327414513,-0.857896983623505,-0.513758301734924,-0.0080739064142108,-0.375580102205276,-0.371715784072876,0.848979890346527,-0.697523474693298,0.0112413913011551,0.716473758220673,-0.857896983623505,-0.513758301734924,-0.0080739064142108,-0.664353847503662,-0.743974506855011,0.0716651454567909,0.0495168380439281,-0.652083814144135,0.756528079509735,-0.375580102205276,-0.371715784072876,0.848979890346527,-0.664353847503662,-0.743974506855011,0.0716651454567909,-0.408829689025879,-0.912466287612915,0.0162323713302612,
- 0.463921546936035,-0.754693746566772,0.463911801576614,0.0495168380439281,-0.652083814144135,0.756528079509735,-0.408829689025879,-0.912466287612915,0.0162323713302612,-0.159723401069641,-0.974157571792603,-0.1597039103508,0.756533086299896,-0.652075111865997,0.0495552867650986,0.463921546936035,-0.754693746566772,0.463911801576614,-0.159723401069641,-0.974157571792603,-0.1597039103508,0.0162070542573929,-0.912457048892975,-0.408851385116577,0.848979830741882,-0.371733427047729,-0.375562787055969,0.756533086299896,-0.652075111865997,0.0495552867650986,0.0162070542573929,-0.912457048892975,-0.408851385116577,0.0718739926815033,-0.743962228298187,-0.66434508562088,0.716463804244995,0.0112447096034884,-0.697533667087555,0.848979830741882,-0.371733427047729,-0.375562787055969,0.0718739926815033,-0.743962228298187,-0.66434508562088,-0.00786295812577009,-0.513686656951904,-0.857941865921021,0.394523531198502,0.394257515668869,-0.830007374286652,0.716463804244995,0.0112447096034884,-0.697533667087555,-0.00786295812577009,-0.513686656951904,-0.857941865921021,-0.201420828700066,-0.28333842754364,-0.937629461288452,-0.0305641107261181,0.674605786800385,-0.737545132637024,0.394523531198502,0.394257515668869,-0.830007374286652,-0.201420828700066,-0.28333842754364,-0.937629461288452,-0.456968367099762,-0.11487090587616,-0.882034420967102,0.0182401333004236,-0.61274117231369,0.790073156356812,-0.352273136377335,-0.355290949344635,0.865835905075073,-0.394725739955902,-0.377440869808197,0.837693333625793,-0.0155123192816973,-0.643049716949463,0.765667319297791,-0.352273136377335,-0.355290949344635,0.865835905075073,-0.660579562187195,0.04198357462883,0.749581217765808,-0.709380745887756,0.0130222821608186,0.70470517873764,-0.394725739955902,-0.377440869808197,0.837693333625793,-0.660579562187195,0.04198357462883,0.749581217765808,-0.780542552471161,0.440989404916763,0.443036824464798,-0.83165568113327,0.399430692195892,0.385751277208328,-0.709380745887756,0.0130222821608186,0.70470517873764,-0.780542552471161,0.440989404916763,0.443036824464798,
- -0.678812801837921,0.733766376972198,0.0282867327332497,-0.732668280601501,0.679797470569611,-0.0327510461211205,-0.83165568113327,0.399430692195892,0.385751277208328,-0.678812801837921,0.733766376972198,0.0282867327332497,-0.382577627897263,0.84098744392395,-0.382589042186737,-0.440817832946777,0.781890869140625,-0.440824806690216,-0.732668280601501,0.679797470569611,-0.0327510461211205,-0.382577627897263,0.84098744392395,-0.382589042186737,0.0282555036246777,0.733781814575195,-0.678797364234924,-0.0327967368066311,0.679820895195007,-0.732644557952881,-0.440817832946777,0.781890869140625,-0.440824806690216,0.0282555036246777,0.733781814575195,-0.678797364234924,0.442957758903503,0.441042929887772,-0.780557155609131,0.385683715343475,0.399481981992722,-0.83166229724884,-0.0327967368066311,0.679820895195007,-0.732644557952881,0.442957758903503,0.441042929887772,-0.780557155609131,0.749573409557343,0.0419576056301594,-0.660590171813965,0.704701840877533,0.0130313513800502,-0.70938378572464,0.385683715343475,0.399481981992722,-0.83166229724884,0.749573409557343,0.0419576056301594,-0.660590171813965,0.865824341773987,-0.355356454849243,-0.352235615253448,0.837695181369781,-0.37749719619751,-0.394667744636536,0.704701840877533,0.0130313513800502,-0.70938378572464,0.865824341773987,-0.355356454849243,-0.352235615253448,0.790068030357361,-0.612747490406036,0.0182469356805086,0.765663385391235,-0.643054604530334,-0.0155021026730537,0.837695181369781,-0.37749719619751,-0.394667744636536,0.790068030357361,-0.612747490406036,0.0182469356805086,0.48241975903511,-0.731119871139526,0.482426077127457,0.454940587282181,-0.76553601026535,0.45495468378067,0.765663385391235,-0.643054604530334,-0.0155021026730537,0.48241975903511,-0.731119871139526,0.482426077127457,0.0182401333004236,-0.61274117231369,0.790073156356812,-0.0155123192816973,-0.643049716949463,0.765667319297791,0.454940587282181,-0.76553601026535,0.45495468378067,-0.440817832946777,0.781890869140625,-0.440824806690216,-0.0327967368066311,0.679820895195007,-0.732644557952881,
- -0.457303792238235,-0.153445333242416,-0.8759725689888,-0.702565312385559,-0.113177336752415,-0.702561736106873,-0.732668280601501,0.679797470569611,-0.0327510461211205,-0.440817832946777,0.781890869140625,-0.440824806690216,-0.702565312385559,-0.113177336752415,-0.702561736106873,-0.875980138778687,-0.15341979265213,-0.457297742366791,-0.83165568113327,0.399430692195892,0.385751277208328,-0.732668280601501,0.679797470569611,-0.0327510461211205,-0.875980138778687,-0.15341979265213,-0.457297742366791,-0.947435319423676,-0.276361554861069,-0.161215737462044,-0.709380745887756,0.0130222821608186,0.70470517873764,-0.83165568113327,0.399430692195892,0.385751277208328,-0.947435319423676,-0.276361554861069,-0.161215737462044,-0.866956353187561,-0.477279335260391,0.143495932221413,-0.394725739955902,-0.377440869808197,0.837693333625793,-0.709380745887756,0.0130222821608186,0.70470517873764,-0.866956353187561,-0.477279335260391,0.143495932221413,-0.598620712757111,-0.714794814586639,0.36155441403389,-0.0155123192816973,-0.643049716949463,0.765667319297791,-0.394725739955902,-0.377440869808197,0.837693333625793,-0.598620712757111,-0.714794814586639,0.36155441403389,-0.310986369848251,-0.905152976512909,0.289802670478821,0.454940587282181,-0.76553601026535,0.45495468378067,-0.0155123192816973,-0.643049716949463,0.765667319297791,-0.310986369848251,-0.905152976512909,0.289802670478821,-0.0126420110464096,-0.999840319156647,-0.0126312654465437,0.765663385391235,-0.643054604530334,-0.0155021026730537,0.454940587282181,-0.76553601026535,0.45495468378067,-0.0126420110464096,-0.999840319156647,-0.0126312654465437,0.28978830575943,-0.905159652233124,-0.310980528593063,0.837695181369781,-0.37749719619751,-0.394667744636536,0.765663385391235,-0.643054604530334,-0.0155021026730537,0.28978830575943,-0.905159652233124,-0.310980528593063,0.361803829669952,-0.714703321456909,-0.598579287528992,0.704701840877533,0.0130313513800502,-0.70938378572464,0.837695181369781,-0.37749719619751,-0.394667744636536,0.361803829669952,-0.714703321456909,-0.598579287528992,
- 0.14382928609848,-0.477173000574112,-0.866959750652313,0.385683715343475,0.399481981992722,-0.83166229724884,0.704701840877533,0.0130313513800502,-0.70938378572464,0.14382928609848,-0.477173000574112,-0.866959750652313,-0.16113643348217,-0.276212275028229,-0.94749242067337,-0.0327967368066311,0.679820895195007,-0.732644557952881,0.385683715343475,0.399481981992722,-0.83166229724884,-0.16113643348217,-0.276212275028229,-0.94749242067337,-0.457303792238235,-0.153445333242416,-0.8759725689888,0.118045672774315,-0.562501668930054,0.818325698375702,-0.30450439453125,-0.286436408758163,0.908422291278839,-0.382979989051819,-0.374744027853012,0.844330012798309,0.0531326271593571,-0.644397079944611,0.762843012809753,-0.30450439453125,-0.286436408758163,0.908422291278839,-0.625208139419556,0.0905044674873352,0.775192677974701,-0.717041969299316,-0.00712062139064074,0.6969935297966,-0.382979989051819,-0.374744027853012,0.844330012798309,-0.625208139419556,0.0905044674873352,0.775192677974701,-0.758319020271301,0.467411249876022,0.454399585723877,-0.860133528709412,0.359612822532654,0.361730188131332,-0.717041969299316,-0.00712062139064074,0.6969935297966,-0.758319020271301,0.467411249876022,0.454399585723877,-0.668171465396881,0.743321061134338,0.0319487638771534,-0.775495767593384,0.627316296100616,-0.0712781697511673,-0.860133528709412,0.359612822532654,0.361730188131332,-0.668171465396881,0.743321061134338,0.0319487638771534,-0.378917098045349,0.844300627708435,-0.378917157649994,-0.486926138401031,0.725122034549713,-0.486930191516876,-0.775495767593384,0.627316296100616,-0.0712781697511673,-0.378917098045349,0.844300627708435,-0.378917157649994,0.0319131389260292,0.743335068225861,-0.668157517910004,-0.0713378936052322,0.627327263355255,-0.775481462478638,-0.486926138401031,0.725122034549713,-0.486930191516876,0.0319131389260292,0.743335068225861,-0.668157517910004,0.454315781593323,0.467460364103317,-0.758338928222656,0.361662596464157,0.359631329774857,-0.860154271125793,-0.0713378936052322,0.627327263355255,-0.775481462478638,
- 0.454315781593323,0.467460364103317,-0.758338928222656,0.775177001953125,0.0904943719506264,-0.625229060649872,0.696968555450439,-0.00716024683788419,-0.717065989971161,0.361662596464157,0.359631329774857,-0.860154271125793,0.775177001953125,0.0904943719506264,-0.625229060649872,0.908418238162994,-0.286529392004013,-0.30442950129509,0.844309449195862,-0.374831944704056,-0.382939457893372,0.696968555450439,-0.00716024683788419,-0.717065989971161,0.908418238162994,-0.286529392004013,-0.30442950129509,0.818314075469971,-0.562515258789063,0.118061892688274,0.762816548347473,-0.644425570964813,0.0531663037836552,0.844309449195862,-0.374831944704056,-0.382939457893372,0.818314075469971,-0.562515258789063,0.118061892688274,0.529017090797424,-0.663531422615051,0.529024660587311,0.473146885633469,-0.743145287036896,0.473145961761475,0.762816548347473,-0.644425570964813,0.0531663037836552,0.529017090797424,-0.663531422615051,0.529024660587311,0.118045672774315,-0.562501668930054,0.818325698375702,0.0531326271593571,-0.644397079944611,0.762843012809753,0.473146885633469,-0.743145287036896,0.473145961761475,-0.486926138401031,0.725122034549713,-0.486930191516876,-0.0713378936052322,0.627327263355255,-0.775481462478638,-0.488129884004593,-0.24870952963829,-0.836584091186523,-0.691249370574951,-0.210625827312469,-0.691238760948181,-0.775495767593384,0.627316296100616,-0.0712781697511673,-0.486926138401031,0.725122034549713,-0.486930191516876,-0.691249370574951,-0.210625827312469,-0.691238760948181,-0.836604654788971,-0.248695880174637,-0.488101422786713,-0.860133528709412,0.359612822532654,0.361730188131332,-0.775495767593384,0.627316296100616,-0.0712781697511673,-0.836604654788971,-0.248695880174637,-0.488101422786713,-0.896965086460114,-0.362307906150818,-0.253350913524628,-0.717041969299316,-0.00712062139064074,0.6969935297966,-0.860133528709412,0.359612822532654,0.361730188131332,-0.896965086460114,-0.362307906150818,-0.253350913524628,-0.839610576629639,-0.542489409446716,-0.0275549497455359,-0.382979989051819,-0.374744027853012,0.844330012798309,
- -0.717041969299316,-0.00712062139064074,0.6969935297966,-0.839610576629639,-0.542489409446716,-0.0275549497455359,-0.645227611064911,-0.754289865493774,0.12135923653841,0.0531326271593571,-0.644397079944611,0.762843012809753,-0.382979989051819,-0.374744027853012,0.844330012798309,-0.645227611064911,-0.754289865493774,0.12135923653841,-0.350415080785751,-0.929051995277405,0.118624188005924,0.473146885633469,-0.743145287036896,0.473145961761475,0.0531326271593571,-0.644397079944611,0.762843012809753,-0.350415080785751,-0.929051995277405,0.118624188005924,-0.058416061103344,-0.99658328294754,-0.0583897978067398,0.762816548347473,-0.644425570964813,0.0531663037836552,0.473146885633469,-0.743145287036896,0.473145961761475,-0.058416061103344,-0.99658328294754,-0.0583897978067398,0.118580430746078,-0.929063200950623,-0.350400269031525,0.844309449195862,-0.374831944704056,-0.382939457893372,0.762816548347473,-0.644425570964813,0.0531663037836552,0.118580430746078,-0.929063200950623,-0.350400269031525,0.121276535093784,-0.754297256469727,-0.645234644412994,0.696968555450439,-0.00716024683788419,-0.717065989971161,0.844309449195862,-0.374831944704056,-0.382939457893372,0.121276535093784,-0.754297256469727,-0.645234644412994,-0.0276221577078104,-0.542497158050537,-0.839603304862976,0.361662596464157,0.359631329774857,-0.860154271125793,0.696968555450439,-0.00716024683788419,-0.717065989971161,-0.0276221577078104,-0.542497158050537,-0.839603304862976,-0.253349930047989,-0.362354576587677,-0.896946489810944,-0.0713378936052322,0.627327263355255,-0.775481462478638,0.361662596464157,0.359631329774857,-0.860154271125793,-0.253349930047989,-0.362354576587677,-0.896946489810944,-0.488129884004593,-0.24870952963829,-0.836584091186523,0.0974357649683952,-0.591308534145355,0.800537645816803,-0.325351178646088,-0.312486857175827,0.892467677593231,-0.368891328573227,-0.363749027252197,0.855339646339417,0.0561382994055748,-0.644053995609283,0.762917399406433,-0.325351178646088,-0.312486857175827,0.892467677593231,-0.64549309015274,0.0683408454060555,0.76070249080658,
- -0.690727591514587,0.0190574266016483,0.722863852977753,-0.368891328573227,-0.363749027252197,0.855339646339417,-0.64549309015274,0.0683408454060555,0.76070249080658,-0.777246594429016,0.449200063943863,0.440575838088989,-0.823159098625183,0.401933550834656,0.401071518659592,-0.690727591514587,0.0190574266016483,0.722863852977753,-0.777246594429016,0.449200063943863,0.440575838088989,-0.685304164886475,0.728039920330048,0.0177799351513386,-0.730728209018707,0.682247459888458,-0.023971488699317,-0.823159098625183,0.401933550834656,0.401071518659592,-0.685304164886475,0.728039920330048,0.0177799351513386,-0.394297510385513,0.830098390579224,-0.394292026758194,-0.43819135427475,0.784835398197174,-0.438202708959579,-0.730728209018707,0.682247459888458,-0.023971488699317,-0.394297510385513,0.830098390579224,-0.394292026758194,0.0177672076970339,0.7280592918396,-0.685283958911896,-0.0239731054753065,0.682261228561401,-0.730715274810791,-0.43819135427475,0.784835398197174,-0.438202708959579,0.0177672076970339,0.7280592918396,-0.685283958911896,0.440580815076828,0.449216991662979,-0.777233898639679,0.401062875986099,0.401955902576447,-0.823152482509613,-0.0239731054753065,0.682261228561401,-0.730715274810791,0.440580815076828,0.449216991662979,-0.777233898639679,0.76071971654892,0.0683759674429893,-0.645469009876251,0.722896158695221,0.0191072914749384,-0.690692603588104,0.401062875986099,0.401955902576447,-0.823152482509613,0.76071971654892,0.0683759674429893,-0.645469009876251,0.892479419708252,-0.312473773956299,-0.325331658124924,0.855350136756897,-0.363749831914902,-0.368866354227066,0.722896158695221,0.0191072914749384,-0.690692603588104,0.892479419708252,-0.312473773956299,-0.325331658124924,0.80053049325943,-0.591311395168304,0.097476452589035,0.762916266918182,-0.644052803516388,0.0561677291989326,0.855350136756897,-0.363749831914902,-0.368866354227066,0.80053049325943,-0.591311395168304,0.097476452589035,0.509539723396301,-0.693350732326508,0.509543061256409,0.470403015613556,-0.746627271175385,0.470392197370529,
- 0.762916266918182,-0.644052803516388,0.0561677291989326,0.509539723396301,-0.693350732326508,0.509543061256409,0.0974357649683952,-0.591308534145355,0.800537645816803,0.0561382994055748,-0.644053995609283,0.762917399406433,0.470403015613556,-0.746627271175385,0.470392197370529,-0.43819135427475,0.784835398197174,-0.438202708959579,-0.0239731054753065,0.682261228561401,-0.730715274810791,-0.412037461996078,0.0128212003037333,-0.911076724529266,-0.704527795314789,0.0853256732225418,-0.704528272151947,-0.730728209018707,0.682247459888458,-0.023971488699317,-0.43819135427475,0.784835398197174,-0.438202708959579,-0.704527795314789,0.0853256732225418,-0.704528272151947,-0.911107003688812,0.0129391029477119,-0.411966592073441,-0.823159098625183,0.401933550834656,0.401071518659592,-0.730728209018707,0.682247459888458,-0.023971488699317,-0.911107003688812,0.0129391029477119,-0.411966592073441,-0.976330697536469,-0.185043394565582,-0.111969999969006,-0.690727591514587,0.0190574266016483,0.722863852977753,-0.823159098625183,0.401933550834656,0.401071518659592,-0.976330697536469,-0.185043394565582,-0.111969999969006,-0.882797956466675,-0.455400407314301,0.115230143070221,-0.368891328573227,-0.363749027252197,0.855339646339417,-0.690727591514587,0.0190574266016483,0.722863852977753,-0.882797956466675,-0.455400407314301,0.115230143070221,-0.655548930168152,-0.725709855556488,0.208808153867722,0.0561382994055748,-0.644053995609283,0.762917399406433,-0.368891328573227,-0.363749027252197,0.855339646339417,-0.655548930168152,-0.725709855556488,0.208808153867722,-0.355463236570358,-0.923580884933472,0.14368112385273,0.470403015613556,-0.746627271175385,0.470392197370529,0.0561382994055748,-0.644053995609283,0.762917399406433,-0.355463236570358,-0.923580884933472,0.14368112385273,-0.0629434213042259,-0.996032059192657,-0.0629161298274994,0.762916266918182,-0.644052803516388,0.0561677291989326,0.470403015613556,-0.746627271175385,0.470392197370529,-0.0629434213042259,-0.996032059192657,-0.0629161298274994,0.14360199868679,-0.923591077327728,-0.355468600988388,
- 0.855350136756897,-0.363749831914902,-0.368866354227066,0.762916266918182,-0.644052803516388,0.0561677291989326,0.14360199868679,-0.923591077327728,-0.355468600988388,0.208953052759171,-0.72567480802536,-0.65554141998291,0.722896158695221,0.0191072914749384,-0.690692603588104,0.855350136756897,-0.363749831914902,-0.368866354227066,0.208953052759171,-0.72567480802536,-0.65554141998291,0.115416668355465,-0.455307751893997,-0.882821500301361,0.401062875986099,0.401955902576447,-0.823152482509613,0.722896158695221,0.0191072914749384,-0.690692603588104,0.115416668355465,-0.455307751893997,-0.882821500301361,-0.111912585794926,-0.184974417090416,-0.9763503074646,-0.0239731054753065,0.682261228561401,-0.730715274810791,0.401062875986099,0.401955902576447,-0.823152482509613,-0.111912585794926,-0.184974417090416,-0.9763503074646,-0.412037461996078,0.0128212003037333,-0.911076724529266,0.097013808786869,-0.593006193637848,0.799332141876221,-0.323445528745651,-0.312354326248169,0.893206357955933,-0.38182532787323,-0.377102464437485,0.843802809715271,0.0419183298945427,-0.660172581672668,0.749943256378174,-0.323445528745651,-0.312354326248169,0.893206357955933,-0.640902042388916,0.0711964666843414,0.764313817024231,-0.701082348823547,0.00902152247726917,0.713023126125336,-0.38182532787323,-0.377102464437485,0.843802809715271,-0.640902042388916,0.0711964666843414,0.764313817024231,-0.770218431949615,0.454908728599548,0.447014182806015,-0.830519914627075,0.39455258846283,0.393147557973862,-0.701082348823547,0.00902152247726917,0.713023126125336,-0.770218431949615,0.454908728599548,0.447014182806015,-0.676584124565125,0.735895454883575,0.0263043716549873,-0.735965192317963,0.676358640193939,-0.0299019161611795,-0.830519914627075,0.39455258846283,0.393147557973862,-0.676584124565125,0.735895454883575,0.0263043716549873,-0.384999394416809,0.838773488998413,-0.385012209415436,-0.442986935377121,0.779429018497467,-0.44300451874733,-0.735965192317963,0.676358640193939,-0.0299019161611795,-0.384999394416809,0.838773488998413,-0.385012209415436,
- 0.026318795979023,0.735892117023468,-0.676586985588074,-0.0298922024667263,0.676363885402679,-0.735960900783539,-0.442986935377121,0.779429018497467,-0.44300451874733,0.026318795979023,0.735892117023468,-0.676586985588074,0.446971476078033,0.454901784658432,-0.770247280597687,0.393125504255295,0.394547879695892,-0.830532550811768,-0.0298922024667263,0.676363885402679,-0.735960900783539,0.446971476078033,0.454901784658432,-0.770247280597687,0.764288008213043,0.0711570680141449,-0.640937328338623,0.713021814823151,0.00901593174785376,-0.701083838939667,0.393125504255295,0.394547879695892,-0.830532550811768,0.764288008213043,0.0711570680141449,-0.640937328338623,0.893186032772064,-0.312393397092819,-0.32346448302269,0.843792915344238,-0.377122849225998,-0.381826937198639,0.713021814823151,0.00901593174785376,-0.701083838939667,0.893186032772064,-0.312393397092819,-0.32346448302269,0.799332857131958,-0.5930055975914,0.0970124304294586,0.74994432926178,-0.660171210765839,0.0419207662343979,0.843792915344238,-0.377122849225998,-0.381826937198639,0.799332857131958,-0.5930055975914,0.0970124304294586,0.507931530475616,-0.695701956748962,0.507941424846649,0.45635849237442,-0.763854503631592,0.456358581781387,0.74994432926178,-0.660171210765839,0.0419207662343979,0.507931530475616,-0.695701956748962,0.507941424846649,0.097013808786869,-0.593006193637848,0.799332141876221,0.0419183298945427,-0.660172581672668,0.749943256378174,0.45635849237442,-0.763854503631592,0.456358581781387,-0.442986935377121,0.779429018497467,-0.44300451874733,-0.0298922024667263,0.676363885402679,-0.735960900783539,-0.456980556249619,-0.114904642105103,-0.882023692131042,-0.706106185913086,-0.0532236658036709,-0.706102907657623,-0.735965192317963,0.676358640193939,-0.0299019161611795,-0.442986935377121,0.779429018497467,-0.44300451874733,-0.706106185913086,-0.0532236658036709,-0.706102907657623,-0.882042944431305,-0.114852041006088,-0.456956535577774,-0.830519914627075,0.39455258846283,0.393147557973862,-0.735965192317963,0.676358640193939,-0.0299019161611795,
- -0.882042944431305,-0.114852041006088,-0.456956535577774,-0.937589347362518,-0.283422321081162,-0.201489299535751,-0.701082348823547,0.00902152247726917,0.713023126125336,-0.830519914627075,0.39455258846283,0.393147557973862,-0.937589347362518,-0.283422321081162,-0.201489299535751,-0.857902228832245,-0.513749837875366,-0.00804890599101782,-0.38182532787323,-0.377102464437485,0.843802809715271,-0.701082348823547,0.00902152247726917,0.713023126125336,-0.857902228832245,-0.513749837875366,-0.00804890599101782,-0.664364993572235,-0.743963122367859,0.0716796219348907,0.0419183298945427,-0.660172581672668,0.749943256378174,-0.38182532787323,-0.377102464437485,0.843802809715271,-0.664364993572235,-0.743963122367859,0.0716796219348907,-0.408859848976135,-0.912453532218933,0.0161939971148968,0.45635849237442,-0.763854503631592,0.456358581781387,0.0419183298945427,-0.660172581672668,0.749943256378174,-0.408859848976135,-0.912453532218933,0.0161939971148968,-0.159767866134644,-0.974139928817749,-0.159767687320709,0.74994432926178,-0.660171210765839,0.0419207662343979,0.45635849237442,-0.763854503631592,0.456358581781387,-0.159767866134644,-0.974139928817749,-0.159767687320709,0.0161584280431271,-0.912451386451721,-0.408865988254547,0.843792915344238,-0.377122849225998,-0.381826937198639,0.74994432926178,-0.660171210765839,0.0419207662343979,0.0161584280431271,-0.912451386451721,-0.408865988254547,0.0718653649091721,-0.743951380252838,-0.664358198642731,0.713021814823151,0.00901593174785376,-0.701083838939667,0.843792915344238,-0.377122849225998,-0.381826937198639,0.0718653649091721,-0.743951380252838,-0.664358198642731,-0.00783886853605509,-0.513662278652191,-0.85795670747757,0.393125504255295,0.394547879695892,-0.830532550811768,0.713021814823151,0.00901593174785376,-0.701083838939667,-0.00783886853605509,-0.513662278652191,-0.85795670747757,-0.201417356729507,-0.283323705196381,-0.937634587287903,-0.0298922024667263,0.676363885402679,-0.735960900783539,0.393125504255295,0.394547879695892,-0.830532550811768,-0.201417356729507,-0.283323705196381,-0.937634587287903,
- -0.456980556249619,-0.114904642105103,-0.882023692131042,0.0939001217484474,-0.595995008945465,0.797478973865509,-0.329183667898178,-0.316952913999558,0.889482498168945,-0.394347101449966,-0.393902897834778,0.830259442329407,0.030795656144619,-0.674323081970215,0.737794041633606,-0.329183667898178,-0.316952913999558,0.889482498168945,-0.649520218372345,0.0641249865293503,0.757635414600372,-0.716255307197571,-0.0109935570508242,0.697751760482788,-0.394347101449966,-0.393902897834778,0.830259442329407,-0.649520218372345,0.0641249865293503,0.757635414600372,-0.781384646892548,0.445241898298264,0.437261462211609,-0.848737597465515,0.371997117996216,0.37584912776947,-0.716255307197571,-0.0109935570508242,0.697751760482788,-0.781384646892548,0.445241898298264,0.437261462211609,-0.689391314983368,0.724250614643097,0.0141709204763174,-0.756301820278168,0.652361571788788,-0.0493151433765888,-0.848737597465515,0.371997117996216,0.37584912776947,-0.689391314983368,0.724250614643097,0.0141709204763174,-0.398192316293716,0.826367676258087,-0.398195058107376,-0.463681817054749,0.754980266094208,-0.463685214519501,-0.756301820278168,0.652361571788788,-0.0493151433765888,-0.398192316293716,0.826367676258087,-0.398195058107376,0.0141661409288645,0.724258840084076,-0.689382672309875,-0.0493179745972157,0.65235823392868,-0.756304442882538,-0.463681817054749,0.754980266094208,-0.463685214519501,0.0141661409288645,0.724258840084076,-0.689382672309875,0.437207698822021,0.445272475481033,-0.781397342681885,0.375782519578934,0.372010290622711,-0.848761379718781,-0.0493179745972157,0.65235823392868,-0.756304442882538,0.437207698822021,0.445272475481033,-0.781397342681885,0.757615089416504,0.0641233697533607,-0.6495441198349,0.697741746902466,-0.0109896026551723,-0.716265201568604,0.375782519578934,0.372010290622711,-0.848761379718781,0.757615089416504,0.0641233697533607,-0.6495441198349,0.889478266239166,-0.317017138004303,-0.329133003950119,0.830239236354828,-0.393988132476807,-0.394304662942886,0.697741746902466,-0.0109896026551723,-0.716265201568604,
- 0.889478266239166,-0.317017138004303,-0.329133003950119,0.797476887702942,-0.595994114875793,0.0939236655831337,0.737792253494263,-0.674324989318848,0.0308002326637506,0.830239236354828,-0.393988132476807,-0.394304662942886,0.797476887702942,-0.595994114875793,0.0939236655831337,0.506276905536652,-0.698117613792419,0.506276190280914,0.445177972316742,-0.776938736438751,0.445177108049393,0.737792253494263,-0.674324989318848,0.0308002326637506,0.506276905536652,-0.698117613792419,0.506276190280914,0.0939001217484474,-0.595995008945465,0.797478973865509,0.030795656144619,-0.674323081970215,0.737794041633606,0.445177972316742,-0.776938736438751,0.445177108049393,-0.463681817054749,0.754980266094208,-0.463685214519501,-0.0493179745972157,0.65235823392868,-0.756304442882538,-0.465190023183823,-0.140848055481911,-0.873933672904968,-0.704758763313293,-0.0814993232488632,-0.704750239849091,-0.756301820278168,0.652361571788788,-0.0493151433765888,-0.463681817054749,0.754980266094208,-0.463685214519501,-0.704758763313293,-0.0814993232488632,-0.704750239849091,-0.873990893363953,-0.1407650411129,-0.465107470750809,-0.848737597465515,0.371997117996216,0.37584912776947,-0.756301820278168,0.652361571788788,-0.0493151433765888,-0.873990893363953,-0.1407650411129,-0.465107470750809,-0.92743718624115,-0.302909284830093,-0.21933114528656,-0.716255307197571,-0.0109935570508242,0.697751760482788,-0.848737597465515,0.371997117996216,0.37584912776947,-0.92743718624115,-0.302909284830093,-0.21933114528656,-0.850811719894409,-0.524425089359283,-0.033131554722786,-0.394347101449966,-0.393902897834778,0.830259442329407,-0.716255307197571,-0.0109935570508242,0.697751760482788,-0.850811719894409,-0.524425089359283,-0.033131554722786,-0.664615571498871,-0.745917499065399,0.0435113124549389,0.030795656144619,-0.674323081970215,0.737794041633606,-0.394347101449966,-0.393902897834778,0.830259442329407,-0.664615571498871,-0.745917499065399,0.0435113124549389,-0.418804734945297,-0.908022224903107,-0.00991232600063086,0.445177972316742,-0.776938736438751,0.445177108049393,
- 0.030795656144619,-0.674323081970215,0.737794041633606,-0.418804734945297,-0.908022224903107,-0.00991232600063086,-0.179209187626839,-0.967353522777557,-0.179196059703827,0.737792253494263,-0.674324989318848,0.0308002326637506,0.445177972316742,-0.776938736438751,0.445177108049393,-0.179209187626839,-0.967353522777557,-0.179196059703827,-0.0100649632513523,-0.90802276134491,-0.418799877166748,0.830239236354828,-0.393988132476807,-0.394304662942886,0.737792253494263,-0.674324989318848,0.0308002326637506,-0.0100649632513523,-0.90802276134491,-0.418799877166748,0.0434807166457176,-0.74591201543808,-0.664623737335205,0.697741746902466,-0.0109896026551723,-0.716265201568604,0.830239236354828,-0.393988132476807,-0.394304662942886,0.0434807166457176,-0.74591201543808,-0.664623737335205,-0.0330667719244957,-0.52440470457077,-0.850826799869537,0.375782519578934,0.372010290622711,-0.848761379718781,0.697741746902466,-0.0109896026551723,-0.716265201568604,-0.0330667719244957,-0.52440470457077,-0.850826799869537,-0.219304129481316,-0.302920132875443,-0.927440047264099,-0.0493179745972157,0.65235823392868,-0.756304442882538,0.375782519578934,0.372010290622711,-0.848761379718781,-0.219304129481316,-0.302920132875443,-0.927440047264099,-0.465190023183823,-0.140848055481911,-0.873933672904968,0.109837435185909,-0.583617091178894,0.804566264152527,-0.294154196977615,-0.291583567857742,0.910193562507629,-0.380328476428986,-0.36250376701355,0.850847482681274,0.0341740064322948,-0.662777185440063,0.74803638458252,-0.294154196977615,-0.291583567857742,0.910193562507629,-0.591587960720062,0.108044072985649,0.798968195915222,-0.681601703166962,0.0433684773743153,0.730437040328979,-0.380328476428986,-0.36250376701355,0.850847482681274,-0.591587960720062,0.108044072985649,0.798968195915222,-0.701631426811218,0.506884813308716,0.500780403614044,-0.790088295936584,0.443356543779373,0.42331475019455,-0.681601703166962,0.0433684773743153,0.730437040328979,-0.701631426811218,0.506884813308716,0.500780403614044,-0.595619559288025,0.797367751598358,0.0971693694591522,
- -0.68142157793045,0.731743097305298,0.0147254513576627,-0.790088295936584,0.443356543779373,0.42331475019455,-0.595619559288025,0.797367751598358,0.0971693694591522,-0.303469568490982,0.903223812580109,-0.303468227386475,-0.387701004743576,0.836285054683685,-0.38770517706871,-0.68142157793045,0.731743097305298,0.0147254513576627,-0.303469568490982,0.903223812580109,-0.303468227386475,0.0971233323216438,0.797406733036041,-0.595575034618378,0.0147118074819446,0.731769204139709,-0.681393802165985,-0.387701004743576,0.836285054683685,-0.38770517706871,0.0971233323216438,0.797406733036041,-0.595575034618378,0.500753045082092,0.506925165653229,-0.701621830463409,0.423289984464645,0.443386137485504,-0.790085017681122,0.0147118074819446,0.731769204139709,-0.681393802165985,0.500753045082092,0.506925165653229,-0.701621830463409,0.798981785774231,0.108041845262051,-0.59157007932663,0.730471909046173,0.0434072948992252,-0.681561887264252,0.423289984464645,0.443386137485504,-0.790085017681122,0.798981785774231,0.108041845262051,-0.59157007932663,0.910204946994781,-0.291606158018112,-0.29409646987915,0.850854218006134,-0.362536042928696,-0.380282402038574,0.730471909046173,0.0434072948992252,-0.681561887264252,0.910204946994781,-0.291606158018112,-0.29409646987915,0.804554104804993,-0.583620667457581,0.109907016158104,0.748038530349731,-0.66277277469635,0.0342132262885571,0.850854218006134,-0.362536042928696,-0.380282402038574,0.804554104804993,-0.583620667457581,0.109907016158104,0.511648774147034,-0.690235137939453,0.511655151844025,0.448420584201813,-0.773200929164886,0.44841855764389,0.748038530349731,-0.66277277469635,0.0342132262885571,0.511648774147034,-0.690235137939453,0.511655151844025,0.109837435185909,-0.583617091178894,0.804566264152527,0.0341740064322948,-0.662777185440063,0.74803638458252,0.448420584201813,-0.773200929164886,0.44841855764389,-0.387701004743576,0.836285054683685,-0.38770517706871,0.0147118074819446,0.731769204139709,-0.681393802165985,-0.412073880434036,0.0128547037020326,-0.911059737205505,-0.704516887664795,0.0853482857346535,-0.704536497592926,
- -0.68142157793045,0.731743097305298,0.0147254513576627,-0.387701004743576,0.836285054683685,-0.38770517706871,-0.704516887664795,0.0853482857346535,-0.704536497592926,-0.911115884780884,0.0130050666630268,-0.411944955587387,-0.790088295936584,0.443356543779373,0.42331475019455,-0.68142157793045,0.731743097305298,0.0147254513576627,-0.911115884780884,0.0130050666630268,-0.411944955587387,-0.976355373859406,-0.184948176145554,-0.111912056803703,-0.681601703166962,0.0433684773743153,0.730437040328979,-0.790088295936584,0.443356543779373,0.42331475019455,-0.976355373859406,-0.184948176145554,-0.111912056803703,-0.88280588388443,-0.45537456870079,0.115272916853428,-0.380328476428986,-0.36250376701355,0.850847482681274,-0.681601703166962,0.0433684773743153,0.730437040328979,-0.88280588388443,-0.45537456870079,0.115272916853428,-0.655544757843018,-0.72569215297699,0.208882078528404,0.0341740064322948,-0.662777185440063,0.74803638458252,-0.380328476428986,-0.36250376701355,0.850847482681274,-0.655544757843018,-0.72569215297699,0.208882078528404,-0.355468064546585,-0.923576295375824,0.143698483705521,0.448420584201813,-0.773200929164886,0.44841855764389,0.0341740064322948,-0.662777185440063,0.74803638458252,-0.355468064546585,-0.923576295375824,0.143698483705521,-0.0629632249474525,-0.996027588844299,-0.062965951859951,0.748038530349731,-0.66277277469635,0.0342132262885571,0.448420584201813,-0.773200929164886,0.44841855764389,-0.0629632249474525,-0.996027588844299,-0.062965951859951,0.143496319651604,-0.923610270023346,-0.355461537837982,0.850854218006134,-0.362536042928696,-0.380282402038574,0.748038530349731,-0.66277277469635,0.0342132262885571,0.143496319651604,-0.923610270023346,-0.355461537837982,0.208886280655861,-0.725709557533264,-0.655524373054504,0.730471909046173,0.0434072948992252,-0.681561887264252,0.850854218006134,-0.362536042928696,-0.380282402038574,0.208886280655861,-0.725709557533264,-0.655524373054504,0.115427277982235,-0.455276310443878,-0.882836401462555,0.423289984464645,0.443386137485504,-0.790085017681122,
- 0.730471909046173,0.0434072948992252,-0.681561887264252,0.115427277982235,-0.455276310443878,-0.882836401462555,-0.111940108239651,-0.184933230280876,-0.976355016231537,0.0147118074819446,0.731769204139709,-0.681393802165985,0.423289984464645,0.443386137485504,-0.790085017681122,-0.111940108239651,-0.184933230280876,-0.976355016231537,-0.412073880434036,0.0128547037020326,-0.911059737205505,0.105401232838631,-0.5777947306633,0.809347748756409,-0.322458386421204,-0.303943872451782,0.896458983421326,-0.361434429883957,-0.359839290380478,0.86016321182251,0.0669559761881828,-0.633300244808197,0.771004378795624,-0.322458386421204,-0.303943872451782,0.896458983421326,-0.648735821247101,0.0696787908673286,0.757817089557648,-0.690052032470703,0.0150483166798949,0.723603308200836,-0.361434429883957,-0.359839290380478,0.86016321182251,-0.648735821247101,0.0696787908673286,0.757817089557648,-0.786230087280273,0.442812919616699,0.430997759103775,-0.830235481262207,0.391624629497528,0.39666011929512,-0.690052032470703,0.0150483166798949,0.723603308200836,-0.786230087280273,0.442812919616699,0.430997759103775,-0.698488712310791,0.715611159801483,0.00375836854800582,-0.743115842342377,0.668309450149536,-0.0337843559682369,-0.830235481262207,0.391624629497528,0.39666011929512,-0.698488712310791,0.715611159801483,0.00375836854800582,-0.409410685300827,0.815331101417542,-0.409412026405334,-0.451374739408493,0.769750237464905,-0.451381653547287,-0.743115842342377,0.668309450149536,-0.0337843559682369,-0.409410685300827,0.815331101417542,-0.409412026405334,0.00378346303477883,0.715604722499847,-0.698495268821716,-0.0337685719132423,0.668304443359375,-0.743121027946472,-0.451374739408493,0.769750237464905,-0.451381653547287,0.00378346303477883,0.715604722499847,-0.698495268821716,0.430906295776367,0.442864686250687,-0.78625100851059,0.396571934223175,0.391671687364578,-0.830255389213562,-0.0337685719132423,0.668304443359375,-0.743121027946472,0.430906295776367,0.442864686250687,-0.78625100851059,0.75779777765274,0.0696642473340034,-0.64875990152359,
- 0.723605871200562,0.0150454575195909,-0.690049350261688,0.396571934223175,0.391671687364578,-0.830255389213562,0.75779777765274,0.0696642473340034,-0.64875990152359,0.896452665328979,-0.30405193567276,-0.322373956441879,0.860156893730164,-0.359931617975235,-0.361357659101486,0.723605871200562,0.0150454575195909,-0.690049350261688,0.896452665328979,-0.30405193567276,-0.322373956441879,0.809357345104218,-0.577785789966583,0.105377040803432,0.771008908748627,-0.633296370506287,0.0669402852654457,0.860156893730164,-0.359931617975235,-0.361357659101486,0.809357345104218,-0.577785789966583,0.105377040803432,0.519743204116821,-0.678038001060486,0.519741654396057,0.480907887220383,-0.733121156692505,0.480895966291428,0.771008908748627,-0.633296370506287,0.0669402852654457,0.519743204116821,-0.678038001060486,0.519741654396057,0.105401232838631,-0.5777947306633,0.809347748756409,0.0669559761881828,-0.633300244808197,0.771004378795624,0.480907887220383,-0.733121156692505,0.480895966291428,-0.451374739408493,0.769750237464905,-0.451381653547287,-0.0337685719132423,0.668304443359375,-0.743121027946472,-0.437323749065399,-0.056260459125042,-0.897542655467987,-0.707084238529205,0.0105691431090236,-0.707050204277039,-0.743115842342377,0.668309450149536,-0.0337843559682369,-0.451374739408493,0.769750237464905,-0.451381653547287,-0.707084238529205,0.0105691431090236,-0.707050204277039,-0.897580742835999,-0.0561288222670555,-0.437262445688248,-0.830235481262207,0.391624629497528,0.39666011929512,-0.743115842342377,0.668309450149536,-0.0337843559682369,-0.897580742835999,-0.0561288222670555,-0.437262445688248,-0.957737565040588,-0.238627135753632,-0.160611286759377,-0.690052032470703,0.0150483166798949,0.723603308200836,-0.830235481262207,0.391624629497528,0.39666011929512,-0.957737565040588,-0.238627135753632,-0.160611286759377,-0.871466159820557,-0.488011658191681,0.0489015579223633,-0.361434429883957,-0.359839290380478,0.86016321182251,-0.690052032470703,0.0150483166798949,0.723603308200836,-0.871466159820557,-0.488011658191681,0.0489015579223633,
- -0.661886155605316,-0.737311661243439,0.135197550058365,0.0669559761881828,-0.633300244808197,0.771004378795624,-0.361434429883957,-0.359839290380478,0.86016321182251,-0.661886155605316,-0.737311661243439,0.135197550058365,-0.385215699672699,-0.919767439365387,0.0750777348875999,0.480907887220383,-0.733121156692505,0.480895966291428,0.0669559761881828,-0.633300244808197,0.771004378795624,-0.385215699672699,-0.919767439365387,0.0750777348875999,-0.115519776940346,-0.986568748950958,-0.115486562252045,0.771008908748627,-0.633296370506287,0.0669402852654457,0.480907887220383,-0.733121156692505,0.480895966291428,-0.115519776940346,-0.986568748950958,-0.115486562252045,0.0749518945813179,-0.919758379459381,-0.385261684656143,0.860156893730164,-0.359931617975235,-0.361357659101486,0.771008908748627,-0.633296370506287,0.0669402852654457,0.0749518945813179,-0.919758379459381,-0.385261684656143,0.135299175977707,-0.737244665622711,-0.661939918994904,0.723605871200562,0.0150454575195909,-0.690049350261688,0.860156893730164,-0.359931617975235,-0.361357659101486,0.135299175977707,-0.737244665622711,-0.661939918994904,0.0491001084446907,-0.487911283969879,-0.871511220932007,0.396571934223175,0.391671687364578,-0.830255389213562,0.723605871200562,0.0150454575195909,-0.690049350261688,0.0491001084446907,-0.487911283969879,-0.871511220932007,-0.160504847764969,-0.238646999001503,-0.95775032043457,-0.0337685719132423,0.668304443359375,-0.743121027946472,0.396571934223175,0.391671687364578,-0.830255389213562,-0.160504847764969,-0.238646999001503,-0.95775032043457,-0.437323749065399,-0.056260459125042,-0.897542655467987,0.0999059304594994,-0.588000774383545,0.802666842937469,-0.322604954242706,-0.309312134981155,0.894568085670471,-0.400243759155273,-0.400973379611969,0.824029922485352,0.0247424151748419,-0.681326448917389,0.731561243534088,-0.322604954242706,-0.309312134981155,0.894568085670471,-0.642576336860657,0.0713641121983528,0.762891113758087,-0.722099304199219,-0.0181445740163326,0.691551446914673,-0.400243759155273,-0.400973379611969,0.824029922485352,
- -0.642576336860657,0.0713641121983528,0.762891113758087,-0.774290978908539,0.452010065317154,0.442900002002716,-0.854547798633575,0.364742606878281,0.369744449853897,-0.722099304199219,-0.0181445740163326,0.691551446914673,-0.774290978908539,0.452010065317154,0.442900002002716,-0.68241810798645,0.730679750442505,0.0203182399272919,-0.762146890163422,0.645033359527588,-0.0553544238209724,-0.854547798633575,0.364742606878281,0.369744449853897,-0.68241810798645,0.730679750442505,0.0203182399272919,-0.391564846038818,0.832684218883514,-0.391553193330765,-0.469592303037643,0.74763959646225,-0.469593584537506,-0.762146890163422,0.645033359527588,-0.0553544238209724,-0.391564846038818,0.832684218883514,-0.391553193330765,0.020338011905551,0.730692625045776,-0.68240362405777,-0.0553204640746117,0.645036220550537,-0.762147009372711,-0.469592303037643,0.74763959646225,-0.469593584537506,0.020338011905551,0.730692625045776,-0.68240362405777,0.442882627248764,0.452036648988724,-0.77428537607193,0.369718998670578,0.364760845899582,-0.854551017284393,-0.0553204640746117,0.645036220550537,-0.762147009372711,0.442882627248764,0.452036648988724,-0.77428537607193,0.762886106967926,0.0713809207081795,-0.642580389976501,0.691581189632416,-0.0180887654423714,-0.722072124481201,0.369718998670578,0.364760845899582,-0.854551017284393,0.762886106967926,0.0713809207081795,-0.642580389976501,0.894573211669922,-0.309321641921997,-0.322581708431244,0.824020564556122,-0.401000261306763,-0.400236189365387,0.691581189632416,-0.0180887654423714,-0.722072124481201,0.894573211669922,-0.309321641921997,-0.322581708431244,0.802669405937195,-0.587989568710327,0.0999499261379242,0.731575489044189,-0.6813103556633,0.024771437048912,0.824020564556122,-0.401000261306763,-0.400236189365387,0.802669405937195,-0.587989568710327,0.0999499261379242,0.51180624961853,-0.689997732639313,0.511817753314972,0.439040720462799,-0.783884644508362,0.439053654670715,0.731575489044189,-0.6813103556633,0.024771437048912,0.51180624961853,-0.689997732639313,0.511817753314972,
- 0.0999059304594994,-0.588000774383545,0.802666842937469,0.0247424151748419,-0.681326448917389,0.731561243534088,0.439040720462799,-0.783884644508362,0.439053654670715,-0.469592303037643,0.74763959646225,-0.469593584537506,-0.0553204640746117,0.645036220550537,-0.762147009372711,-0.412039816379547,0.0128191458061337,-0.91107565164566,-0.704505085945129,0.0852396115660667,-0.704561412334442,-0.762146890163422,0.645033359527588,-0.0553544238209724,-0.469592303037643,0.74763959646225,-0.469593584537506,-0.704505085945129,0.0852396115660667,-0.704561412334442,-0.911092936992645,0.0127954417839646,-0.412002325057983,-0.854547798633575,0.364742606878281,0.369744449853897,-0.762146890163422,0.645033359527588,-0.0553544238209724,-0.911092936992645,0.0127954417839646,-0.412002325057983,-0.976324498653412,-0.185079470276833,-0.111964531242847,-0.722099304199219,-0.0181445740163326,0.691551446914673,-0.854547798633575,0.364742606878281,0.369744449853897,-0.976324498653412,-0.185079470276833,-0.111964531242847,-0.882803082466125,-0.455381572246552,0.115265555679798,-0.400243759155273,-0.400973379611969,0.824029922485352,-0.722099304199219,-0.0181445740163326,0.691551446914673,-0.882803082466125,-0.455381572246552,0.115265555679798,-0.655581176280975,-0.725679337978363,0.208813279867172,0.0247424151748419,-0.681326448917389,0.731561243534088,-0.400243759155273,-0.400973379611969,0.824029922485352,-0.655581176280975,-0.725679337978363,0.208813279867172,-0.355540245771408,-0.923563718795776,0.143600612878799,0.439040720462799,-0.783884644508362,0.439053654670715,0.0247424151748419,-0.681326448917389,0.731561243534088,-0.355540245771408,-0.923563718795776,0.143600612878799,-0.0629508644342422,-0.996025145053864,-0.0630171820521355,0.731575489044189,-0.6813103556633,0.024771437048912,0.439040720462799,-0.783884644508362,0.439053654670715,-0.0629508644342422,-0.996025145053864,-0.0630171820521355,0.143570885062218,-0.923596203327179,-0.355467855930328,0.824020564556122,-0.401000261306763,-0.400236189365387,0.731575489044189,-0.6813103556633,0.024771437048912,
- 0.143570885062218,-0.923596203327179,-0.355467855930328,0.208967849612236,-0.725706160068512,-0.655502021312714,0.691581189632416,-0.0180887654423714,-0.722072124481201,0.824020564556122,-0.401000261306763,-0.400236189365387,0.208967849612236,-0.725706160068512,-0.655502021312714,0.11549100279808,-0.455237686634064,-0.882847905158997,0.369718998670578,0.364760845899582,-0.854551017284393,0.691581189632416,-0.0180887654423714,-0.722072124481201,0.11549100279808,-0.455237686634064,-0.882847905158997,-0.111905753612518,-0.184885486960411,-0.976368010044098,-0.0553204640746117,0.645036220550537,-0.762147009372711,0.369718998670578,0.364760845899582,-0.854551017284393,-0.111905753612518,-0.184885486960411,-0.976368010044098,-0.412039816379547,0.0128191458061337,-0.91107565164566,0.0874695852398872,-0.604417145252228,0.79185163974762,-0.336087137460709,-0.325060397386551,0.883957743644714,-0.38051450252533,-0.377491593360901,0.844220876693726,0.044664055109024,-0.657934188842773,0.751749694347382,-0.336087137460709,-0.325060397386551,0.883957743644714,-0.65679258108139,0.0564530082046986,0.751955091953278,-0.702473521232605,0.00546633172780275,0.711688816547394,-0.38051450252533,-0.377491593360901,0.844220876693726,-0.65679258108139,0.0564530082046986,0.751955091953278,-0.788794100284576,0.437982976436615,0.43124794960022,-0.834961593151093,0.388476341962814,0.38977587223053,-0.702473521232605,0.00546633172780275,0.711688816547394,-0.788794100284576,0.437982976436615,0.43124794960022,-0.696706831455231,0.717314779758453,0.00769307930022478,-0.742528915405273,0.668876469135284,-0.0354266166687012,-0.834961593151093,0.388476341962814,0.38977587223053,-0.696706831455231,0.717314779758453,0.00769307930022478,-0.405164867639542,0.819563210010529,-0.405163764953613,-0.449853241443634,0.771533966064453,-0.449852406978607,-0.742528915405273,0.668876469135284,-0.0354266166687012,-0.405164867639542,0.819563210010529,-0.405163764953613,0.00767070380970836,0.717334449291229,-0.696686804294586,-0.0354430973529816,0.668901741504669,-0.742505371570587,
- -0.449853241443634,0.771533966064453,-0.449852406978607,0.00767070380970836,0.717334449291229,-0.696686804294586,0.43115422129631,0.438044488430023,-0.788811087608337,0.389690965414047,0.388545483350754,-0.834969043731689,-0.0354430973529816,0.668901741504669,-0.742505371570587,0.43115422129631,0.438044488430023,-0.788811087608337,0.751935541629791,0.0564389452338219,-0.656816303730011,0.711694598197937,0.00547512527555227,-0.702467679977417,0.389690965414047,0.388545483350754,-0.834969043731689,0.751935541629791,0.0564389452338219,-0.656816303730011,0.88395082950592,-0.325153142213821,-0.336015671491623,0.844221472740173,-0.37756934762001,-0.380435794591904,0.711694598197937,0.00547512527555227,-0.702467679977417,0.88395082950592,-0.325153142213821,-0.336015671491623,0.791845679283142,-0.60442066192627,0.0874993428587914,0.751753211021423,-0.657928228378296,0.044695783406496,0.844221472740173,-0.37756934762001,-0.380435794591904,0.791845679283142,-0.60442066192627,0.0874993428587914,0.500319123268127,-0.706655263900757,0.500319063663483,0.459118753671646,-0.760539054870605,0.45911893248558,0.751753211021423,-0.657928228378296,0.044695783406496,0.500319123268127,-0.706655263900757,0.500319063663483,0.0874695852398872,-0.604417145252228,0.79185163974762,0.044664055109024,-0.657934188842773,0.751749694347382,0.459118753671646,-0.760539054870605,0.45911893248558,-0.449853241443634,0.771533966064453,-0.449852406978607,-0.0354430973529816,0.668901741504669,-0.742505371570587,-0.412079602479935,0.0127674173563719,-0.91105842590332,-0.704541087150574,0.0852064862847328,-0.704529523849487,-0.742528915405273,0.668876469135284,-0.0354266166687012,-0.449853241443634,0.771533966064453,-0.449852406978607,-0.704541087150574,0.0852064862847328,-0.704529523849487,-0.911085724830627,0.012788881547749,-0.412018567323685,-0.834961593151093,0.388476341962814,0.38977587223053,-0.742528915405273,0.668876469135284,-0.0354266166687012,-0.911085724830627,0.012788881547749,-0.412018567323685,-0.976314008235931,-0.18511101603508,-0.112003922462463,
- -0.702473521232605,0.00546633172780275,0.711688816547394,-0.834961593151093,0.388476341962814,0.38977587223053,-0.976314008235931,-0.18511101603508,-0.112003922462463,-0.88280326128006,-0.455388247966766,0.115238897502422,-0.38051450252533,-0.377491593360901,0.844220876693726,-0.702473521232605,0.00546633172780275,0.711688816547394,-0.88280326128006,-0.455388247966766,0.115238897502422,-0.655616939067841,-0.725661873817444,0.208761423826218,0.044664055109024,-0.657934188842773,0.751749694347382,-0.38051450252533,-0.377491593360901,0.844220876693726,-0.655616939067841,-0.725661873817444,0.208761423826218,-0.35552790760994,-0.923574388027191,0.143562898039818,0.459118753671646,-0.760539054870605,0.45911893248558,0.044664055109024,-0.657934188842773,0.751749694347382,-0.35552790760994,-0.923574388027191,0.143562898039818,-0.0629897564649582,-0.996023774147034,-0.0629995912313461,0.751753211021423,-0.657928228378296,0.044695783406496,0.459118753671646,-0.760539054870605,0.45911893248558,-0.0629897564649582,-0.996023774147034,-0.0629995912313461,0.143520623445511,-0.923587918281555,-0.355509787797928,0.844221472740173,-0.37756934762001,-0.380435794591904,0.751753211021423,-0.657928228378296,0.044695783406496,0.143520623445511,-0.923587918281555,-0.355509787797928,0.208965122699738,-0.725621223449707,-0.655597031116486,0.711694598197937,0.00547512527555227,-0.702467679977417,0.844221472740173,-0.37756934762001,-0.380435794591904,0.208965122699738,-0.725621223449707,-0.655597031116486,0.115507170557976,-0.455255717039108,-0.8828364610672,0.389690965414047,0.388545483350754,-0.834969043731689,0.711694598197937,0.00547512527555227,-0.702467679977417,0.115507170557976,-0.455255717039108,-0.8828364610672,-0.111851081252098,-0.184981644153595,-0.976356029510498,-0.0354430973529816,0.668901741504669,-0.742505371570587,0.389690965414047,0.388545483350754,-0.834969043731689,-0.111851081252098,-0.184981644153595,-0.976356029510498,-0.412079602479935,0.0127674173563719,-0.91105842590332,-0.541685819625854,-0.642754912376404,-0.541703343391418,
- -0.541685879230499,-0.642754912376404,-0.541703402996063,-0.541685819625854,-0.642754912376404,-0.541703402996063,-0.541685879230499,-0.642754852771759,-0.541703343391418,-0.541685819625854,-0.642754971981049,-0.541703402996063,-0.541685879230499,-0.642754912376404,-0.541703343391418,-0.541685819625854,-0.642754971981049,-0.541703343391418,-0.541685819625854,-0.642754912376404,-0.541703402996063,-0.541685879230499,-0.642754971981049,-0.541703402996063,-0.541685819625854,-0.642754852771759,-0.541703343391418,-0.541685819625854,-0.642754971981049,-0.541703343391418,-0.541685819625854,-0.642754912376404,-0.541703343391418,0.428912997245789,0.0326915681362152,0.902754068374634,0.144407093524933,0.220735862851143,0.964583992958069,-0.304621011018753,-0.288179218769073,0.907831907272339,0.116320207715034,-0.565810441970825,0.816289246082306,0.144407093524933,0.220735862851143,0.964583992958069,-0.0712142959237099,0.477372854948044,0.875810325145721,-0.623331427574158,0.0909602418541908,0.776649296283722,-0.304621011018753,-0.288179218769073,0.907831907272339,-0.0712142959237099,0.477372854948044,0.875810325145721,-0.160110235214233,0.733881056308746,0.660138845443726,-0.754503011703491,0.47011262178421,0.457951217889786,-0.623331427574158,0.0909602418541908,0.776649296283722,-0.160110235214233,0.733881056308746,0.660138845443726,-0.0984997302293777,0.921631693840027,0.375356644392014,-0.662959039211273,0.747742474079132,0.0369650945067406,-0.754503011703491,0.47011262178421,0.457951217889786,-0.0984997302293777,0.921631693840027,0.375356644392014,0.0975854694843292,0.99042010307312,0.0976988300681114,-0.373262137174606,0.849321603775024,-0.373267114162445,-0.662959039211273,0.747742474079132,0.0369650945067406,0.0975854694843292,0.99042010307312,0.0976988300681114,0.375426530838013,0.921612560749054,-0.0984138771891594,0.0369719378650188,0.747734189033508,-0.662968039512634,-0.373262137174606,0.849321603775024,-0.373267114162445,0.375426530838013,0.921612560749054,-0.0984138771891594,0.660205781459808,0.733758926391602,-0.160394102334976,
- 0.457910388708115,0.470135033130646,-0.754513800144196,0.0369719378650188,0.747734189033508,-0.662968039512634,0.660205781459808,0.733758926391602,-0.160394102334976,0.875859618186951,0.477234363555908,-0.0715349316596985,0.776642262935638,0.0909421220421791,-0.623342752456665,0.457910388708115,0.470135033130646,-0.754513800144196,0.875859618186951,0.477234363555908,-0.0715349316596985,0.964658081531525,0.220627754926682,0.144076585769653,0.90782767534256,-0.28822734951973,-0.304587781429291,0.776642262935638,0.0909421220421791,-0.623342752456665,0.964658081531525,0.220627754926682,0.144076585769653,0.902754664421082,0.0328181721270084,0.428902149200439,0.816291093826294,-0.565810918807983,0.116305388510227,0.90782767534256,-0.28822734951973,-0.304587781429291,0.902754664421082,0.0328181721270084,0.428902149200439,0.706577241420746,-0.0360591262578964,0.706716597080231,0.526590466499329,-0.667407810688019,0.52656352519989,0.816291093826294,-0.565810918807983,0.116305388510227,0.706577241420746,-0.0360591262578964,0.706716597080231,0.428912997245789,0.0326915681362152,0.902754068374634,0.116320207715034,-0.565810441970825,0.816289246082306,0.526590466499329,-0.667407810688019,0.52656352519989,0.541667938232422,0.642762243747711,0.541712641716003,0.541667938232422,0.642762243747711,0.541712641716003,0.541667938232422,0.642762184143066,0.541712641716003,0.541667938232422,0.642762243747711,0.541712641716003,0.541667938232422,0.642762184143066,0.541712582111359,0.541667938232422,0.642762243747711,0.541712641716003,0.541667938232422,0.642762303352356,0.541712641716003,0.541667878627777,0.642762184143066,0.541712582111359,0.541667997837067,0.642762243747711,0.541712641716003,0.541667938232422,0.642762243747711,0.541712641716003,0.541667938232422,0.642762243747711,0.541712701320648,0.541667938232422,0.642762184143066,0.541712641716003,-0.45115926861763,0.770014643669128,-0.451146155595779,-0.0367308035492897,0.667383551597595,-0.743807852268219,-0.412117570638657,0.0126756746321917,-0.911042511463165,-0.704554498195648,0.0851838961243629,-0.704518854618073,
- -0.743801534175873,0.667390108108521,-0.0367374159395695,-0.45115926861763,0.770014643669128,-0.451146155595779,-0.704554498195648,0.0851838961243629,-0.704518854618073,-0.911064445972443,0.0128031242638826,-0.412065029144287,-0.836269378662109,0.386950224637985,0.388488233089447,-0.743801534175873,0.667390108108521,-0.0367374159395695,-0.911064445972443,0.0128031242638826,-0.412065029144287,-0.976314306259155,-0.185109972953796,-0.112003311514854,-0.70378440618515,0.00392732582986355,0.71040278673172,-0.836269378662109,0.386950224637985,0.388488233089447,-0.976314306259155,-0.185109972953796,-0.112003311514854,-0.882799386978149,-0.455401360988617,0.115216329693794,-0.381822496652603,-0.379041403532028,0.842934846878052,-0.70378440618515,0.00392732582986355,0.71040278673172,-0.882799386978149,-0.455401360988617,0.115216329693794,-0.655585467815399,-0.725705921649933,0.208707123994827,0.0433812104165554,-0.65946763753891,0.750480175018311,-0.381822496652603,-0.379041403532028,0.842934846878052,-0.655585467815399,-0.725705921649933,0.208707123994827,-0.355515420436859,-0.92358535528183,0.143523171544075,0.457824796438217,-0.762099623680115,0.45782145857811,0.0433812104165554,-0.65946763753891,0.750480175018311,-0.355515420436859,-0.92358535528183,0.143523171544075,-0.063062384724617,-0.996017634868622,-0.0630244538187981,0.750487506389618,-0.659459948539734,0.0433704294264317,0.457824796438217,-0.762099623680115,0.45782145857811,-0.063062384724617,-0.996017634868622,-0.0630244538187981,0.14341913163662,-0.923594653606415,-0.35553303360939,0.84294331073761,-0.379063606262207,-0.381781935691834,0.750487506389618,-0.659459948539734,0.0433704294264317,0.14341913163662,-0.923594653606415,-0.35553303360939,0.208893954753876,-0.725633800029755,-0.655605673789978,0.710426867008209,0.00395564967766404,-0.703759908676147,0.84294331073761,-0.379063606262207,-0.381781935691834,0.208893954753876,-0.725633800029755,-0.655605673789978,0.115469388663769,-0.455261170864105,-0.882838726043701,0.388464570045471,0.386983603239059,-0.836264848709106,
- 0.710426867008209,0.00395564967766404,-0.703759908676147,0.115469388663769,-0.455261170864105,-0.882838726043701,-0.111872561275959,-0.185051620006561,-0.976340293884277,-0.0367308035492897,0.667383551597595,-0.743807852268219,0.388464570045471,0.386983603239059,-0.836264848709106,-0.111872561275959,-0.185051620006561,-0.976340293884277,-0.412117570638657,0.0126756746321917,-0.911042511463165,-0.373262137174606,0.849321603775024,-0.373267114162445,0.0369719378650188,0.747734189033508,-0.662968039512634,-0.0367308035492897,0.667383551597595,-0.743807852268219,-0.45115926861763,0.770014643669128,-0.451146155595779,-0.662959039211273,0.747742474079132,0.0369650945067406,-0.373262137174606,0.849321603775024,-0.373267114162445,-0.45115926861763,0.770014643669128,-0.451146155595779,-0.743801534175873,0.667390108108521,-0.0367374159395695,-0.754503011703491,0.47011262178421,0.457951217889786,-0.662959039211273,0.747742474079132,0.0369650945067406,-0.743801534175873,0.667390108108521,-0.0367374159395695,-0.836269378662109,0.386950224637985,0.388488233089447,-0.623331427574158,0.0909602418541908,0.776649296283722,-0.754503011703491,0.47011262178421,0.457951217889786,-0.836269378662109,0.386950224637985,0.388488233089447,-0.70378440618515,0.00392732582986355,0.71040278673172,-0.304621011018753,-0.288179218769073,0.907831907272339,-0.623331427574158,0.0909602418541908,0.776649296283722,-0.70378440618515,0.00392732582986355,0.71040278673172,-0.381822496652603,-0.379041403532028,0.842934846878052,0.116320207715034,-0.565810441970825,0.816289246082306,-0.304621011018753,-0.288179218769073,0.907831907272339,-0.381822496652603,-0.379041403532028,0.842934846878052,0.0433812104165554,-0.65946763753891,0.750480175018311,0.526590466499329,-0.667407810688019,0.52656352519989,0.116320207715034,-0.565810441970825,0.816289246082306,0.0433812104165554,-0.65946763753891,0.750480175018311,0.457824796438217,-0.762099623680115,0.45782145857811,0.816291093826294,-0.565810918807983,0.116305388510227,0.526590466499329,-0.667407810688019,0.52656352519989,
- 0.457824796438217,-0.762099623680115,0.45782145857811,0.750487506389618,-0.659459948539734,0.0433704294264317,0.90782767534256,-0.28822734951973,-0.304587781429291,0.816291093826294,-0.565810918807983,0.116305388510227,0.750487506389618,-0.659459948539734,0.0433704294264317,0.84294331073761,-0.379063606262207,-0.381781935691834,0.776642262935638,0.0909421220421791,-0.623342752456665,0.90782767534256,-0.28822734951973,-0.304587781429291,0.84294331073761,-0.379063606262207,-0.381781935691834,0.710426867008209,0.00395564967766404,-0.703759908676147,0.457910388708115,0.470135033130646,-0.754513800144196,0.776642262935638,0.0909421220421791,-0.623342752456665,0.710426867008209,0.00395564967766404,-0.703759908676147,0.388464570045471,0.386983603239059,-0.836264848709106,0.0369719378650188,0.747734189033508,-0.662968039512634,0.457910388708115,0.470135033130646,-0.754513800144196,0.388464570045471,0.386983603239059,-0.836264848709106,-0.0367308035492897,0.667383551597595,-0.743807852268219,0.0822845846414566,-0.611154556274414,0.787222504615784,-0.341623872518539,-0.331569641828537,0.879405796527863,-0.387900292873383,-0.386240541934967,0.836870074272156,0.0372935943305492,-0.666709303855896,0.744384229183197,-0.341623872518539,-0.331569641828537,0.879405796527863,-0.662582397460938,0.0502504371106625,0.747301340103149,-0.709857940673828,-0.00328017608262599,0.704337298870087,-0.387900292873383,-0.386240541934967,0.836870074272156,-0.662582397460938,0.0502504371106625,0.747301340103149,-0.794692277908325,0.43209770321846,0.426328331232071,-0.842348277568817,0.379753261804581,0.382409036159515,-0.709857940673828,-0.00328017608262599,0.704337298870087,-0.794692277908325,0.43209770321846,0.426328331232071,-0.702512681484222,0.71166718006134,0.00239651976153255,-0.749913036823273,0.660147964954376,-0.0428361929953098,-0.842348277568817,0.379753261804581,0.382409036159515,-0.702512681484222,0.71166718006134,0.00239651976153255,-0.410772532224655,0.813977122306824,-0.410739988088608,-0.457269877195358,0.762786328792572,-0.457232117652893,
- -0.749913036823273,0.660147964954376,-0.0428361929953098,-0.410772532224655,0.813977122306824,-0.410739988088608,0.00243214541114867,0.711654365062714,-0.702525436878204,-0.0428165011107922,0.660151541233063,-0.749911248683929,-0.457269877195358,0.762786328792572,-0.457232117652893,0.00243214541114867,0.711654365062714,-0.702525436878204,0.426248669624329,0.43215137720108,-0.794705808162689,0.382317155599594,0.379783123731613,-0.842376589775085,-0.0428165011107922,0.660151541233063,-0.749911248683929,0.426248669624329,0.43215137720108,-0.794705808162689,0.747292995452881,0.0502565875649452,-0.662591457366943,0.704347491264343,-0.00326154194772244,-0.709847807884216,0.382317155599594,0.379783123731613,-0.842376589775085,0.747292995452881,0.0502565875649452,-0.662591457366943,0.879398345947266,-0.331656247377396,-0.341558992862701,0.836852252483368,-0.386330008506775,-0.387849539518356,0.704347491264343,-0.00326154194772244,-0.709847807884216,0.879398345947266,-0.331656247377396,-0.341558992862701,0.787224233150482,-0.611154973506927,0.082265742123127,0.744388163089752,-0.666705071926117,0.0372908227145672,0.836852252483368,-0.386330008506775,-0.387849539518356,0.787224233150482,-0.611154973506927,0.082265742123127,0.495449393987656,-0.713476955890656,0.495459854602814,0.451721429824829,-0.769336640834808,0.451739728450775,0.744388163089752,-0.666705071926117,0.0372908227145672,0.495449393987656,-0.713476955890656,0.495459854602814,0.0822845846414566,-0.611154556274414,0.787222504615784,0.0372935943305492,-0.666709303855896,0.744384229183197,0.451721429824829,-0.769336640834808,0.451739728450775,-0.457269877195358,0.762786328792572,-0.457232117652893,-0.0428165011107922,0.660151541233063,-0.749911248683929,-0.447802901268005,-0.0867350473999977,-0.889915525913239,-0.706905066967011,-0.0226543825119734,-0.706945538520813,-0.749913036823273,0.660147964954376,-0.0428361929953098,-0.457269877195358,0.762786328792572,-0.457232117652893,-0.706905066967011,-0.0226543825119734,-0.706945538520813,-0.889893293380737,-0.0868638306856155,-0.447822004556656,
- -0.842348277568817,0.379753261804581,0.382409036159515,-0.749913036823273,0.660147964954376,-0.0428361929953098,-0.889893293380737,-0.0868638306856155,-0.447822004556656,-0.947695314884186,-0.262220680713654,-0.181971952319145,-0.709857940673828,-0.00328017608262599,0.704337298870087,-0.842348277568817,0.379753261804581,0.382409036159515,-0.947695314884186,-0.262220680713654,-0.181971952319145,-0.864842176437378,-0.501672863960266,0.0192965883761644,-0.387900292873383,-0.386240541934967,0.836870074272156,-0.709857940673828,-0.00328017608262599,0.704337298870087,-0.864842176437378,-0.501672863960266,0.0192965883761644,-0.663572907447815,-0.741102397441864,0.102168053388596,0.0372935943305492,-0.666709303855896,0.744384229183197,-0.387900292873383,-0.386240541934967,0.836870074272156,-0.663572907447815,-0.741102397441864,0.102168053388596,-0.397752106189728,-0.916419744491577,0.0443635731935501,0.451721429824829,-0.769336640834808,0.451739728450775,0.0372935943305492,-0.666709303855896,0.744384229183197,-0.397752106189728,-0.916419744491577,0.0443635731935501,-0.138599127531052,-0.980594217777252,-0.13865539431572,0.744388163089752,-0.666705071926117,0.0372908227145672,0.451721429824829,-0.769336640834808,0.451739728450775,-0.138599127531052,-0.980594217777252,-0.13865539431572,0.0444669537246227,-0.916447281837463,-0.397677302360535,0.836852252483368,-0.386330008506775,-0.387849539518356,0.744388163089752,-0.666705071926117,0.0372908227145672,0.0444669537246227,-0.916447281837463,-0.397677302360535,0.102506175637245,-0.741095066070557,-0.663528978824615,0.704347491264343,-0.00326154194772244,-0.709847807884216,0.836852252483368,-0.386330008506775,-0.387849539518356,0.102506175637245,-0.741095066070557,-0.663528978824615,0.0196702256798744,-0.501508235931396,-0.864929258823395,0.382317155599594,0.379783123731613,-0.842376589775085,0.704347491264343,-0.00326154194772244,-0.709847807884216,0.0196702256798744,-0.501508235931396,-0.864929258823395,-0.181784749031067,-0.261965394020081,-0.947801828384399,-0.0428165011107922,0.660151541233063,-0.749911248683929,
- 0.382317155599594,0.379783123731613,-0.842376589775085,-0.181784749031067,-0.261965394020081,-0.947801828384399,-0.447802901268005,-0.0867350473999977,-0.889915525913239,0.161929339170456,-0.496520757675171,0.8527871966362,-0.259343057870865,-0.229446589946747,0.938134074211121,-0.35025155544281,-0.347960352897644,0.8696249127388,0.0783998370170593,-0.61952143907547,0.781054735183716,-0.259343057870865,-0.229446589946747,0.938134074211121,-0.582393229007721,0.135996744036675,0.801450610160828,-0.680290877819061,0.0249787177890539,0.732516527175903,-0.35025155544281,-0.347960352897644,0.8696249127388,-0.582393229007721,0.135996744036675,0.801450610160828,-0.720267832279205,0.50190544128418,0.478858351707459,-0.822292149066925,0.400103718042374,0.40466371178627,-0.680290877819061,0.0249787177890539,0.732516527175903,-0.720267832279205,0.50190544128418,0.478858351707459,-0.635621428489685,0.769899427890778,0.0569237060844898,-0.736486554145813,0.67592442035675,-0.0267153289169073,-0.822292149066925,0.400103718042374,0.40466371178627,-0.635621428489685,0.769899427890778,0.0569237060844898,-0.351093649864197,0.868037104606628,-0.3510622382164,-0.444982886314392,0.777186453342438,-0.444939851760864,-0.736486554145813,0.67592442035675,-0.0267153289169073,-0.351093649864197,0.868037104606628,-0.3510622382164,0.0568833537399769,0.769932746887207,-0.635584473609924,-0.0267131868749857,0.675961852073669,-0.736452281475067,-0.444982886314392,0.777186453342438,-0.444939851760864,0.0568833537399769,0.769932746887207,-0.635584473609924,0.478838980197906,0.501897871494293,-0.720285832881927,0.404653310775757,0.400108873844147,-0.822294771671295,-0.0267131868749857,0.675961852073669,-0.736452281475067,0.478838980197906,0.501897871494293,-0.720285832881927,0.801434636116028,0.135981366038322,-0.58241868019104,0.732518911361694,0.0249938983470201,-0.680287778377533,0.404653310775757,0.400108873844147,-0.822294771671295,0.801434636116028,0.135981366038322,-0.58241868019104,0.938122272491455,-0.229491516947746,-0.259346067905426,0.869624078273773,-0.347968012094498,-0.350246161222458,
- 0.732518911361694,0.0249938983470201,-0.680287778377533,0.938122272491455,-0.229491516947746,-0.259346067905426,0.852766335010529,-0.496539324522018,0.161982491612434,0.781060338020325,-0.619509339332581,0.0784405320882797,0.869624078273773,-0.347968012094498,-0.350246161222458,0.852766335010529,-0.496539324522018,0.161982491612434,0.568777024745941,-0.594137907028198,0.568764328956604,0.491784691810608,-0.718532800674438,0.491791039705276,0.781060338020325,-0.619509339332581,0.0784405320882797,0.568777024745941,-0.594137907028198,0.568764328956604,0.161929339170456,-0.496520757675171,0.8527871966362,0.0783998370170593,-0.61952143907547,0.781054735183716,0.491784691810608,-0.718532800674438,0.491791039705276,-0.444982886314392,0.777186453342438,-0.444939851760864,-0.0267131868749857,0.675961852073669,-0.736452281475067,-0.482970267534256,-0.202098518610001,-0.851995229721069,-0.699210047721863,-0.148610070347786,-0.699299931526184,-0.736486554145813,0.67592442035675,-0.0267153289169073,-0.444982886314392,0.777186453342438,-0.444939851760864,-0.699210047721863,-0.148610070347786,-0.699299931526184,-0.851983726024628,-0.202161580324173,-0.482964217662811,-0.822292149066925,0.400103718042374,0.40466371178627,-0.736486554145813,0.67592442035675,-0.0267153289169073,-0.851983726024628,-0.202161580324173,-0.482964217662811,-0.900240898132324,-0.348459839820862,-0.261040240526199,-0.680290877819061,0.0249787177890539,0.732516527175903,-0.822292149066925,0.400103718042374,0.40466371178627,-0.900240898132324,-0.348459839820862,-0.261040240526199,-0.831105530261993,-0.548272728919983,-0.0930627211928368,-0.35025155544281,-0.347960352897644,0.8696249127388,-0.680290877819061,0.0249787177890539,0.732516527175903,-0.831105530261993,-0.548272728919983,-0.0930627211928368,-0.663120567798615,-0.748129308223724,-0.0239512901753187,0.0783998370170593,-0.61952143907547,0.781054735183716,-0.35025155544281,-0.347960352897644,0.8696249127388,-0.663120567798615,-0.748129308223724,-0.0239512901753187,-0.441241234540939,-0.894475400447845,-0.0722492635250092,
- 0.491784691810608,-0.718532800674438,0.491791039705276,0.0783998370170593,-0.61952143907547,0.781054735183716,-0.441241234540939,-0.894475400447845,-0.0722492635250092,-0.224886581301689,-0.948053121566772,-0.224991843104362,0.781060338020325,-0.619509339332581,0.0784405320882797,0.491784691810608,-0.718532800674438,0.491791039705276,-0.224886581301689,-0.948053121566772,-0.224991843104362,-0.0721245482563972,-0.894514501094818,-0.441182374954224,0.869624078273773,-0.347968012094498,-0.350246161222458,0.781060338020325,-0.619509339332581,0.0784405320882797,-0.0721245482563972,-0.894514501094818,-0.441182374954224,-0.0238014291971922,-0.748232185840607,-0.663009881973267,0.732518911361694,0.0249938983470201,-0.680287778377533,0.869624078273773,-0.347968012094498,-0.350246161222458,-0.0238014291971922,-0.748232185840607,-0.663009881973267,-0.093051940202713,-0.548291504383087,-0.831094324588776,0.404653310775757,0.400108873844147,-0.822294771671295,0.732518911361694,0.0249938983470201,-0.680287778377533,-0.093051940202713,-0.548291504383087,-0.831094324588776,-0.261093437671661,-0.348281562328339,-0.900294482707977,-0.0267131868749857,0.675961852073669,-0.736452281475067,0.404653310775757,0.400108873844147,-0.822294771671295,-0.261093437671661,-0.348281562328339,-0.900294482707977,-0.482970267534256,-0.202098518610001,-0.851995229721069,0.117413327097893,-0.576524376869202,0.808599829673767,-0.314473986625671,-0.300487518310547,0.90045177936554,-0.3736532330513,-0.38503435254097,0.843879044055939,0.0579601377248764,-0.656695067882538,0.751925706863403,-0.314473986625671,-0.300487518310547,0.90045177936554,-0.6471306681633,0.0739222168922424,0.758786857128143,-0.709545016288757,-0.0100097507238388,0.704588949680328,-0.3736532330513,-0.38503435254097,0.843879044055939,-0.6471306681633,0.0739222168922424,0.758786857128143,-0.78769838809967,0.442647635936737,0.428478956222534,-0.852741777896881,0.363639920949936,0.374963283538818,-0.709545016288757,-0.0100097507238388,0.704588949680328,-0.78769838809967,0.442647635936737,0.428478956222534,
- -0.702272713184357,0.711907505989075,-0.000880539766512811,-0.767666280269623,0.638244569301605,-0.057726826518774,-0.852741777896881,0.363639920949936,0.374963283538818,-0.702272713184357,0.711907505989075,-0.000880539766512811,-0.414389908313751,0.810276210308075,-0.414407402276993,-0.476426959037781,0.738932013511658,-0.476441860198975,-0.767666280269623,0.638244569301605,-0.057726826518774,-0.414389908313751,0.810276210308075,-0.414407402276993,-0.000906572269741446,0.711919069290161,-0.702260971069336,-0.0577605254948139,0.63825249671936,-0.767657041549683,-0.476426959037781,0.738932013511658,-0.476441860198975,-0.000906572269741446,0.711919069290161,-0.702260971069336,0.428396016359329,0.442677617073059,-0.787726700305939,0.374886363744736,0.363661617040634,-0.852766335010529,-0.0577605254948139,0.63825249671936,-0.767657041549683,0.428396016359329,0.442677617073059,-0.787726700305939,0.7587651014328,0.0738932117819786,-0.647159457206726,0.704584717750549,-0.0100220264866948,-0.709549069404602,0.374886363744736,0.363661617040634,-0.852766335010529,0.7587651014328,0.0738932117819786,-0.647159457206726,0.900440514087677,-0.300565153360367,-0.314431667327881,0.843864023685455,-0.385101050138474,-0.373618245124817,0.704584717750549,-0.0100220264866948,-0.709549069404602,0.900440514087677,-0.300565153360367,-0.314431667327881,0.808590531349182,-0.576532244682312,0.117439106106758,0.751904547214508,-0.656716525554657,0.0579923465847969,0.843864023685455,-0.385101050138474,-0.373618245124817,0.808590531349182,-0.576532244682312,0.117439106106758,0.522108912467957,-0.67439740896225,0.522101938724518,0.465690791606903,-0.752520143985748,0.465666651725769,0.751904547214508,-0.656716525554657,0.0579923465847969,0.522108912467957,-0.67439740896225,0.522101938724518,0.117413327097893,-0.576524376869202,0.808599829673767,0.0579601377248764,-0.656695067882538,0.751925706863403,0.465690791606903,-0.752520143985748,0.465666651725769,-0.476426959037781,0.738932013511658,-0.476441860198975,-0.0577605254948139,0.63825249671936,-0.767657041549683,
- -0.394006103277206,0.0586277954280376,-0.917236089706421,-0.70068621635437,0.134535282850266,-0.700670480728149,-0.767666280269623,0.638244569301605,-0.057726826518774,-0.476426959037781,0.738932013511658,-0.476441860198975,-0.70068621635437,0.134535282850266,-0.700670480728149,-0.917247772216797,0.0586435906589031,-0.393976509571075,-0.852741777896881,0.363639920949936,0.374963283538818,-0.767666280269623,0.638244569301605,-0.057726826518774,-0.917247772216797,0.0586435906589031,-0.393976509571075,-0.985657751560211,-0.148914143443108,-0.0793945640325546,-0.709545016288757,-0.0100097507238388,0.704588949680328,-0.852741777896881,0.363639920949936,0.374963283538818,-0.985657751560211,-0.148914143443108,-0.0793945640325546,-0.887591540813446,-0.432381123304367,0.158833131194115,-0.3736532330513,-0.38503435254097,0.843879044055939,-0.709545016288757,-0.0100097507238388,0.704588949680328,-0.887591540813446,-0.432381123304367,0.158833131194115,-0.644976019859314,-0.717098593711853,0.264150410890579,0.0579601377248764,-0.656695067882538,0.751925706863403,-0.3736532330513,-0.38503435254097,0.843879044055939,-0.644976019859314,-0.717098593711853,0.264150410890579,-0.310772180557251,-0.926042914390564,0.214161649346352,0.465690791606903,-0.752520143985748,0.465666651725769,0.0579601377248764,-0.656695067882538,0.751925706863403,-0.310772180557251,-0.926042914390564,0.214161649346352,0.00517124542966485,-0.999973297119141,0.00517405709251761,0.751904547214508,-0.656716525554657,0.0579923465847969,0.465690791606903,-0.752520143985748,0.465666651725769,0.00517124542966485,-0.999973297119141,0.00517405709251761,0.214093953371048,-0.926055610179901,-0.310780733823776,0.843864023685455,-0.385101050138474,-0.373618245124817,0.751904547214508,-0.656716525554657,0.0579923465847969,0.214093953371048,-0.926055610179901,-0.310780733823776,0.264295279979706,-0.717042505741119,-0.644979000091553,0.704584717750549,-0.0100220264866948,-0.709549069404602,0.843864023685455,-0.385101050138474,-0.373618245124817,0.264295279979706,-0.717042505741119,-0.644979000091553,
- 0.159043714404106,-0.432252913713455,-0.887616217136383,0.374886363744736,0.363661617040634,-0.852766335010529,0.704584717750549,-0.0100220264866948,-0.709549069404602,0.159043714404106,-0.432252913713455,-0.887616217136383,-0.0792521983385086,-0.148820653557777,-0.985683262348175,-0.0577605254948139,0.63825249671936,-0.767657041549683,0.374886363744736,0.363661617040634,-0.852766335010529,-0.0792521983385086,-0.148820653557777,-0.985683262348175,-0.394006103277206,0.0586277954280376,-0.917236089706421,0.0805307105183601,-0.619477033615112,0.780873239040375,-0.331314623355865,-0.330479502677917,0.883749842643738,-0.38810408115387,-0.375917285680771,0.84146386384964,0.029548579826951,-0.67044460773468,0.741370975971222,-0.331314623355865,-0.330479502677917,0.883749842643738,-0.63826596736908,0.0656988397240639,0.767007231712341,-0.695589661598206,0.0235983021557331,0.718051612377167,-0.38810408115387,-0.375917285680771,0.84146386384964,-0.63826596736908,0.0656988397240639,0.767007231712341,-0.757124841213226,0.462827384471893,0.46103447675705,-0.81144118309021,0.419490158557892,0.406928896903992,-0.695589661598206,0.0235983021557331,0.718051612377167,-0.757124841213226,0.462827384471893,0.46103447675705,-0.655403196811676,0.75375109910965,0.0480190552771091,-0.707493603229523,0.706686496734619,-0.00684931082651019,-0.81144118309021,0.419490158557892,0.406928896903992,-0.655403196811676,0.75375109910965,0.0480190552771091,-0.360627055168152,0.860174417495728,-0.360621869564056,-0.413519740104675,0.811169803142548,-0.413527309894562,-0.707493603229523,0.706686496734619,-0.00684931082651019,-0.360627055168152,0.860174417495728,-0.360621869564056,0.047980047762394,0.753780722618103,-0.655372023582459,-0.00688879936933517,0.706705331802368,-0.707474410533905,-0.413519740104675,0.811169803142548,-0.413527309894562,0.047980047762394,0.753780722618103,-0.655372023582459,0.461003839969635,0.462856322526932,-0.757125794887543,0.406899839639664,0.419511318206787,-0.811444818973541,-0.00688879936933517,0.706705331802368,-0.707474410533905,
- 0.461003839969635,0.462856322526932,-0.757125794887543,0.767001688480377,0.0657009929418564,-0.638272523880005,0.718058824539185,0.0236359853297472,-0.695580899715424,0.406899839639664,0.419511318206787,-0.811444818973541,0.767001688480377,0.0657009929418564,-0.638272523880005,0.883745729923248,-0.330508649349213,-0.331296801567078,0.841462731361389,-0.375941336154938,-0.388083130121231,0.718058824539185,0.0236359853297472,-0.695580899715424,0.883745729923248,-0.330508649349213,-0.331296801567078,0.78085857629776,-0.619489431381226,0.0805782601237297,0.74136209487915,-0.670452892780304,0.0295845363289118,0.841462731361389,-0.375941336154938,-0.388083130121231,0.78085857629776,-0.619489431381226,0.0805782601237297,0.487087696790695,-0.724924623966217,0.4870625436306,0.44377213716507,-0.77855908870697,0.443747609853745,0.74136209487915,-0.670452892780304,0.0295845363289118,0.487087696790695,-0.724924623966217,0.4870625436306,0.0805307105183601,-0.619477033615112,0.780873239040375,0.029548579826951,-0.67044460773468,0.741370975971222,0.44377213716507,-0.77855908870697,0.443747609853745,-0.413519740104675,0.811169803142548,-0.413527309894562,-0.00688879936933517,0.706705331802368,-0.707474410533905,-0.412095725536346,0.0127617856487632,-0.911051094532013,-0.704549729824066,0.0852255150675774,-0.704518556594849,-0.707493603229523,0.706686496734619,-0.00684931082651019,-0.413519740104675,0.811169803142548,-0.413527309894562,-0.704549729824066,0.0852255150675774,-0.704518556594849,-0.911106765270233,0.0128834722563624,-0.411969006061554,-0.81144118309021,0.419490158557892,0.406928896903992,-0.707493603229523,0.706686496734619,-0.00684931082651019,-0.911106765270233,0.0128834722563624,-0.411969006061554,-0.976337134838104,-0.185014173388481,-0.111961387097836,-0.695589661598206,0.0235983021557331,0.718051612377167,-0.81144118309021,0.419490158557892,0.406928896903992,-0.976337134838104,-0.185014173388481,-0.111961387097836,-0.882806420326233,-0.455375850200653,0.115263342857361,-0.38810408115387,-0.375917285680771,0.84146386384964,
- -0.695589661598206,0.0235983021557331,0.718051612377167,-0.882806420326233,-0.455375850200653,0.115263342857361,-0.65554678440094,-0.725705564022064,0.208829700946808,0.029548579826951,-0.67044460773468,0.741370975971222,-0.38810408115387,-0.375917285680771,0.84146386384964,-0.65554678440094,-0.725705564022064,0.208829700946808,-0.355459988117218,-0.923583984375,0.143668726086617,0.44377213716507,-0.77855908870697,0.443747609853745,0.029548579826951,-0.67044460773468,0.741370975971222,-0.355459988117218,-0.923583984375,0.143668726086617,-0.0629595890641212,-0.996028959751129,-0.0629473552107811,0.74136209487915,-0.670452892780304,0.0295845363289118,0.44377213716507,-0.77855908870697,0.443747609853745,-0.0629595890641212,-0.996028959751129,-0.0629473552107811,0.143507555127144,-0.923614919185638,-0.35544490814209,0.841462731361389,-0.375941336154938,-0.388083130121231,0.74136209487915,-0.670452892780304,0.0295845363289118,0.143507555127144,-0.923614919185638,-0.35544490814209,0.208898410201073,-0.72571849822998,-0.655510604381561,0.718058824539185,0.0236359853297472,-0.695580899715424,0.841462731361389,-0.375941336154938,-0.388083130121231,0.208898410201073,-0.72571849822998,-0.655510604381561,0.115445338189602,-0.455289602279663,-0.882827162742615,0.406899839639664,0.419511318206787,-0.811444818973541,0.718058824539185,0.0236359853297472,-0.695580899715424,0.115445338189602,-0.455289602279663,-0.882827162742615,-0.111951142549515,-0.184972897171974,-0.97634619474411,-0.00688879936933517,0.706705331802368,-0.707474410533905,0.406899839639664,0.419511318206787,-0.811444818973541,-0.111951142549515,-0.184972897171974,-0.97634619474411,-0.412095725536346,0.0127617856487632,-0.911051094532013,0.138799116015434,-0.534153401851654,0.833915412425995,-0.279106676578522,-0.258508414030075,0.924809634685516,-0.375589668750763,-0.371720880270004,0.848973512649536,0.0495169833302498,-0.652079522609711,0.756531774997711,-0.279106676578522,-0.258508414030075,0.924809634685516,-0.595598042011261,0.118033714592457,0.794563412666321,
- -0.697513937950134,0.0112412609159946,0.716483175754547,-0.375589668750763,-0.371720880270004,0.848973512649536,-0.595598042011261,0.118033714592457,0.794563412666321,-0.725888133049011,0.494548290967941,0.478025436401367,-0.830008566379547,0.394227921962738,0.394550561904907,-0.697513937950134,0.0112412609159946,0.716483175754547,-0.725888133049011,0.494548290967941,0.478025436401367,-0.635031580924988,0.770145118236542,0.0600953474640846,-0.737575650215149,0.674572646617889,-0.0305599588900805,-0.830008566379547,0.394227921962738,0.394550561904907,-0.635031580924988,0.770145118236542,0.0600953474640846,-0.347319900989532,0.871058642864227,-0.347312241792679,-0.44492644071579,0.777217864990234,-0.444941431283951,-0.737575650215149,0.674572646617889,-0.0305599588900805,-0.347319900989532,0.871058642864227,-0.347312241792679,0.0600950866937637,0.770160615444183,-0.635012805461884,-0.0305365268141031,0.674601316452026,-0.737550437450409,-0.44492644071579,0.777217864990234,-0.444941431283951,0.0600950866937637,0.770160615444183,-0.635012805461884,0.477963656187058,0.494544804096222,-0.725931286811829,0.394509375095367,0.394258767366409,-0.830013573169708,-0.0305365268141031,0.674601316452026,-0.737550437450409,0.477963656187058,0.494544804096222,-0.725931286811829,0.794517278671265,0.117975398898125,-0.595671236515045,0.716468155384064,0.0112494369968772,-0.697529077529907,0.394509375095367,0.394258767366409,-0.830013573169708,0.794517278671265,0.117975398898125,-0.595671236515045,0.924784362316132,-0.258602261543274,-0.279103428125381,0.848978877067566,-0.371758580207825,-0.375540226697922,0.716468155384064,0.0112494369968772,-0.697529077529907,0.924784362316132,-0.258602261543274,-0.279103428125381,0.833908200263977,-0.534158408641815,0.13882315158844,0.75653338432312,-0.652075469493866,0.0495456159114838,0.848978877067566,-0.371758580207825,-0.375540226697922,0.833908200263977,-0.534158408641815,0.13882315158844,0.54622095823288,-0.63504433631897,0.546224653720856,0.463920801877975,-0.754696905612946,0.463907480239868,
- 0.75653338432312,-0.652075469493866,0.0495456159114838,0.54622095823288,-0.63504433631897,0.546224653720856,0.138799116015434,-0.534153401851654,0.833915412425995,0.0495169833302498,-0.652079522609711,0.756531774997711,0.463920801877975,-0.754696905612946,0.463907480239868,-0.44492644071579,0.777217864990234,-0.444941431283951,-0.0305365268141031,0.674601316452026,-0.737550437450409,-0.456998348236084,-0.114919908344746,-0.882012367248535,-0.706112265586853,-0.0532290935516357,-0.706096410751343,-0.737575650215149,0.674572646617889,-0.0305599588900805,-0.44492644071579,0.777217864990234,-0.444941431283951,-0.706112265586853,-0.0532290935516357,-0.706096410751343,-0.88202315568924,-0.114877603948116,-0.456988245248795,-0.830008566379547,0.394227921962738,0.394550561904907,-0.737575650215149,0.674572646617889,-0.0305599588900805,-0.88202315568924,-0.114877603948116,-0.456988245248795,-0.937564492225647,-0.28347048163414,-0.201537132263184,-0.697513937950134,0.0112412609159946,0.716483175754547,-0.830008566379547,0.394227921962738,0.394550561904907,-0.937564492225647,-0.28347048163414,-0.201537132263184,-0.857893466949463,-0.513764023780823,-0.0080804955214262,-0.375589668750763,-0.371720880270004,0.848973512649536,-0.697513937950134,0.0112412609159946,0.716483175754547,-0.857893466949463,-0.513764023780823,-0.0080804955214262,-0.664344489574432,-0.743984639644623,0.0716473534703255,0.0495169833302498,-0.652079522609711,0.756531774997711,-0.375589668750763,-0.371720880270004,0.848973512649536,-0.664344489574432,-0.743984639644623,0.0716473534703255,-0.408827602863312,-0.912467777729034,0.0162049066275358,0.463920801877975,-0.754696905612946,0.463907480239868,0.0495169833302498,-0.652079522609711,0.756531774997711,-0.408827602863312,-0.912467777729034,0.0162049066275358,-0.159756749868393,-0.974147319793701,-0.159733608365059,0.75653338432312,-0.652075469493866,0.0495456159114838,0.463920801877975,-0.754696905612946,0.463907480239868,-0.159756749868393,-0.974147319793701,-0.159733608365059,0.0161763373762369,-0.912457466125488,-0.408851861953735,
- 0.848978877067566,-0.371758580207825,-0.375540226697922,0.75653338432312,-0.652075469493866,0.0495456159114838,0.0161763373762369,-0.912457466125488,-0.408851861953735,0.0718311071395874,-0.743969202041626,-0.664341926574707,0.716468155384064,0.0112494369968772,-0.697529077529907,0.848978877067566,-0.371758580207825,-0.375540226697922,0.0718311071395874,-0.743969202041626,-0.664341926574707,-0.00793655402958393,-0.51371556520462,-0.857923865318298,0.394509375095367,0.394258767366409,-0.830013573169708,0.716468155384064,0.0112494369968772,-0.697529077529907,-0.00793655402958393,-0.51371556520462,-0.857923865318298,-0.201474070549011,-0.283410876989365,-0.937596082687378,-0.0305365268141031,0.674601316452026,-0.737550437450409,0.394509375095367,0.394258767366409,-0.830013573169708,-0.201474070549011,-0.283410876989365,-0.937596082687378,-0.456998348236084,-0.114919908344746,-0.882012367248535,0.0182472374290228,-0.61273455619812,0.790078163146973,-0.352264761924744,-0.355290532112122,0.865839540958405,-0.39472109079361,-0.377436131238937,0.837697565555573,-0.0155125968158245,-0.643049478530884,0.76566755771637,-0.352264761924744,-0.355290532112122,0.865839540958405,-0.660579562187195,0.0419892147183418,0.749581038951874,-0.7093825340271,0.0130224907770753,0.704703509807587,-0.39472109079361,-0.377436131238937,0.837697565555573,-0.660579562187195,0.0419892147183418,0.749581038951874,-0.780539810657501,0.441014260053635,0.443016916513443,-0.83165180683136,0.399449348449707,0.385740250349045,-0.7093825340271,0.0130224907770753,0.704703509807587,-0.780539810657501,0.441014260053635,0.443016916513443,-0.678797245025635,0.733782112598419,0.0282481219619513,-0.732651114463806,0.679814636707306,-0.0327779166400433,-0.83165180683136,0.399449348449707,0.385740250349045,-0.678797245025635,0.733782112598419,0.0282481219619513,-0.38259819149971,0.840981662273407,-0.382581532001495,-0.440831422805786,0.781888604164124,-0.440814971923828,-0.732651114463806,0.679814636707306,-0.0327779166400433,-0.38259819149971,0.840981662273407,-0.382581532001495,
- 0.0282520744949579,0.733773291110992,-0.678806602954865,-0.0327902361750603,0.679816603660584,-0.732648730278015,-0.440831422805786,0.781888604164124,-0.440814971923828,0.0282520744949579,0.733773291110992,-0.678806602954865,0.442960202693939,0.441037982702255,-0.780558705329895,0.385693609714508,0.39947310090065,-0.831661999225616,-0.0327902361750603,0.679816603660584,-0.732648730278015,0.442960202693939,0.441037982702255,-0.780558705329895,0.749559462070465,0.041984036564827,-0.660604298114777,0.704685032367706,0.0130561776459217,-0.709400177001953,0.385693609714508,0.39947310090065,-0.831661999225616,0.749559462070465,0.041984036564827,-0.660604298114777,0.865826845169067,-0.355339080095291,-0.352247089147568,0.837693393230438,-0.377485990524292,-0.394682496786118,0.704685032367706,0.0130561776459217,-0.709400177001953,0.865826845169067,-0.355339080095291,-0.352247089147568,0.790069162845612,-0.61274528503418,0.0182748455554247,0.765655934810638,-0.643064081668854,-0.0154779683798552,0.837693393230438,-0.377485990524292,-0.394682496786118,0.790069162845612,-0.61274528503418,0.0182748455554247,0.482429772615433,-0.731109321117401,0.482431977987289,0.454947352409363,-0.765535473823547,0.454948544502258,0.765655934810638,-0.643064081668854,-0.0154779683798552,0.482429772615433,-0.731109321117401,0.482431977987289,0.0182472374290228,-0.61273455619812,0.790078163146973,-0.0155125968158245,-0.643049478530884,0.76566755771637,0.454947352409363,-0.765535473823547,0.454948544502258,-0.440831422805786,0.781888604164124,-0.440814971923828,-0.0327902361750603,0.679816603660584,-0.732648730278015,-0.45729398727417,-0.153419524431229,-0.875982105731964,-0.702570557594299,-0.113143377006054,-0.702561974525452,-0.732651114463806,0.679814636707306,-0.0327779166400433,-0.440831422805786,0.781888604164124,-0.440814971923828,-0.702570557594299,-0.113143377006054,-0.702561974525452,-0.875983834266663,-0.15339919924736,-0.457297444343567,-0.83165180683136,0.399449348449707,0.385740250349045,-0.732651114463806,0.679814636707306,-0.0327779166400433,
- -0.875983834266663,-0.15339919924736,-0.457297444343567,-0.947427034378052,-0.276358664035797,-0.161269545555115,-0.7093825340271,0.0130224907770753,0.704703509807587,-0.83165180683136,0.399449348449707,0.385740250349045,-0.947427034378052,-0.276358664035797,-0.161269545555115,-0.866950929164886,-0.47729703783989,0.143469884991646,-0.39472109079361,-0.377436131238937,0.837697565555573,-0.7093825340271,0.0130224907770753,0.704703509807587,-0.866950929164886,-0.47729703783989,0.143469884991646,-0.598626255989075,-0.714806079864502,0.361522912979126,-0.0155125968158245,-0.643049478530884,0.76566755771637,-0.39472109079361,-0.377436131238937,0.837697565555573,-0.598626255989075,-0.714806079864502,0.361522912979126,-0.311066508293152,-0.905150473117828,0.289724767208099,0.454947352409363,-0.765535473823547,0.454948544502258,-0.0155125968158245,-0.643049478530884,0.76566755771637,-0.311066508293152,-0.905150473117828,0.289724767208099,-0.0127594005316496,-0.999837458133698,-0.012741956859827,0.765655934810638,-0.643064081668854,-0.0154779683798552,0.454947352409363,-0.765535473823547,0.454948544502258,-0.0127594005316496,-0.999837458133698,-0.012741956859827,0.289648026227951,-0.905171453952789,-0.311076611280441,0.837693393230438,-0.377485990524292,-0.394682496786118,0.765655934810638,-0.643064081668854,-0.0154779683798552,0.289648026227951,-0.905171453952789,-0.311076611280441,0.361694395542145,-0.714720249176025,-0.598625183105469,0.704685032367706,0.0130561776459217,-0.709400177001953,0.837693393230438,-0.377485990524292,-0.394682496786118,0.361694395542145,-0.714720249176025,-0.598625183105469,0.143792048096657,-0.47719269990921,-0.866954982280731,0.385693609714508,0.39947310090065,-0.831661999225616,0.704685032367706,0.0130561776459217,-0.709400177001953,0.143792048096657,-0.47719269990921,-0.866954982280731,-0.161176830530167,-0.276205241680145,-0.947487592697144,-0.0327902361750603,0.679816603660584,-0.732648730278015,0.385693609714508,0.39947310090065,-0.831661999225616,-0.161176830530167,-0.276205241680145,-0.947487592697144,
- -0.45729398727417,-0.153419524431229,-0.875982105731964,0.118052057921886,-0.562499821186066,0.818326115608215,-0.304493933916092,-0.28644186258316,0.908424198627472,-0.382968008518219,-0.374749451875687,0.844333112239838,0.0531352572143078,-0.644398272037506,0.762841701507568,-0.304493933916092,-0.28644186258316,0.908424198627472,-0.625215530395508,0.0905123725533485,0.775185883045197,-0.717054426670074,-0.00712831038981676,0.696980774402618,-0.382968008518219,-0.374749451875687,0.844333112239838,-0.625215530395508,0.0905123725533485,0.775185883045197,-0.75831800699234,0.46741047501564,0.454402089118958,-0.860129535198212,0.359609216451645,0.361743718385696,-0.717054426670074,-0.00712831038981676,0.696980774402618,-0.75831800699234,0.46741047501564,0.454402089118958,-0.668166756629944,0.743325233459473,0.0319506153464317,-0.77549284696579,0.627320349216461,-0.0712744444608688,-0.860129535198212,0.359609216451645,0.361743718385696,-0.668166756629944,0.743325233459473,0.0319506153464317,-0.378919571638107,0.844302415847778,-0.378910928964615,-0.486925661563873,0.725123941898346,-0.486927628517151,-0.77549284696579,0.627320349216461,-0.0712744444608688,-0.378919571638107,0.844302415847778,-0.378910928964615,0.0319212824106216,0.74333268404007,-0.668159782886505,-0.0713292956352234,0.627331256866455,-0.775478959083557,-0.486925661563873,0.725123941898346,-0.486927628517151,0.0319212824106216,0.74333268404007,-0.668159782886505,0.454302847385406,0.467474311590195,-0.758338034152985,0.361648052930832,0.359645068645477,-0.860154688358307,-0.0713292956352234,0.627331256866455,-0.775478959083557,0.454302847385406,0.467474311590195,-0.758338034152985,0.775172233581543,0.0905006527900696,-0.625234067440033,0.696966767311096,-0.00715202046558261,-0.717067658901215,0.361648052930832,0.359645068645477,-0.860154688358307,0.775172233581543,0.0905006527900696,-0.625234067440033,0.908416748046875,-0.286536872386932,-0.304426789283752,0.844308793544769,-0.374835073947906,-0.382937878370285,0.696966767311096,-0.00715202046558261,-0.717067658901215,
- 0.908416748046875,-0.286536872386932,-0.304426789283752,0.818316400051117,-0.56251335144043,0.118054702877998,0.762820720672607,-0.644421279430389,0.0531574003398418,0.844308793544769,-0.374835073947906,-0.382937878370285,0.818316400051117,-0.56251335144043,0.118054702877998,0.529018759727478,-0.663528740406036,0.529026210308075,0.47314441204071,-0.743144392967224,0.473149955272675,0.762820720672607,-0.644421279430389,0.0531574003398418,0.529018759727478,-0.663528740406036,0.529026210308075,0.118052057921886,-0.562499821186066,0.818326115608215,0.0531352572143078,-0.644398272037506,0.762841701507568,0.47314441204071,-0.743144392967224,0.473149955272675,-0.486925661563873,0.725123941898346,-0.486927628517151,-0.0713292956352234,0.627331256866455,-0.775478959083557,-0.488136440515518,-0.248689725995064,-0.836585998535156,-0.691247165203094,-0.210591569542885,-0.691251456737518,-0.77549284696579,0.627320349216461,-0.0712744444608688,-0.486925661563873,0.725123941898346,-0.486927628517151,-0.691247165203094,-0.210591569542885,-0.691251456737518,-0.836628317832947,-0.248654589056969,-0.488081783056259,-0.860129535198212,0.359609216451645,0.361743718385696,-0.77549284696579,0.627320349216461,-0.0712744444608688,-0.836628317832947,-0.248654589056969,-0.488081783056259,-0.896978914737701,-0.362281262874603,-0.253339856863022,-0.717054426670074,-0.00712831038981676,0.696980774402618,-0.860129535198212,0.359609216451645,0.361743718385696,-0.896978914737701,-0.362281262874603,-0.253339856863022,-0.839609026908875,-0.542491257190704,-0.0275667104870081,-0.382968008518219,-0.374749451875687,0.844333112239838,-0.717054426670074,-0.00712831038981676,0.696980774402618,-0.839609026908875,-0.542491257190704,-0.0275667104870081,-0.645219027996063,-0.754287958145142,0.121417000889778,0.0531352572143078,-0.644398272037506,0.762841701507568,-0.382968008518219,-0.374749451875687,0.844333112239838,-0.645219027996063,-0.754287958145142,0.121417000889778,-0.350374042987823,-0.929057657718658,0.118700578808784,0.47314441204071,-0.743144392967224,0.473149955272675,
- 0.0531352572143078,-0.644398272037506,0.762841701507568,-0.350374042987823,-0.929057657718658,0.118700578808784,-0.0583722926676273,-0.996587812900543,-0.0583557076752186,0.762820720672607,-0.644421279430389,0.0531574003398418,0.47314441204071,-0.743144392967224,0.473149955272675,-0.0583722926676273,-0.996587812900543,-0.0583557076752186,0.118593573570251,-0.92907053232193,-0.350376456975937,0.844308793544769,-0.374835073947906,-0.382937878370285,0.762820720672607,-0.644421279430389,0.0531574003398418,0.118593573570251,-0.92907053232193,-0.350376456975937,0.121312208473682,-0.754301786422729,-0.64522248506546,0.696966767311096,-0.00715202046558261,-0.717067658901215,0.844308793544769,-0.374835073947906,-0.382937878370285,0.121312208473682,-0.754301786422729,-0.64522248506546,-0.0275985170155764,-0.542486786842346,-0.839610815048218,0.361648052930832,0.359645068645477,-0.860154688358307,0.696966767311096,-0.00715202046558261,-0.717067658901215,-0.0275985170155764,-0.542486786842346,-0.839610815048218,-0.253352522850037,-0.362345725297928,-0.896949291229248,-0.0713292956352234,0.627331256866455,-0.775478959083557,0.361648052930832,0.359645068645477,-0.860154688358307,-0.253352522850037,-0.362345725297928,-0.896949291229248,-0.488136440515518,-0.248689725995064,-0.836585998535156,0.0974614769220352,-0.591314613819122,0.800529956817627,-0.325363308191299,-0.312463521957397,0.892471432685852,-0.368901968002319,-0.363735914230347,0.855340540409088,0.0561578571796417,-0.64406543970108,0.762906312942505,-0.325363308191299,-0.312463521957397,0.892471432685852,-0.645492851734161,0.0683525651693344,0.760701596736908,-0.690730810165405,0.0190610699355602,0.722860813140869,-0.368901968002319,-0.363735914230347,0.855340540409088,-0.645492851734161,0.0683525651693344,0.760701596736908,-0.777241408824921,0.449197858572006,0.440587282180786,-0.823152720928192,0.401933014392853,0.401085287332535,-0.690730810165405,0.0190610699355602,0.722860813140869,-0.777241408824921,0.449197858572006,0.440587282180786,-0.685305178165436,0.728038966655731,0.0177805665880442,
- -0.730730473995209,0.682245254516602,-0.0239681545644999,-0.823152720928192,0.401933014392853,0.401085287332535,-0.685305178165436,0.728038966655731,0.0177805665880442,-0.394292026758194,0.830096185207367,-0.394302099943161,-0.438188999891281,0.78483635187149,-0.438203662633896,-0.730730473995209,0.682245254516602,-0.0239681545644999,-0.394292026758194,0.830096185207367,-0.394302099943161,0.017772551625967,0.728054046630859,-0.685289323329926,-0.0239624567329884,0.682260572910309,-0.730716288089752,-0.438188999891281,0.78483635187149,-0.438203662633896,0.017772551625967,0.728054046630859,-0.685289323329926,0.440577358007431,0.4492167532444,-0.777236104011536,0.401068836450577,0.401958465576172,-0.823148310184479,-0.0239624567329884,0.682260572910309,-0.730716288089752,0.440577358007431,0.4492167532444,-0.777236104011536,0.760718286037445,0.06837547570467,-0.645470798015594,0.722898781299591,0.0191068295389414,-0.6906898021698,0.401068836450577,0.401958465576172,-0.823148310184479,0.760718286037445,0.06837547570467,-0.645470798015594,0.89247989654541,-0.312482416629791,-0.325322270393372,0.855351448059082,-0.363758534193039,-0.368854701519012,0.722898781299591,0.0191068295389414,-0.6906898021698,0.89247989654541,-0.312482416629791,-0.325322270393372,0.800527513027191,-0.591313183307648,0.0974902212619781,0.762913644313812,-0.644055366516113,0.0561739802360535,0.855351448059082,-0.363758534193039,-0.368854701519012,0.800527513027191,-0.591313183307648,0.0974902212619781,0.50955992937088,-0.693345367908478,0.509529948234558,0.470413982868195,-0.746626377105713,0.47038260102272,0.762913644313812,-0.644055366516113,0.0561739802360535,0.50955992937088,-0.693345367908478,0.509529948234558,0.0974614769220352,-0.591314613819122,0.800529956817627,0.0561578571796417,-0.64406543970108,0.762906312942505,0.470413982868195,-0.746626377105713,0.47038260102272,-0.438188999891281,0.78483635187149,-0.438203662633896,-0.0239624567329884,0.682260572910309,-0.730716288089752,-0.412005245685577,0.0129056377336383,-0.911090135574341,-0.704522311687469,0.0853599011898041,-0.704529643058777,
- -0.730730473995209,0.682245254516602,-0.0239681545644999,-0.438188999891281,0.78483635187149,-0.438203662633896,-0.704522311687469,0.0853599011898041,-0.704529643058777,-0.911108255386353,0.0129592372104526,-0.411963224411011,-0.823152720928192,0.401933014392853,0.401085287332535,-0.730730473995209,0.682245254516602,-0.0239681545644999,-0.911108255386353,0.0129592372104526,-0.411963224411011,-0.976333022117615,-0.185020223259926,-0.111988134682179,-0.690730810165405,0.0190610699355602,0.722860813140869,-0.823152720928192,0.401933014392853,0.401085287332535,-0.976333022117615,-0.185020223259926,-0.111988134682179,-0.882802486419678,-0.455398947000504,0.115201778709888,-0.368901968002319,-0.363735914230347,0.855340540409088,-0.690730810165405,0.0190610699355602,0.722860813140869,-0.882802486419678,-0.455398947000504,0.115201778709888,-0.655541956424713,-0.725724935531616,0.208777397871017,0.0561578571796417,-0.64406543970108,0.762906312942505,-0.368901968002319,-0.363735914230347,0.855340540409088,-0.655541956424713,-0.725724935531616,0.208777397871017,-0.355472892522812,-0.923581719398499,0.14365229010582,0.470413982868195,-0.746626377105713,0.47038260102272,0.0561578571796417,-0.64406543970108,0.762906312942505,-0.355472892522812,-0.923581719398499,0.14365229010582,-0.0629784986376762,-0.996028065681458,-0.0629432126879692,0.762913644313812,-0.644055366516113,0.0561739802360535,0.470413982868195,-0.746626377105713,0.47038260102272,-0.0629784986376762,-0.996028065681458,-0.0629432126879692,0.143573760986328,-0.923594832420349,-0.355470180511475,0.855351448059082,-0.363758534193039,-0.368854701519012,0.762913644313812,-0.644055366516113,0.0561739802360535,0.143573760986328,-0.923594832420349,-0.355470180511475,0.208957999944687,-0.725665092468262,-0.655550718307495,0.722898781299591,0.0191068295389414,-0.6906898021698,0.855351448059082,-0.363758534193039,-0.368854701519012,0.208957999944687,-0.725665092468262,-0.655550718307495,0.115446329116821,-0.455273330211639,-0.882835388183594,0.401068836450577,0.401958465576172,-0.823148310184479,
- 0.722898781299591,0.0191068295389414,-0.6906898021698,0.115446329116821,-0.455273330211639,-0.882835388183594,-0.111858151853085,-0.184901624917984,-0.976370394229889,-0.0239624567329884,0.682260572910309,-0.730716288089752,0.401068836450577,0.401958465576172,-0.823148310184479,-0.111858151853085,-0.184901624917984,-0.976370394229889,-0.412005245685577,0.0129056377336383,-0.911090135574341,0.0970279648900032,-0.593009531497955,0.799327909946442,-0.323438763618469,-0.312352180480957,0.893209636211395,-0.381817638874054,-0.377102494239807,0.843806207180023,0.0419240817427635,-0.660179555416107,0.749936878681183,-0.323438763618469,-0.312352180480957,0.893209636211395,-0.6409050822258,0.0712075531482697,0.764310300350189,-0.701091289520264,0.00902633275836706,0.713014483451843,-0.381817638874054,-0.377102494239807,0.843806207180023,-0.6409050822258,0.0712075531482697,0.764310300350189,-0.770215034484863,0.454924434423447,0.447003960609436,-0.830519795417786,0.394559860229492,0.393140643835068,-0.701091289520264,0.00902633275836706,0.713014483451843,-0.770215034484863,0.454924434423447,0.447003960609436,-0.676582634449005,0.735896706581116,0.0263061225414276,-0.73596853017807,0.676355063915253,-0.0299007780849934,-0.830519795417786,0.394559860229492,0.393140643835068,-0.676582634449005,0.735896706581116,0.0263061225414276,-0.385000199079514,0.838771641254425,-0.385015726089478,-0.442986577749252,0.779429912567139,-0.443003267049789,-0.73596853017807,0.676355063915253,-0.0299007780849934,-0.385000199079514,0.838771641254425,-0.385015726089478,0.0263085272163153,0.735888957977295,-0.676590919494629,-0.0298996400088072,0.676357507705688,-0.735966265201569,-0.442986577749252,0.779429912567139,-0.443003267049789,0.0263085272163153,0.735888957977295,-0.676590919494629,0.446961164474487,0.454897850751877,-0.770255625247955,0.393118768930435,0.394546926021576,-0.830536246299744,-0.0298996400088072,0.676357507705688,-0.735966265201569,0.446961164474487,0.454897850751877,-0.770255625247955,0.76427549123764,0.0711586028337479,-0.640952050685883,
- 0.713006496429443,0.00901821814477444,-0.701099574565887,0.393118768930435,0.394546926021576,-0.830536246299744,0.76427549123764,0.0711586028337479,-0.640952050685883,0.893183469772339,-0.312397748231888,-0.323467046022415,0.843792319297791,-0.37712550163269,-0.381825715303421,0.713006496429443,0.00901821814477444,-0.701099574565887,0.893183469772339,-0.312397748231888,-0.323467046022415,0.799326419830322,-0.593012571334839,0.0970228612422943,0.749939322471619,-0.660176455974579,0.0419292598962784,0.843792319297791,-0.37712550163269,-0.381825715303421,0.799326419830322,-0.593012571334839,0.0970228612422943,0.507931649684906,-0.695701539516449,0.507941722869873,0.456361204385757,-0.763849794864655,0.45636397600174,0.749939322471619,-0.660176455974579,0.0419292598962784,0.507931649684906,-0.695701539516449,0.507941722869873,0.0970279648900032,-0.593009531497955,0.799327909946442,0.0419240817427635,-0.660179555416107,0.749936878681183,0.456361204385757,-0.763849794864655,0.45636397600174,-0.442986577749252,0.779429912567139,-0.443003267049789,-0.0298996400088072,0.676357507705688,-0.735966265201569,-0.456993877887726,-0.114893607795238,-0.882018208503723,-0.706103980541229,-0.0531934499740601,-0.706107437610626,-0.73596853017807,0.676355063915253,-0.0299007780849934,-0.442986577749252,0.779429912567139,-0.443003267049789,-0.706103980541229,-0.0531934499740601,-0.706107437610626,-0.882035553455353,-0.114848084747791,-0.456971734762192,-0.830519795417786,0.394559860229492,0.393140643835068,-0.73596853017807,0.676355063915253,-0.0299007780849934,-0.882035553455353,-0.114848084747791,-0.456971734762192,-0.937580764293671,-0.283442080020905,-0.201501831412315,-0.701091289520264,0.00902633275836706,0.713014483451843,-0.830519795417786,0.394559860229492,0.393140643835068,-0.937580764293671,-0.283442080020905,-0.201501831412315,-0.857899725437164,-0.513754308223724,-0.00804093945771456,-0.381817638874054,-0.377102494239807,0.843806207180023,-0.701091289520264,0.00902633275836706,0.713014483451843,-0.857899725437164,-0.513754308223724,-0.00804093945771456,
- -0.664373815059662,-0.743951380252838,0.0717198550701141,0.0419240817427635,-0.660179555416107,0.749936878681183,-0.381817638874054,-0.377102494239807,0.843806207180023,-0.664373815059662,-0.743951380252838,0.0717198550701141,-0.408827543258667,-0.912466883659363,0.0162524785846472,0.456361204385757,-0.763849794864655,0.45636397600174,0.0419240817427635,-0.660179555416107,0.749936878681183,-0.408827543258667,-0.912466883659363,0.0162524785846472,-0.159717112779617,-0.974157571792603,-0.159710690379143,0.749939322471619,-0.660176455974579,0.0419292598962784,0.456361204385757,-0.763849794864655,0.45636397600174,-0.159717112779617,-0.974157571792603,-0.159710690379143,0.0161963272839785,-0.912465512752533,-0.408832848072052,0.843792319297791,-0.37712550163269,-0.381825715303421,0.749939322471619,-0.660176455974579,0.0419292598962784,0.0161963272839785,-0.912465512752533,-0.408832848072052,0.0718762949109077,-0.74395877122879,-0.664348602294922,0.713006496429443,0.00901821814477444,-0.701099574565887,0.843792319297791,-0.37712550163269,-0.381825715303421,0.0718762949109077,-0.74395877122879,-0.664348602294922,-0.00784470420330763,-0.513668537139893,-0.857952892780304,0.393118768930435,0.394546926021576,-0.830536246299744,0.713006496429443,0.00901821814477444,-0.701099574565887,-0.00784470420330763,-0.513668537139893,-0.857952892780304,-0.201420530676842,-0.283314794301987,-0.937636613845825,-0.0298996400088072,0.676357507705688,-0.735966265201569,0.393118768930435,0.394546926021576,-0.830536246299744,-0.201420530676842,-0.283314794301987,-0.937636613845825,-0.456993877887726,-0.114893607795238,-0.882018208503723,0.0939000025391579,-0.595996677875519,0.797477722167969,-0.329177290201187,-0.316950887441635,0.889485538005829,-0.394337713718414,-0.393910199403763,0.830260574817657,0.0307920221239328,-0.674318671226501,0.73779821395874,-0.329177290201187,-0.316950887441635,0.889485538005829,-0.649523913860321,0.0641449391841888,0.757630527019501,-0.716256678104401,-0.0109806060791016,0.697750568389893,-0.394337713718414,-0.393910199403763,0.830260574817657,
- -0.649523913860321,0.0641449391841888,0.757630527019501,-0.781381726264954,0.445231735706329,0.437276989221573,-0.848737299442291,0.371984481811523,0.375862270593643,-0.716256678104401,-0.0109806060791016,0.697750568389893,-0.781381726264954,0.445231735706329,0.437276989221573,-0.689390420913696,0.724250972270966,0.0141882784664631,-0.756302952766418,0.652361392974854,-0.0492996387183666,-0.848737299442291,0.371984481811523,0.375862270593643,-0.689390420913696,0.724250972270966,0.0141882784664631,-0.398184061050415,0.826374232769012,-0.398189604282379,-0.463679164648056,0.754984080791473,-0.463681727647781,-0.756302952766418,0.652361392974854,-0.0492996387183666,-0.398184061050415,0.826374232769012,-0.398189604282379,0.0141713544726372,0.724263787269592,-0.68937748670578,-0.049316979944706,0.652361989021301,-0.756301283836365,-0.463679164648056,0.754984080791473,-0.463681727647781,0.0141713544726372,0.724263787269592,-0.68937748670578,0.43720269203186,0.445277720689774,-0.781397223472595,0.375776380300522,0.372016340494156,-0.848761439323425,-0.049316979944706,0.652361989021301,-0.756301283836365,0.43720269203186,0.445277720689774,-0.781397223472595,0.757611572742462,0.0641195699572563,-0.649548649787903,0.697739839553833,-0.0109928492456675,-0.716266989707947,0.375776380300522,0.372016340494156,-0.848761439323425,0.757611572742462,0.0641195699572563,-0.649548649787903,0.889475524425507,-0.317021697759628,-0.329136162996292,0.830238938331604,-0.39398404955864,-0.394309282302856,0.697739839553833,-0.0109928492456675,-0.716266989707947,0.889475524425507,-0.317021697759628,-0.329136162996292,0.797474563121796,-0.595998644828796,0.093915194272995,0.737793624401093,-0.674323678016663,0.0307954642921686,0.830238938331604,-0.39398404955864,-0.394309282302856,0.797474563121796,-0.595998644828796,0.093915194272995,0.506274223327637,-0.698123216629028,0.506271004676819,0.445178657770157,-0.776937544345856,0.445178717374802,0.737793624401093,-0.674323678016663,0.0307954642921686,0.506274223327637,-0.698123216629028,0.506271004676819,
- 0.0939000025391579,-0.595996677875519,0.797477722167969,0.0307920221239328,-0.674318671226501,0.73779821395874,0.445178657770157,-0.776937544345856,0.445178717374802,-0.463679164648056,0.754984080791473,-0.463681727647781,-0.049316979944706,0.652361989021301,-0.756301283836365,-0.465198338031769,-0.140882730484009,-0.873923718929291,-0.70475572347641,-0.0815608128905296,-0.704746127128601,-0.756302952766418,0.652361392974854,-0.0492996387183666,-0.463679164648056,0.754984080791473,-0.463681727647781,-0.70475572347641,-0.0815608128905296,-0.704746127128601,-0.873978734016418,-0.140798315405846,-0.465120255947113,-0.848737299442291,0.371984481811523,0.375862270593643,-0.756302952766418,0.652361392974854,-0.0492996387183666,-0.873978734016418,-0.140798315405846,-0.465120255947113,-0.927437961101532,-0.302914172410965,-0.219321310520172,-0.716256678104401,-0.0109806060791016,0.697750568389893,-0.848737299442291,0.371984481811523,0.375862270593643,-0.927437961101532,-0.302914172410965,-0.219321310520172,-0.850808203220367,-0.524430751800537,-0.0331321358680725,-0.394337713718414,-0.393910199403763,0.830260574817657,-0.716256678104401,-0.0109806060791016,0.697750568389893,-0.850808203220367,-0.524430751800537,-0.0331321358680725,-0.664616823196411,-0.745917618274689,0.0434917919337749,0.0307920221239328,-0.674318671226501,0.73779821395874,-0.394337713718414,-0.393910199403763,0.830260574817657,-0.664616823196411,-0.745917618274689,0.0434917919337749,-0.418796688318253,-0.908025860786438,-0.00992085877805948,0.445178657770157,-0.776937544345856,0.445178717374802,0.0307920221239328,-0.674318671226501,0.73779821395874,-0.418796688318253,-0.908025860786438,-0.00992085877805948,-0.179195776581764,-0.967358529567719,-0.179182410240173,0.737793624401093,-0.674323678016663,0.0307954642921686,0.445178657770157,-0.776937544345856,0.445178717374802,-0.179195776581764,-0.967358529567719,-0.179182410240173,-0.0100512076169252,-0.908026099205017,-0.418792963027954,0.830238938331604,-0.39398404955864,-0.394309282302856,0.737793624401093,-0.674323678016663,0.0307954642921686,
- -0.0100512076169252,-0.908026099205017,-0.418792963027954,0.0435005389153957,-0.745906054973602,-0.664629101753235,0.697739839553833,-0.0109928492456675,-0.716266989707947,0.830238938331604,-0.39398404955864,-0.394309282302856,0.0435005389153957,-0.745906054973602,-0.664629101753235,-0.0330562368035316,-0.52440482378006,-0.850827217102051,0.375776380300522,0.372016340494156,-0.848761439323425,0.697739839553833,-0.0109928492456675,-0.716266989707947,-0.0330562368035316,-0.52440482378006,-0.850827217102051,-0.219298243522644,-0.302928686141968,-0.927438676357269,-0.049316979944706,0.652361989021301,-0.756301283836365,0.375776380300522,0.372016340494156,-0.848761439323425,-0.219298243522644,-0.302928686141968,-0.927438676357269,-0.465198338031769,-0.140882730484009,-0.873923718929291,0.109843298792839,-0.583626270294189,0.804558753967285,-0.294160395860672,-0.291576534509659,0.910193860530853,-0.38033401966095,-0.362505823373795,0.850844025611877,0.0341734141111374,-0.66278088092804,0.748033106327057,-0.294160395860672,-0.291576534509659,0.910193860530853,-0.591585576534271,0.108031414449215,0.798971652984619,-0.681603670120239,0.0433582998812199,0.730435788631439,-0.38033401966095,-0.362505823373795,0.850844025611877,-0.591585576534271,0.108031414449215,0.798971652984619,-0.701637625694275,0.506875813007355,0.500780940055847,-0.790097713470459,0.443341702222824,0.423312842845917,-0.681603670120239,0.0433582998812199,0.730435788631439,-0.701637625694275,0.506875813007355,0.500780940055847,-0.595619142055511,0.797368466854095,0.0971656441688538,-0.681431293487549,0.731734037399292,0.0147216711193323,-0.790097713470459,0.443341702222824,0.423312842845917,-0.595619142055511,0.797368466854095,0.0971656441688538,-0.303467839956284,0.903225898742676,-0.303463697433472,-0.38770380616188,0.836281836032867,-0.387709408998489,-0.681431293487549,0.731734037399292,0.0147216711193323,-0.303467839956284,0.903225898742676,-0.303463697433472,0.0971257537603378,0.797408521175385,-0.595572352409363,0.0147086502984166,0.731765985488892,-0.681397318840027,
- -0.38770380616188,0.836281836032867,-0.387709408998489,0.0971257537603378,0.797408521175385,-0.595572352409363,0.500757396221161,0.506922245025635,-0.701620876789093,0.423288464546204,0.443385601043701,-0.790086150169373,0.0147086502984166,0.731765985488892,-0.681397318840027,0.500757396221161,0.506922245025635,-0.701620876789093,0.798979103565216,0.108039416372776,-0.591574013233185,0.730472505092621,0.0434103533625603,-0.68156111240387,0.423288464546204,0.443385601043701,-0.790086150169373,0.798979103565216,0.108039416372776,-0.591574013233185,0.910199582576752,-0.291603535413742,-0.294115871191025,0.850853562355042,-0.362525254487991,-0.380294054746628,0.730472505092621,0.0434103533625603,-0.68156111240387,0.910199582576752,-0.291603535413742,-0.294115871191025,0.804545819759369,-0.583633542060852,0.109899178147316,0.748036742210388,-0.662774980068207,0.0342118144035339,0.850853562355042,-0.362525254487991,-0.380294054746628,0.804545819759369,-0.583633542060852,0.109899178147316,0.511642813682556,-0.690247058868408,0.511644959449768,0.448417335748672,-0.773206233978271,0.448412865400314,0.748036742210388,-0.662774980068207,0.0342118144035339,0.511642813682556,-0.690247058868408,0.511644959449768,0.109843298792839,-0.583626270294189,0.804558753967285,0.0341734141111374,-0.66278088092804,0.748033106327057,0.448417335748672,-0.773206233978271,0.448412865400314,-0.38770380616188,0.836281836032867,-0.387709408998489,0.0147086502984166,0.731765985488892,-0.681397318840027,-0.412059426307678,0.0128490412607789,-0.911066353321075,-0.704518675804138,0.0853137671947479,-0.704538881778717,-0.681431293487549,0.731734037399292,0.0147216711193323,-0.38770380616188,0.836281836032867,-0.387709408998489,-0.704518675804138,0.0853137671947479,-0.704538881778717,-0.911109328269959,0.0129293436184525,-0.411961913108826,-0.790097713470459,0.443341702222824,0.423312842845917,-0.681431293487549,0.731734037399292,0.0147216711193323,-0.911109328269959,0.0129293436184525,-0.411961913108826,-0.976349115371704,-0.184964314103127,-0.111940622329712,
- -0.681603670120239,0.0433582998812199,0.730435788631439,-0.790097713470459,0.443341702222824,0.423312842845917,-0.976349115371704,-0.184964314103127,-0.111940622329712,-0.882809042930603,-0.455372512340546,0.115256749093533,-0.38033401966095,-0.362505823373795,0.850844025611877,-0.681603670120239,0.0433582998812199,0.730435788631439,-0.882809042930603,-0.455372512340546,0.115256749093533,-0.655554115772247,-0.725700557231903,0.208824068307877,0.0341734141111374,-0.66278088092804,0.748033106327057,-0.38033401966095,-0.362505823373795,0.850844025611877,-0.655554115772247,-0.725700557231903,0.208824068307877,-0.35547462105751,-0.923584401607513,0.14363044500351,0.448417335748672,-0.773206233978271,0.448412865400314,0.0341734141111374,-0.66278088092804,0.748033106327057,-0.35547462105751,-0.923584401607513,0.14363044500351,-0.0629629120230675,-0.996027171611786,-0.0629732236266136,0.748036742210388,-0.662774980068207,0.0342118144035339,0.448417335748672,-0.773206233978271,0.448412865400314,-0.0629629120230675,-0.996027171611786,-0.0629732236266136,0.143516942858696,-0.923611164093018,-0.355450749397278,0.850853562355042,-0.362525254487991,-0.380294054746628,0.748036742210388,-0.662774980068207,0.0342118144035339,0.143516942858696,-0.923611164093018,-0.355450749397278,0.208905726671219,-0.725708484649658,-0.655519306659698,0.730472505092621,0.0434103533625603,-0.68156111240387,0.850853562355042,-0.362525254487991,-0.380294054746628,0.208905726671219,-0.725708484649658,-0.655519306659698,0.115456312894821,-0.455276340246201,-0.882832527160645,0.423288464546204,0.443385601043701,-0.790086150169373,0.730472505092621,0.0434103533625603,-0.68156111240387,0.115456312894821,-0.455276340246201,-0.882832527160645,-0.111907854676247,-0.184930935502052,-0.976359069347382,0.0147086502984166,0.731765985488892,-0.681397318840027,0.423288464546204,0.443385601043701,-0.790086150169373,-0.111907854676247,-0.184930935502052,-0.976359069347382,-0.412059426307678,0.0128490412607789,-0.911066353321075,0.105414986610413,-0.577798783779144,0.809343099594116,
- -0.322444468736649,-0.303945571184158,0.896463394165039,-0.361433386802673,-0.359839886426926,0.860163390636444,0.0669688656926155,-0.633307874202728,0.770996928215027,-0.322444468736649,-0.303945571184158,0.896463394165039,-0.648731648921967,0.0696828812360764,0.757820308208466,-0.690046548843384,0.0150539353489876,0.723608374595642,-0.361433386802673,-0.359839886426926,0.860163390636444,-0.648731648921967,0.0696828812360764,0.757820308208466,-0.786222696304321,0.442821949720383,0.431001752614975,-0.830233097076416,0.391623824834824,0.396665871143341,-0.690046548843384,0.0150539353489876,0.723608374595642,-0.786222696304321,0.442821949720383,0.431001752614975,-0.698487937450409,0.715611934661865,0.00378076080232859,-0.743120789527893,0.668304622173309,-0.0337714366614819,-0.830233097076416,0.391623824834824,0.396665871143341,-0.698487937450409,0.715611934661865,0.00378076080232859,-0.409403622150421,0.815336883068085,-0.409407466650009,-0.451372236013412,0.769753575325012,-0.451378375291824,-0.743120789527893,0.668304622173309,-0.0337714366614819,-0.409403622150421,0.815336883068085,-0.409407466650009,0.00380318169482052,0.715600192546844,-0.698499858379364,-0.0337479151785374,0.668296694755554,-0.743129014968872,-0.451372236013412,0.769753575325012,-0.451378375291824,0.00380318169482052,0.715600192546844,-0.698499858379364,0.430906444787979,0.442865818738937,-0.786250293254852,0.39656388759613,0.391675263643265,-0.830257534980774,-0.0337479151785374,0.668296694755554,-0.743129014968872,0.430906444787979,0.442865818738937,-0.786250293254852,0.757801711559296,0.0696615800261498,-0.648755669593811,0.723607778549194,0.0150454631075263,-0.690047383308411,0.39656388759613,0.391675263643265,-0.830257534980774,0.757801711559296,0.0696615800261498,-0.648755669593811,0.896453678607941,-0.304049968719482,-0.322372913360596,0.860154271125793,-0.359935879707336,-0.361359506845474,0.723607778549194,0.0150454631075263,-0.690047383308411,0.896453678607941,-0.304049968719482,-0.322372913360596,0.809346616268158,-0.577797174453735,0.105397216975689,
- 0.771002173423767,-0.633302927017212,0.0669564828276634,0.860154271125793,-0.359935879707336,-0.361359506845474,0.809346616268158,-0.577797174453735,0.105397216975689,0.519747912883759,-0.678040504455566,0.519733905792236,0.480911701917648,-0.733120620250702,0.480892986059189,0.771002173423767,-0.633302927017212,0.0669564828276634,0.519747912883759,-0.678040504455566,0.519733905792236,0.105414986610413,-0.577798783779144,0.809343099594116,0.0669688656926155,-0.633307874202728,0.770996928215027,0.480911701917648,-0.733120620250702,0.480892986059189,-0.451372236013412,0.769753575325012,-0.451378375291824,-0.0337479151785374,0.668296694755554,-0.743129014968872,-0.437339782714844,-0.0562875866889954,-0.897533059120178,-0.707076013088226,0.0105508090928197,-0.707058846950531,-0.743120789527893,0.668304622173309,-0.0337714366614819,-0.451372236013412,0.769753575325012,-0.451378375291824,-0.707076013088226,0.0105508090928197,-0.707058846950531,-0.897563636302948,-0.0561864711344242,-0.437290072441101,-0.830233097076416,0.391623824834824,0.396665871143341,-0.743120789527893,0.668304622173309,-0.0337714366614819,-0.897563636302948,-0.0561864711344242,-0.437290072441101,-0.95772123336792,-0.238701596856117,-0.160598337650299,-0.690046548843384,0.0150539353489876,0.723608374595642,-0.830233097076416,0.391623824834824,0.396665871143341,-0.95772123336792,-0.238701596856117,-0.160598337650299,-0.871475756168365,-0.487991482019424,0.0489326827228069,-0.361433386802673,-0.359839886426926,0.860163390636444,-0.690046548843384,0.0150539353489876,0.723608374595642,-0.871475756168365,-0.487991482019424,0.0489326827228069,-0.661918342113495,-0.737289845943451,0.135158777236938,0.0669688656926155,-0.633307874202728,0.770996928215027,-0.361433386802673,-0.359839886426926,0.860163390636444,-0.661918342113495,-0.737289845943451,0.135158777236938,-0.385208040475845,-0.919773995876312,0.0750374272465706,0.480911701917648,-0.733120620250702,0.480892986059189,0.0669688656926155,-0.633307874202728,0.770996928215027,-0.385208040475845,-0.919773995876312,0.0750374272465706,
- -0.115499086678028,-0.986572265625,-0.115478113293648,0.771002173423767,-0.633302927017212,0.0669564828276634,0.480911701917648,-0.733120620250702,0.480892986059189,-0.115499086678028,-0.986572265625,-0.115478113293648,0.0749242603778839,-0.91977071762085,-0.385237574577332,0.860154271125793,-0.359935879707336,-0.361359506845474,0.771002173423767,-0.633302927017212,0.0669564828276634,0.0749242603778839,-0.91977071762085,-0.385237574577332,0.135232105851173,-0.737268567085266,-0.661927044391632,0.723607778549194,0.0150454631075263,-0.690047383308411,0.860154271125793,-0.359935879707336,-0.361359506845474,0.135232105851173,-0.737268567085266,-0.661927044391632,0.0490558557212353,-0.487923413515091,-0.871506929397583,0.39656388759613,0.391675263643265,-0.830257534980774,0.723607778549194,0.0150454631075263,-0.690047383308411,0.0490558557212353,-0.487923413515091,-0.871506929397583,-0.160545513033867,-0.238645806908607,-0.95774382352829,-0.0337479151785374,0.668296694755554,-0.743129014968872,0.39656388759613,0.391675263643265,-0.830257534980774,-0.160545513033867,-0.238645806908607,-0.95774382352829,-0.437339782714844,-0.0562875866889954,-0.897533059120178,0.0999057590961456,-0.587989330291748,0.802675068378448,-0.322606176137924,-0.309297382831573,0.894572794437408,-0.400253653526306,-0.400980085134506,0.824021875858307,0.0247387140989304,-0.681316137313843,0.731571197509766,-0.322606176137924,-0.309297382831573,0.894572794437408,-0.642576932907104,0.071374922990799,0.762889564037323,-0.722110748291016,-0.0181416608393192,0.691539525985718,-0.400253653526306,-0.400980085134506,0.824021875858307,-0.642576932907104,0.071374922990799,0.762889564037323,-0.774284899234772,0.452009052038193,0.442911773920059,-0.854550957679749,0.364741057157516,0.36973848938942,-0.722110748291016,-0.0181416608393192,0.691539525985718,-0.774284899234772,0.452009052038193,0.442911773920059,-0.682415068149567,0.730681777000427,0.0203422494232655,-0.762147545814514,0.645033836364746,-0.0553399920463562,-0.854550957679749,0.364741057157516,0.36973848938942,
- -0.682415068149567,0.730681777000427,0.0203422494232655,-0.391551375389099,0.832694828510284,-0.391544252634048,-0.46958914399147,0.747648477554321,-0.469582498073578,-0.762147545814514,0.645033836364746,-0.0553399920463562,-0.391551375389099,0.832694828510284,-0.391544252634048,0.0203455481678247,0.730700314044952,-0.682395160198212,-0.0553107336163521,0.645043194293976,-0.762141764163971,-0.46958914399147,0.747648477554321,-0.469582498073578,0.0203455481678247,0.730700314044952,-0.682395160198212,0.442874699831009,0.452046036720276,-0.774284422397614,0.369716048240662,0.364773362874985,-0.854546964168549,-0.0553107336163521,0.645043194293976,-0.762141764163971,0.442874699831009,0.452046036720276,-0.774284422397614,0.762888848781586,0.0713688060641289,-0.642578542232513,0.691577553749084,-0.0181039664894342,-0.722075283527374,0.369716048240662,0.364773362874985,-0.854546964168549,0.762888848781586,0.0713688060641289,-0.642578542232513,0.894574344158173,-0.309320449829102,-0.322579503059387,0.824021995067596,-0.400998771190643,-0.400234550237656,0.691577553749084,-0.0181039664894342,-0.722075283527374,0.894574344158173,-0.309320449829102,-0.322579503059387,0.802673697471619,-0.587983846664429,0.0999487936496735,0.731577217578888,-0.681308805942535,0.0247605219483376,0.824021995067596,-0.400998771190643,-0.400234550237656,0.802673697471619,-0.587983846664429,0.0999487936496735,0.511808335781097,-0.689997255802155,0.511816322803497,0.439036041498184,-0.78389298915863,0.439043581485748,0.731577217578888,-0.681308805942535,0.0247605219483376,0.511808335781097,-0.689997255802155,0.511816322803497,0.0999057590961456,-0.587989330291748,0.802675068378448,0.0247387140989304,-0.681316137313843,0.731571197509766,0.439036041498184,-0.78389298915863,0.439043581485748,-0.46958914399147,0.747648477554321,-0.469582498073578,-0.0553107336163521,0.645043194293976,-0.762141764163971,-0.412040501832962,0.0127935791388154,-0.91107577085495,-0.704511880874634,0.0852144137024879,-0.704557597637177,-0.762147545814514,0.645033836364746,-0.0553399920463562,
- -0.46958914399147,0.747648477554321,-0.469582498073578,-0.704511880874634,0.0852144137024879,-0.704557597637177,-0.911097288131714,0.012783826328814,-0.411993026733398,-0.854550957679749,0.364741057157516,0.36973848938942,-0.762147545814514,0.645033836364746,-0.0553399920463562,-0.911097288131714,0.012783826328814,-0.411993026733398,-0.976318538188934,-0.18509241938591,-0.111994415521622,-0.722110748291016,-0.0181416608393192,0.691539525985718,-0.854550957679749,0.364741057157516,0.36973848938942,-0.976318538188934,-0.18509241938591,-0.111994415521622,-0.882809698581696,-0.455383598804474,0.115207523107529,-0.400253653526306,-0.400980085134506,0.824021875858307,-0.722110748291016,-0.0181416608393192,0.691539525985718,-0.882809698581696,-0.455383598804474,0.115207523107529,-0.655574262142181,-0.725699603557587,0.208764225244522,0.0247387140989304,-0.681316137313843,0.731571197509766,-0.400253653526306,-0.400980085134506,0.824021875858307,-0.655574262142181,-0.725699603557587,0.208764225244522,-0.355554550886154,-0.923561692237854,0.143578365445137,0.439036041498184,-0.78389298915863,0.439043581485748,0.0247387140989304,-0.681316137313843,0.731571197509766,-0.355554550886154,-0.923561692237854,0.143578365445137,-0.0630062893033028,-0.996019780635834,-0.0630461871623993,0.731577217578888,-0.681308805942535,0.0247605219483376,0.439036041498184,-0.78389298915863,0.439043581485748,-0.0630062893033028,-0.996019780635834,-0.0630461871623993,0.143504858016968,-0.923590779304504,-0.355508595705032,0.824021995067596,-0.400998771190643,-0.400234550237656,0.731577217578888,-0.681308805942535,0.0247605219483376,0.143504858016968,-0.923590779304504,-0.355508595705032,0.208926066756248,-0.725705504417419,-0.655516266822815,0.691577553749084,-0.0181039664894342,-0.722075283527374,0.824021995067596,-0.400998771190643,-0.400234550237656,0.208926066756248,-0.725705504417419,-0.655516266822815,0.115477688610554,-0.455241203308105,-0.882847905158997,0.369716048240662,0.364773362874985,-0.854546964168549,0.691577553749084,-0.0181039664894342,-0.722075283527374,
- 0.115477688610554,-0.455241203308105,-0.882847905158997,-0.111904188990593,-0.184889450669289,-0.97636741399765,-0.0553107336163521,0.645043194293976,-0.762141764163971,0.369716048240662,0.364773362874985,-0.854546964168549,-0.111904188990593,-0.184889450669289,-0.97636741399765,-0.412040501832962,0.0127935791388154,-0.91107577085495,0.0874632149934769,-0.604403495788574,0.791862666606903,-0.336083859205246,-0.325052559375763,0.883961856365204,-0.380511283874512,-0.377482324838638,0.84422641992569,0.0446537137031555,-0.657924056053162,0.75175929069519,-0.336083859205246,-0.325052559375763,0.883961856365204,-0.656791925430298,0.0564672276377678,0.751954674720764,-0.702470541000366,0.00546904187649488,0.711691677570343,-0.380511283874512,-0.377482324838638,0.84422641992569,-0.656791925430298,0.0564672276377678,0.751954674720764,-0.788790822029114,0.437981575727463,0.431255459785461,-0.834957003593445,0.388478368520737,0.389783591032028,-0.702470541000366,0.00546904187649488,0.711691677570343,-0.788790822029114,0.437981575727463,0.431255459785461,-0.696710228919983,0.717311263084412,0.00770515901967883,-0.742533922195435,0.668871641159058,-0.035414595156908,-0.834957003593445,0.388478368520737,0.389783591032028,-0.696710228919983,0.717311263084412,0.00770515901967883,-0.405164361000061,0.819563388824463,-0.405163735151291,-0.449851036071777,0.771537482738495,-0.449848800897598,-0.742533922195435,0.668871641159058,-0.035414595156908,-0.405164361000061,0.819563388824463,-0.405163735151291,0.0076661235652864,0.71733433008194,-0.696687042713165,-0.0354477800428867,0.668901085853577,-0.742505788803101,-0.449851036071777,0.771537482738495,-0.449848800897598,0.0076661235652864,0.71733433008194,-0.696687042713165,0.431150376796722,0.438045024871826,-0.78881299495697,0.389693707227707,0.38854706287384,-0.834967017173767,-0.0354477800428867,0.668901085853577,-0.742505788803101,0.431150376796722,0.438045024871826,-0.78881299495697,0.751936018466949,0.0564390756189823,-0.656815588474274,0.711696803569794,0.00547544378787279,-0.702465415000916,
- 0.389693707227707,0.38854706287384,-0.834967017173767,0.751936018466949,0.0564390756189823,-0.656815588474274,0.883951902389526,-0.325149476528168,-0.336016118526459,0.844224572181702,-0.377562165260315,-0.380436331033707,0.711696803569794,0.00547544378787279,-0.702465415000916,0.883951902389526,-0.325149476528168,-0.336016118526459,0.7918461561203,-0.604419231414795,0.0875047296285629,0.751750230789185,-0.657931268215179,0.044701099395752,0.844224572181702,-0.377562165260315,-0.380436331033707,0.7918461561203,-0.604419231414795,0.0875047296285629,0.50032252073288,-0.706649720668793,0.500323593616486,0.45911830663681,-0.760539531707764,0.459118753671646,0.751750230789185,-0.657931268215179,0.044701099395752,0.50032252073288,-0.706649720668793,0.500323593616486,0.0874632149934769,-0.604403495788574,0.791862666606903,0.0446537137031555,-0.657924056053162,0.75175929069519,0.45911830663681,-0.760539531707764,0.459118753671646,-0.449851036071777,0.771537482738495,-0.449848800897598,-0.0354477800428867,0.668901085853577,-0.742505788803101,-0.412079513072968,0.012768748216331,-0.91105842590332,-0.704534590244293,0.0852000191807747,-0.70453679561615,-0.742533922195435,0.668871641159058,-0.035414595156908,-0.449851036071777,0.771537482738495,-0.449848800897598,-0.704534590244293,0.0852000191807747,-0.70453679561615,-0.911082804203033,0.0127839893102646,-0.412025153636932,-0.834957003593445,0.388478368520737,0.389783591032028,-0.742533922195435,0.668871641159058,-0.035414595156908,-0.911082804203033,0.0127839893102646,-0.412025153636932,-0.976312220096588,-0.18512912094593,-0.111989483237267,-0.702470541000366,0.00546904187649488,0.711691677570343,-0.834957003593445,0.388478368520737,0.389783591032028,-0.976312220096588,-0.18512912094593,-0.111989483237267,-0.882803499698639,-0.455394417047501,0.115211680531502,-0.380511283874512,-0.377482324838638,0.84422641992569,-0.702470541000366,0.00546904187649488,0.711691677570343,-0.882803499698639,-0.455394417047501,0.115211680531502,-0.655622482299805,-0.725670218467712,0.20871476829052,
- 0.0446537137031555,-0.657924056053162,0.75175929069519,-0.380511283874512,-0.377482324838638,0.84422641992569,-0.655622482299805,-0.725670218467712,0.20871476829052,-0.355576485395432,-0.923567831516266,0.143484398722649,0.45911830663681,-0.760539531707764,0.459118753671646,0.0446537137031555,-0.657924056053162,0.75175929069519,-0.355576485395432,-0.923567831516266,0.143484398722649,-0.0630656033754349,-0.996013998985291,-0.0630784183740616,0.751750230789185,-0.657931268215179,0.044701099395752,0.45911830663681,-0.760539531707764,0.459118753671646,-0.0630656033754349,-0.996013998985291,-0.0630784183740616,0.143455073237419,-0.923582077026367,-0.355551213026047,0.844224572181702,-0.377562165260315,-0.380436331033707,0.751750230789185,-0.657931268215179,0.044701099395752,0.143455073237419,-0.923582077026367,-0.355551213026047,0.208946526050568,-0.725611448287964,-0.655613839626312,0.711696803569794,0.00547544378787279,-0.702465415000916,0.844224572181702,-0.377562165260315,-0.380436331033707,0.208946526050568,-0.725611448287964,-0.655613839626312,0.115503989160061,-0.455253452062607,-0.882838070392609,0.389693707227707,0.38854706287384,-0.834967017173767,0.711696803569794,0.00547544378787279,-0.702465415000916,0.115503989160061,-0.455253452062607,-0.882838070392609,-0.111837543547153,-0.184987634420395,-0.976356387138367,-0.0354477800428867,0.668901085853577,-0.742505788803101,0.389693707227707,0.38854706287384,-0.834967017173767,-0.111837543547153,-0.184987634420395,-0.976356387138367,-0.412079513072968,0.012768748216331,-0.91105842590332,-0.541686654090881,-0.642756402492523,-0.541700899600983,-0.541686594486237,-0.642756342887878,-0.541700899600983,-0.541686654090881,-0.642756402492523,-0.541700899600983,-0.541686654090881,-0.642756402492523,-0.541700839996338,-0.541686594486237,-0.642756342887878,-0.541700839996338,-0.541686654090881,-0.642756402492523,-0.541700839996338,-0.541686654090881,-0.642756402492523,-0.541700899600983,-0.541686594486237,-0.642756342887878,-0.541700839996338,-0.541686654090881,-0.642756283283234,-0.541700839996338,
- -0.541686654090881,-0.642756402492523,-0.541700899600983,-0.541686654090881,-0.642756402492523,-0.541700899600983,-0.541686594486237,-0.642756342887878,-0.541700899600983,-0.159841731190681,-0.9871426820755,-9.18507769842591e-010,-0.159538879990578,-0.987191677093506,4.95061520666695e-008,-0.880871057510376,-0.473356276750565,4.47990288421352e-007,-0.88087010383606,-0.473358243703842,2.23994902626146e-007,-0.0209533143788576,0.999780416488647,6.39408170854949e-009,-0.0208997204899788,0.999781608581543,1.27554526940799e-008,0,1,0,0,1,0,5.00615840337559e-007,-1,-3.50431079709779e-008,0,-1,0,-0.159538879990578,-0.987191677093506,4.95061520666695e-008,-0.159841731190681,-0.9871426820755,-9.18507769842591e-010,-0.997779488563538,0.066604308784008,6.08994128015183e-007,-0.997779488563538,0.0666042938828468,3.04497092429301e-007,-0.912567138671875,-0.408926784992218,2.77878427823453e-007,-0.912567138671875,-0.408926904201508,5.55756855646905e-007,-0.881147623062134,-0.472841203212738,2.6819384402188e-007,-0.881147742271423,-0.472841084003448,5.36387801730598e-007,-0.912567138671875,-0.408926904201508,5.55756855646905e-007,-0.912567138671875,-0.408926784992218,2.77878427823453e-007,-0.88087010383606,-0.473358243703842,2.23994902626146e-007,-0.880871057510376,-0.473356276750565,4.47990288421352e-007,-0.881147742271423,-0.472841084003448,5.36387801730598e-007,-0.881147623062134,-0.472841203212738,2.6819384402188e-007,-0.0209533143788576,0.999780416488647,6.39408170854949e-009,-0.997779488563538,0.0666042938828468,3.04497092429301e-007,-0.997779488563538,0.066604308784008,6.08994128015183e-007,-0.0208997204899788,0.999781608581543,1.27554526940799e-008,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,1,1.3462455399349e-006,-1.53391113144608e-007,1,0,0,1,0,0,1,1.3462455399349e-006,-1.53391127355462e-007,-0.997785031795502,0.0665208026766777,2.84251569837579e-007,-0.99919593334198,0.0400931052863598,2.6517500373302e-006,-0.968843042850494,-0.247675850987434,2.11017072615505e-006,-0.913848280906677,-0.406055748462677,1.81314632641261e-007,
- -0.17540068924427,-0.984497129917145,1.42847444983829e-009,-0.159841731190681,-0.9871426820755,-9.18507769842591e-010,-0.88087010383606,-0.473358243703842,2.23994902626146e-007,-0.882443070411682,-0.47041928768158,2.46885747401393e-007,-0.0232124235481024,0.999730587005615,1.09355529076538e-008,-0.0209533143788576,0.999780416488647,6.39408170854949e-009,0,1,0,0,0.999999940395355,0,-0.997779488563538,0.0666042938828468,3.04497092429301e-007,-0.997785031795502,0.0665208026766777,2.84251569837579e-007,-0.913848280906677,-0.406055748462677,1.81314632641261e-007,-0.912567138671875,-0.408926784992218,2.77878427823453e-007,-0.879587292671204,-0.475737690925598,1.64073355790606e-007,-0.881147623062134,-0.472841203212738,2.6819384402188e-007,-0.912567138671875,-0.408926784992218,2.77878427823453e-007,-0.913848280906677,-0.406055748462677,1.81314632641261e-007,-0.882443070411682,-0.47041928768158,2.46885747401393e-007,-0.88087010383606,-0.473358243703842,2.23994902626146e-007,-0.881147623062134,-0.472841203212738,2.6819384402188e-007,-0.879587292671204,-0.475737690925598,1.64073355790606e-007,-0.0232124235481024,0.999730587005615,1.09355529076538e-008,-0.997785031795502,0.0665208026766777,2.84251569837579e-007,-0.997779488563538,0.0666042938828468,3.04497092429301e-007,-0.0209533143788576,0.999780416488647,6.39408170854949e-009,-5.86735851015874e-008,-0.98719185590744,-0.159537941217422,-1.12449527023273e-007,-0.98656177520752,-0.163388773798943,-5.54349185222236e-007,-0.471348494291306,-0.881947040557861,-4.39547250152827e-007,-0.47336483001709,-0.880866527557373,-1.1864682569751e-008,0.999781548976898,-0.0208996385335922,-1.71803336002085e-008,0.999763548374176,-0.0217442084103823,0,1,0,0,0.999999940395355,0,0,-1,0,-4.99395689246285e-008,-1,4.18341187469196e-007,-1.12449527023273e-007,-0.98656177520752,-0.163388773798943,-5.86735851015874e-008,-0.98719185590744,-0.159537941217422,-8.07952346804086e-007,0.0665470659732819,-0.997783303260803,-7.17718819487345e-007,0.0666042864322662,-0.997779488563538,-6.26715177531878e-007,-0.408926725387573,-0.912567138671875,
- -7.17316197551554e-007,-0.40694597363472,-0.913452208042145,-5.0169410314993e-007,-0.472841262817383,-0.881147682666779,-6.27733697911026e-007,-0.474832326173782,-0.880076289176941,-7.17316197551554e-007,-0.40694597363472,-0.913452208042145,-6.26715177531878e-007,-0.408926725387573,-0.912567138671875,-4.39547250152827e-007,-0.47336483001709,-0.880866527557373,-5.54349185222236e-007,-0.471348494291306,-0.881947040557861,-6.27733697911026e-007,-0.474832326173782,-0.880076289176941,-5.0169410314993e-007,-0.472841262817383,-0.881147682666779,-1.1864682569751e-008,0.999781548976898,-0.0208996385335922,-7.17718819487345e-007,0.0666042864322662,-0.997779488563538,-8.07952346804086e-007,0.0665470659732819,-0.997783303260803,-1.71803336002085e-008,0.999763548374176,-0.0217442084103823,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0.999999940395355,2.99691549798808e-007,-9.16916064852558e-007,1,2.9969149295539e-007,-9.16915780635463e-007,1,0,0,0.999999940395355,-1.12449527023273e-007,-0.98656177520752,-0.163388773798943,-2.64418758888496e-007,-0.9497429728508,-0.313030779361725,-8.38246705825441e-007,-0.325501829385757,-0.945541441440582,-5.54349185222236e-007,-0.471348494291306,-0.881947040557861,-1.71803336002085e-008,0.999763548374176,-0.0217442084103823,-7.18377677344506e-008,0.998049676418304,-0.0624242834746838,0,0.999999940395355,0,0,1,0,-4.99395689246285e-008,-1,4.18341187469196e-007,-1.44571345117583e-007,-1,1.21106643291569e-006,-2.64418758888496e-007,-0.9497429728508,-0.313030779361725,-1.12449527023273e-007,-0.98656177520752,-0.163388773798943,-6.27733697911026e-007,-0.474832326173782,-0.880076289176941,-7.86778741712624e-007,-0.565628886222839,-0.824659943580627,-9.10621167804493e-007,-0.266728043556213,-0.963771820068359,-7.17316197551554e-007,-0.40694597363472,-0.913452208042145,-5.54349185222236e-007,-0.471348494291306,-0.881947040557861,-8.38246705825441e-007,-0.325501829385757,-0.945541441440582,-7.86778741712624e-007,-0.565628886222839,-0.824659943580627,-6.27733697911026e-007,-0.474832326173782,-0.880076289176941,
- -1.71803336002085e-008,0.999763548374176,-0.0217442084103823,-8.07952346804086e-007,0.0665470659732819,-0.997783303260803,-9.50409912547912e-007,0.0404982045292854,-0.999179601669312,-7.18377677344506e-008,0.998049676418304,-0.0624242834746838,2.99691549798808e-007,-9.16916064852558e-007,1,0.896318078041077,1.18898753953545e-006,0.443411737680435,0.896315515041351,1.18896650747047e-006,0.443416774272919,2.9969149295539e-007,-9.16915780635463e-007,1,-0.955109119415283,-0.296254098415375,3.25774385601108e-006,-0.406520366668701,-0.913641691207886,1.55612065100286e-006,-0.17540068924427,-0.984497129917145,1.42847444983829e-009,-0.882443070411682,-0.47041928768158,2.46885747401393e-007,0,0.999999940395355,0,-0.10682750493288,0.994277596473694,4.81879908420524e-007,-0.0232124235481024,0.999730587005615,1.09355529076538e-008,-0.406520366668701,-0.913641691207886,1.55612065100286e-006,1.01622845249949e-006,-1,-6.93962576292506e-008,-0.17540068924427,-0.984497129917145,1.42847444983829e-009,-0.968843042850494,-0.247675850987434,2.11017072615505e-006,-0.80777782201767,-0.589487075805664,1.47429875596572e-006,-0.879587292671204,-0.475737690925598,1.64073355790606e-007,-0.913848280906677,-0.406055748462677,1.81314632641261e-007,-0.80777782201767,-0.589487075805664,1.47429875596572e-006,-0.955109119415283,-0.296254098415375,3.25774385601108e-006,-0.882443070411682,-0.47041928768158,2.46885747401393e-007,-0.879587292671204,-0.475737690925598,1.64073355790606e-007,-0.10682750493288,0.994277596473694,4.81879908420524e-007,-0.99919593334198,0.0400931052863598,2.6517500373302e-006,-0.997785031795502,0.0665208026766777,2.84251569837579e-007,-0.0232124235481024,0.999730587005615,1.09355529076538e-008,1.01622845249949e-006,-1,-6.93962576292506e-008,5.00615840337559e-007,-1,-3.50431079709779e-008,-0.159841731190681,-0.9871426820755,-9.18507769842591e-010,-0.17540068924427,-0.984497129917145,1.42847444983829e-009,0.896315515041351,1.18896650747047e-006,0.443416774272919,0.896318078041077,1.18898753953545e-006,0.443411737680435,1,1.3462455399349e-006,-1.53391113144608e-007,
- 1,1.3462455399349e-006,-1.53391127355462e-007,-9.10621167804493e-007,-0.266728043556213,-0.963771820068359,-9.50409912547912e-007,0.0404982045292854,-0.999179601669312,-8.07952346804086e-007,0.0665470659732819,-0.997783303260803,-7.17316197551554e-007,-0.40694597363472,-0.913452208042145,0.0270252861082554,-0.0467493459582329,-0.998541057109833,0.0468000210821629,-0.0269730295985937,-0.998540043830872,0.85596764087677,-0.493421643972397,-0.154448658227921,0.494182050228119,-0.855189621448517,-0.156316325068474,0.0468000210821629,-0.0269730295985937,-0.998540043830872,0.0540048331022263,3.93230366171338e-005,-0.998540639877319,0.988391280174255,0.000740566989406943,-0.151927947998047,0.85596764087677,-0.493421643972397,-0.154448658227921,0.0540048331022263,3.93230366171338e-005,-0.998540639877319,0.0467694513499737,0.0270339045673609,-0.998539805412292,0.856005072593689,0.494921058416367,-0.149359986186028,0.988391280174255,0.000740566989406943,-0.151927947998047,0.0467694513499737,0.0270339045673609,-0.998539805412292,0.0269965082406998,0.0467748306691647,-0.998540580272675,0.494219779968262,0.856732308864594,-0.147500857710838,0.856005072593689,0.494921058416367,-0.149359986186028,0.0269965082406998,0.0467748306691647,-0.998540580272675,6.65145398670575e-006,0.0540072880685329,-0.99854052066803,1.43945626973618e-007,0.989164113998413,-0.146814033389091,0.494219779968262,0.856732308864594,-0.147500857710838,6.65145398670575e-006,0.0540072880685329,-0.99854052066803,-0.0269814878702164,0.0467847250401974,-0.99854052066803,-0.494189113378525,0.856751084327698,-0.147494241595268,1.43945626973618e-007,0.989164113998413,-0.146814033389091,-0.0269814878702164,0.0467847250401974,-0.99854052066803,-0.0467362552881241,0.0270260032266378,-0.998541593551636,-0.855969727039337,0.494983196258545,-0.14935702085495,-0.494189113378525,0.856751084327698,-0.147494241595268,-0.0467362552881241,0.0270260032266378,-0.998541593551636,-0.0540253780782223,3.918444053852e-005,-0.998539566993713,-0.988399207592011,0.000740657618734986,-0.151876389980316,
- -0.855969727039337,0.494983196258545,-0.14935702085495,-0.0540253780782223,3.918444053852e-005,-0.998539566993713,-0.0467679873108864,-0.0269656572490931,-0.99854177236557,-0.855932295322418,-0.493483692407608,-0.154446423053741,-0.988399207592011,0.000740657618734986,-0.151876389980316,-0.0467679873108864,-0.0269656572490931,-0.99854177236557,-0.0270106624811888,-0.0467595607042313,-0.998540878295898,-0.494151324033737,-0.855208694934845,-0.156309053301811,-0.855932295322418,-0.493483692407608,-0.154446423053741,-0.0270106624811888,-0.0467595607042313,-0.998540878295898,6.56101974527701e-006,-0.0539940781891346,-0.998541235923767,1.83357087735203e-007,-0.987598598003387,-0.156999841332436,-0.494151324033737,-0.855208694934845,-0.156309053301811,6.56101974527701e-006,-0.0539940781891346,-0.998541235923767,0.0270252861082554,-0.0467493459582329,-0.998541057109833,0.494182050228119,-0.855189621448517,-0.156316325068474,1.83357087735203e-007,-0.987598598003387,-0.156999841332436,-5.6803349934853e-007,0.998412191867828,0.056330680847168,-0.49823123216629,0.865501761436462,0.0516957230865955,-0.251067906618118,0.419475525617599,0.872356057167053,-2.32966897328879e-007,0.476083844900131,0.879399836063385,0.498264908790588,0.8654825091362,0.0516910515725613,-5.6803349934853e-007,0.998412191867828,0.056330680847168,-2.32966897328879e-007,0.476083844900131,0.879399836063385,0.25111648440361,0.419480234384537,0.872339844703674,0.864230632781982,0.501598656177521,0.0387849248945713,0.498264908790588,0.8654825091362,0.0516910515725613,0.25111648440361,0.419480234384537,0.872339844703674,0.463351219892502,0.249824196100235,0.850231409072876,0.999781787395477,0.00300728855654597,0.0206666942685843,0.864230632781982,0.501598656177521,0.0387849248945713,0.463351219892502,0.249824196100235,0.850231409072876,0.583707809448242,-0.0216493029147387,0.811675190925598,0.867523729801178,-0.497392982244492,0.00167245790362358,0.999781787395477,0.00300728855654597,0.0206666942685843,0.583707809448242,-0.0216493029147387,0.811675190925598,0.550077855587006,-0.344543039798737,0.76072633266449,
- 0.501618802547455,-0.864992558956146,-0.0128994546830654,0.867523729801178,-0.497392982244492,0.00167245790362358,0.550077855587006,-0.344543039798737,0.76072633266449,0.336118310689926,-0.614120304584503,0.714059412479401,-2.75958342399463e-007,-0.99983012676239,-0.018432954326272,0.501618802547455,-0.864992558956146,-0.0128994546830654,0.336118310689926,-0.614120304584503,0.714059412479401,1.1862704241139e-006,-0.719086170196533,0.69492095708847,-0.501585364341736,-0.865012168884277,-0.0128943799063563,-2.75958342399463e-007,-0.99983012676239,-0.018432954326272,1.1862704241139e-006,-0.719086170196533,0.69492095708847,-0.336056679487228,-0.614128768444061,0.714081108570099,-0.867495179176331,-0.497442662715912,0.00170905224513263,-0.501585364341736,-0.865012168884277,-0.0128943799063563,-0.336056679487228,-0.614128768444061,0.714081108570099,-0.550064146518707,-0.344487339258194,0.760761320590973,-0.999781489372253,0.00300359097309411,0.0206882804632187,-0.867495179176331,-0.497442662715912,0.00170905224513263,-0.550064146518707,-0.344487339258194,0.760761320590973,-0.58374559879303,-0.021628599613905,0.811648428440094,-0.864199161529541,0.501649856567383,0.0388222374022007,-0.999781489372253,0.00300359097309411,0.0206882804632187,-0.58374559879303,-0.021628599613905,0.811648428440094,-0.463377147912979,0.249771490693092,0.850232779979706,-0.49823123216629,0.865501761436462,0.0516957230865955,-0.864199161529541,0.501649856567383,0.0388222374022007,-0.463377147912979,0.249771490693092,0.850232779979706,-0.251067906618118,0.419475525617599,0.872356057167053,0.492748409509659,-0.853485286235809,-0.16959285736084,0.853503525257111,-0.492717534303665,-0.169591382145882,0.8651984333992,-0.499467968940735,-0.0443104356527328,0.499480456113815,-0.865191340446472,-0.0443097539246082,0.853503525257111,-0.492717534303665,-0.169591382145882,0.985517621040344,-3.46515278693005e-008,-0.169573321938515,0.999020576477051,-1.51362570477431e-007,-0.0442499183118343,0.8651984333992,-0.499467968940735,-0.0443104356527328,0.985517621040344,-3.46515278693005e-008,-0.169573321938515,
- 0.853500425815582,0.492724061012268,-0.169587701559067,0.865196645259857,0.49947127699852,-0.0443087331950665,0.999020576477051,-1.51362570477431e-007,-0.0442499183118343,0.853500425815582,0.492724061012268,-0.169587701559067,0.492747157812119,0.853486835956573,-0.169588834047318,0.499481379985809,0.865191042423248,-0.0443033464252949,0.865196645259857,0.49947127699852,-0.0443087331950665,0.492747157812119,0.853486835956573,-0.169588834047318,0,0.985510766506195,-0.169612586498261,-1.71311660324136e-006,0.999017179012299,-0.0443229489028454,0.499481379985809,0.865191042423248,-0.0443033464252949,0,0.985510766506195,-0.169612586498261,-0.492712497711182,0.853503048419952,-0.16960808634758,-0.499477863311768,0.865192115306854,-0.0443230420351028,-1.71311660324136e-006,0.999017179012299,-0.0443229489028454,-0.492712497711182,0.853503048419952,-0.16960808634758,-0.853494703769684,0.492727190256119,-0.169607654213905,-0.865182042121887,0.499494463205338,-0.0443303249776363,-0.499477863311768,0.865192115306854,-0.0443230420351028,-0.853494703769684,0.492727190256119,-0.169607654213905,-0.985511779785156,6.93048676225771e-008,-0.169606864452362,-0.999016880989075,-2.09150968544236e-007,-0.0443328432738781,-0.865182042121887,0.499494463205338,-0.0443303249776363,-0.985511779785156,6.93048676225771e-008,-0.169606864452362,-0.853497445583344,-0.492720365524292,-0.169613599777222,-0.865184009075165,-0.499490857124329,-0.0443330369889736,-0.999016880989075,-2.09150968544236e-007,-0.0443328432738781,-0.853497445583344,-0.492720365524292,-0.169613599777222,-0.492713630199432,-0.853501558303833,-0.169612735509872,-0.499476552009583,-0.865192651748657,-0.0443290211260319,-0.865184009075165,-0.499490857124329,-0.0443330369889736,-0.492713630199432,-0.853501558303833,-0.169612735509872,1.155036812861e-007,-0.98551082611084,-0.169612571597099,-1.62228764111205e-006,-0.999017179012299,-0.0443257205188274,-0.499476552009583,-0.865192651748657,-0.0443290211260319,1.155036812861e-007,-0.98551082611084,-0.169612571597099,0.492748409509659,-0.853485286235809,-0.16959285736084,
- 0.499480456113815,-0.865191340446472,-0.0443097539246082,-1.62228764111205e-006,-0.999017179012299,-0.0443257205188274,-1.71311660324136e-006,0.999017179012299,-0.0443229489028454,-0.499477863311768,0.865192115306854,-0.0443230420351028,-0.357302725315094,0.618875622749329,0.699519634246826,6.95607980105706e-007,0.714616656303406,0.699516236782074,0.499481379985809,0.865191042423248,-0.0443033464252949,-1.71311660324136e-006,0.999017179012299,-0.0443229489028454,6.95607980105706e-007,0.714616656303406,0.699516236782074,0.357365548610687,0.618904709815979,0.699461877346039,0.865196645259857,0.49947127699852,-0.0443087331950665,0.499481379985809,0.865191042423248,-0.0443033464252949,0.357365548610687,0.618904709815979,0.699461877346039,0.618857502937317,0.35733288526535,0.699520170688629,0.999020576477051,-1.51362570477431e-007,-0.0442499183118343,0.865196645259857,0.49947127699852,-0.0443087331950665,0.618857502937317,0.35733288526535,0.699520170688629,0.71457177400589,9.06302034309192e-007,0.699562132358551,0.8651984333992,-0.499467968940735,-0.0443104356527328,0.999020576477051,-1.51362570477431e-007,-0.0442499183118343,0.71457177400589,9.06302034309192e-007,0.699562132358551,0.618858873844147,-0.357326865196228,0.699522137641907,0.499480456113815,-0.865191340446472,-0.0443097539246082,0.8651984333992,-0.499467968940735,-0.0443104356527328,0.618858873844147,-0.357326865196228,0.699522137641907,0.357363820075989,-0.618912518024445,0.699455678462982,-1.62228764111205e-006,-0.999017179012299,-0.0443257205188274,0.499480456113815,-0.865191340446472,-0.0443097539246082,0.357363820075989,-0.618912518024445,0.699455678462982,6.32388434951281e-007,-0.714632391929626,0.69950008392334,-0.499476552009583,-0.865192651748657,-0.0443290211260319,-1.62228764111205e-006,-0.999017179012299,-0.0443257205188274,6.32388434951281e-007,-0.714632391929626,0.69950008392334,-0.357297003269196,-0.618881106376648,0.699517726898193,-0.865184009075165,-0.499490857124329,-0.0443330369889736,-0.499476552009583,-0.865192651748657,-0.0443290211260319,
- -0.357297003269196,-0.618881106376648,0.699517726898193,-0.618941247463226,-0.35737732052803,0.699423432350159,-0.999016880989075,-2.09150968544236e-007,-0.0443328432738781,-0.865184009075165,-0.499490857124329,-0.0443330369889736,-0.618941247463226,-0.35737732052803,0.699423432350159,-0.714748978614807,-2.10799253608229e-008,0.699380993843079,-0.865182042121887,0.499494463205338,-0.0443303249776363,-0.999016880989075,-2.09150968544236e-007,-0.0443328432738781,-0.714748978614807,-2.10799253608229e-008,0.699380993843079,-0.618941783905029,0.357387512922287,0.69941782951355,-0.499477863311768,0.865192115306854,-0.0443230420351028,-0.865182042121887,0.499494463205338,-0.0443303249776363,-0.618941783905029,0.357387512922287,0.69941782951355,-0.357302725315094,0.618875622749329,0.699519634246826,0.494734764099121,-0.858847200870514,-0.132736653089523,0.856995940208435,-0.496741563081741,-0.137134179472923,0.86679995059967,-0.498573422431946,-0.00907974410802126,0.500798761844635,-0.865549027919769,-0.00503454357385635,0.856995940208435,-0.496741563081741,-0.137134179472923,0.989703774452209,-0.00193907786160707,-0.143117770552635,0.999892592430115,0.00186809326987714,-0.0145345199853182,0.86679995059967,-0.498573422431946,-0.00907974410802126,0.989703774452209,-0.00193907786160707,-0.143117770552635,0.857181072235107,0.492974549531937,-0.149052008986473,0.865041673183441,0.501300394535065,-0.0200208555907011,0.999892592430115,0.00186809326987714,-0.0145345199853182,0.857181072235107,0.492974549531937,-0.149052008986473,0.494923651218414,0.85529226064682,-0.153381079435349,0.499043166637421,0.866244971752167,-0.0239899810403585,0.865041673183441,0.501300394535065,-0.0200208555907011,0.494923651218414,0.85529226064682,-0.153381079435349,5.93221784583875e-007,0.987917900085449,-0.154978007078171,-1.44317198191857e-006,0.999675989151001,-0.0254556313157082,0.499043166637421,0.866244971752167,-0.0239899810403585,5.93221784583875e-007,0.987917900085449,-0.154978007078171,-0.49492871761322,0.855290114879608,-0.153376802802086,
- -0.499047100543976,0.866242468357086,-0.0240005515515804,-1.44317198191857e-006,0.999675989151001,-0.0254556313157082,-0.49492871761322,0.855290114879608,-0.153376802802086,-0.857166528701782,0.49301865696907,-0.148990362882614,-0.865019261837006,0.501340091228485,-0.0199981927871704,-0.499047100543976,0.866242468357086,-0.0240005515515804,-0.857166528701782,0.49301865696907,-0.148990362882614,-0.989715039730072,-0.00194077310152352,-0.14304031431675,-0.999892592430115,0.00187014858238399,-0.0145363919436932,-0.865019261837006,0.501340091228485,-0.0199981927871704,-0.989715039730072,-0.00194077310152352,-0.14304031431675,-0.856981575489044,-0.496783584356308,-0.137071892619133,-0.866775810718536,-0.498615711927414,-0.00905731879174709,-0.999892592430115,0.00187014858238399,-0.0145363919436932,-0.856981575489044,-0.496783584356308,-0.137071892619133,-0.494739890098572,-0.858844399452209,-0.132735520601273,-0.500804245471954,-0.865545809268951,-0.00504648173227906,-0.866775810718536,-0.498615711927414,-0.00905731879174709,-0.494739890098572,-0.858844399452209,-0.132735520601273,5.1483823426679e-007,-0.991363346576691,-0.13114370405674,-1.30840305700985e-006,-0.999993562698364,-0.00357409450225532,-0.500804245471954,-0.865545809268951,-0.00504648173227906,5.1483823426679e-007,-0.991363346576691,-0.13114370405674,0.494734764099121,-0.858847200870514,-0.132736653089523,0.500798761844635,-0.865549027919769,-0.00503454357385635,-1.30840305700985e-006,-0.999993562698364,-0.00357409450225532,-1.44317198191857e-006,0.999675989151001,-0.0254556313157082,-0.499047100543976,0.866242468357086,-0.0240005515515804,-0.305440843105316,0.529008209705353,0.791742563247681,1.08336996618164e-006,0.610839426517487,0.791754543781281,0.499043166637421,0.866244971752167,-0.0239899810403585,-1.44317198191857e-006,0.999675989151001,-0.0254556313157082,1.08336996618164e-006,0.610839426517487,0.791754543781281,0.30547034740448,0.529035747051239,0.791712760925293,0.865041673183441,0.501300394535065,-0.0200208555907011,0.499043166637421,0.866244971752167,-0.0239899810403585,
- 0.30547034740448,0.529035747051239,0.791712760925293,0.528944313526154,0.305462688207626,0.791776716709137,0.999892592430115,0.00186809326987714,-0.0145345199853182,0.865041673183441,0.501300394535065,-0.0200208555907011,0.528944313526154,0.305462688207626,0.791776716709137,0.610711634159088,6.59011334391835e-007,0.791853070259094,0.86679995059967,-0.498573422431946,-0.00907974410802126,0.999892592430115,0.00186809326987714,-0.0145345199853182,0.610711634159088,6.59011334391835e-007,0.791853070259094,0.528943538665771,-0.305452704429626,0.791781187057495,0.500798761844635,-0.865549027919769,-0.00503454357385635,0.86679995059967,-0.498573422431946,-0.00907974410802126,0.528943538665771,-0.305452704429626,0.791781187057495,0.305469423532486,-0.52903938293457,0.791710615158081,-1.30840305700985e-006,-0.999993562698364,-0.00357409450225532,0.500798761844635,-0.865549027919769,-0.00503454357385635,0.305469423532486,-0.52903938293457,0.791710615158081,1.06618620066001e-006,-0.610836923122406,0.791756391525269,-0.500804245471954,-0.865545809268951,-0.00504648173227906,-1.30840305700985e-006,-0.999993562698364,-0.00357409450225532,1.06618620066001e-006,-0.610836923122406,0.791756391525269,-0.305435210466385,-0.529007077217102,0.791745483875275,-0.866775810718536,-0.498615711927414,-0.00905731879174709,-0.500804245471954,-0.865545809268951,-0.00504648173227906,-0.305435210466385,-0.529007077217102,0.791745483875275,-0.529056012630463,-0.305539488792419,0.791672587394714,-0.999892592430115,0.00187014858238399,-0.0145363919436932,-0.866775810718536,-0.498615711927414,-0.00905731879174709,-0.529056012630463,-0.305539488792419,0.791672587394714,-0.610897958278656,5.7327178559774e-009,0.791709244251251,-0.865019261837006,0.501340091228485,-0.0199981927871704,-0.999892592430115,0.00187014858238399,-0.0145363919436932,-0.610897958278656,5.7327178559774e-009,0.791709244251251,-0.529052197933197,0.305549174547195,0.791671335697174,-0.499047100543976,0.866242468357086,-0.0240005515515804,-0.865019261837006,0.501340091228485,-0.0199981927871704,
- -0.529052197933197,0.305549174547195,0.791671335697174,-0.305440843105316,0.529008209705353,0.791742563247681,0.497620105743408,-0.861919224262238,-0.0973115190863609,0.861940562725067,-0.497580319643021,-0.0973263680934906,0.865933179855347,-0.4998799264431,0.016733180731535,0.499921858310699,-0.865908324718475,0.0167632456868887,0.861940562725067,-0.497580319643021,-0.0973263680934906,0.995252549648285,-1.03073404034149e-007,-0.0973253399133682,0.999859273433685,-2.34192938819433e-007,0.0167721416801214,0.865933179855347,-0.4998799264431,0.016733180731535,0.995252549648285,-1.03073404034149e-007,-0.0973253399133682,0.861934781074524,0.497590839862823,-0.0973226800560951,0.865929186344147,0.499886572360992,0.0167328249663115,0.999859273433685,-2.34192938819433e-007,0.0167721416801214,0.861934781074524,0.497590839862823,-0.0973226800560951,0.497628182172775,0.861914873123169,-0.0973083898425102,0.499929696321487,0.865903794765472,0.0167625099420547,0.865929186344147,0.499886572360992,0.0167328249663115,0.497628182172775,0.861914873123169,-0.0973083898425102,3.77879047164242e-007,0.995254158973694,-0.0973094403743744,-1.08767608253402e-006,0.999859690666199,0.0167528688907623,0.499929696321487,0.865903794765472,0.0167625099420547,3.77879047164242e-007,0.995254158973694,-0.0973094403743744,-0.497616738080978,0.86192113161087,-0.0973113849759102,-0.499920964241028,0.865908741950989,0.0167613346129656,-1.08767608253402e-006,0.999859690666199,0.0167528688907623,-0.497616738080978,0.86192113161087,-0.0973113849759102,-0.861890316009521,0.497672647237778,-0.0972979590296745,-0.865885376930237,0.499961286783218,0.0167781617492437,-0.499920964241028,0.865908741950989,0.0167613346129656,-0.861890316009521,0.497672647237778,-0.0972979590296745,-0.995255589485168,-8.58754667376616e-009,-0.0972953736782074,-0.999859213829041,-8.73037890869455e-008,0.0167753752321005,-0.865885376930237,0.499961286783218,0.0167781617492437,-0.995255589485168,-8.58754667376616e-009,-0.0972953736782074,-0.861896276473999,-0.497661948204041,-0.0973005220293999,
- -0.865889191627502,-0.499954462051392,0.0167779885232449,-0.999859213829041,-8.73037890869455e-008,0.0167753752321005,-0.861896276473999,-0.497661948204041,-0.0973005220293999,-0.497608661651611,-0.861925423145294,-0.0973155945539474,-0.499913156032562,-0.865913331508636,0.016761489212513,-0.865889191627502,-0.499954462051392,0.0167779885232449,-0.497608661651611,-0.861925423145294,-0.0973155945539474,3.77880098767491e-007,-0.995254278182983,-0.097309023141861,-1.04556181668158e-006,-0.999859511852264,0.0167587194591761,-0.499913156032562,-0.865913331508636,0.016761489212513,3.77880098767491e-007,-0.995254278182983,-0.097309023141861,0.497620105743408,-0.861919224262238,-0.0973115190863609,0.499921858310699,-0.865908324718475,0.0167632456868887,-1.04556181668158e-006,-0.999859511852264,0.0167587194591761,-1.08767608253402e-006,0.999859690666199,0.0167528688907623,-0.499920964241028,0.865908741950989,0.0167613346129656,-0.29395991563797,0.509220838546753,0.808876752853394,-3.26185926269318e-007,0.587996184825897,0.808863699436188,0.499929696321487,0.865903794765472,0.0167625099420547,-1.08767608253402e-006,0.999859690666199,0.0167528688907623,-3.26185926269318e-007,0.587996184825897,0.808863699436188,0.294038236141205,0.509273111820221,0.808815479278564,0.865929186344147,0.499886572360992,0.0167328249663115,0.499929696321487,0.865903794765472,0.0167625099420547,0.294038236141205,0.509273111820221,0.808815479278564,0.509220659732819,0.294066876173019,0.808838069438934,0.999859273433685,-2.34192938819433e-007,0.0167721416801214,0.865929186344147,0.499886572360992,0.0167328249663115,0.509220659732819,0.294066876173019,0.808838069438934,0.588010370731354,-1.4825074856617e-007,0.808853387832642,0.865933179855347,-0.4998799264431,0.016733180731535,0.999859273433685,-2.34192938819433e-007,0.0167721416801214,0.588010370731354,-1.4825074856617e-007,0.808853387832642,0.509211301803589,-0.294052958488464,0.808848977088928,0.499921858310699,-0.865908324718475,0.0167632456868887,0.865933179855347,-0.4998799264431,0.016733180731535,
- 0.509211301803589,-0.294052958488464,0.808848977088928,0.294028460979462,-0.5092613697052,0.808826386928558,-1.04556181668158e-006,-0.999859511852264,0.0167587194591761,0.499921858310699,-0.865908324718475,0.0167632456868887,0.294028460979462,-0.5092613697052,0.808826386928558,-5.93052407182881e-009,-0.587984681129456,0.808872163295746,-0.499913156032562,-0.865913331508636,0.016761489212513,-1.04556181668158e-006,-0.999859511852264,0.0167587194591761,-5.93052407182881e-009,-0.587984681129456,0.808872163295746,-0.293947905302048,-0.509205937385559,0.808890521526337,-0.865889191627502,-0.499954462051392,0.0167779885232449,-0.499913156032562,-0.865913331508636,0.016761489212513,-0.293947905302048,-0.509205937385559,0.808890521526337,-0.509222984313965,-0.29403829574585,0.808846950531006,-0.999859213829041,-8.73037890869455e-008,0.0167753752321005,-0.865889191627502,-0.499954462051392,0.0167779885232449,-0.509222984313965,-0.29403829574585,0.808846950531006,-0.588058471679688,4.68507835194032e-007,0.808818459510803,-0.865885376930237,0.499961286783218,0.0167781617492437,-0.999859213829041,-8.73037890869455e-008,0.0167753752321005,-0.588058471679688,4.68507835194032e-007,0.808818459510803,-0.50923091173172,0.294050812721252,0.808837473392487,-0.499920964241028,0.865908741950989,0.0167613346129656,-0.865885376930237,0.499961286783218,0.0167781617492437,-0.50923091173172,0.294050812721252,0.808837473392487,-0.29395991563797,0.509220838546753,0.808876752853394,0.491522312164307,-0.862935543060303,-0.117251642048359,0.85217010974884,-0.503419756889343,-0.142739489674568,0.870474576950073,-0.491757154464722,-0.0211897697299719,0.50464278459549,-0.863324999809265,0.00236730533652008,0.85217010974884,-0.503419756889343,-0.142739489674568,0.984070062637329,-0.0112367821857333,-0.177425399422646,0.998544335365295,0.0107478341087699,-0.0528547875583172,0.870474576950073,-0.491757154464722,-0.0211897697299719,0.984070062637329,-0.0112367821857333,-0.177425399422646,0.851109325885773,0.480335146188736,-0.211874842643738,0.858295440673828,0.50622570514679,-0.0840495228767395,
- 0.998544335365295,0.0107478341087699,-0.0528547875583172,0.851109325885773,0.480335146188736,-0.211874842643738,0.490471005439758,0.838658690452576,-0.236832857131958,0.492518216371536,0.863771200180054,-0.106419444084167,0.858295440673828,0.50622570514679,-0.0840495228767395,0.490471005439758,0.838658690452576,-0.236832857131958,-1.45936979834005e-007,0.96929258108139,-0.245910257101059,-2.10729240279761e-006,0.993420422077179,-0.114524014294147,0.492518216371536,0.863771200180054,-0.106419444084167,-1.45936979834005e-007,0.96929258108139,-0.245910257101059,-0.490444600582123,0.83866947889328,-0.236849591135979,-0.492506891489029,0.863775193691254,-0.106439061462879,-2.10729240279761e-006,0.993420422077179,-0.114524014294147,-0.490444600582123,0.83866947889328,-0.236849591135979,-0.851077735424042,0.480387568473816,-0.211882784962654,-0.858266711235046,0.506272077560425,-0.0840644910931587,-0.492506891489029,0.863775193691254,-0.106439061462879,-0.851077735424042,0.480387568473816,-0.211882784962654,-0.984068334102631,-0.0112419938668609,-0.177434697747231,-0.998540937900543,0.0107536502182484,-0.0529184974730015,-0.858266711235046,0.506272077560425,-0.0840644910931587,-0.984068334102631,-0.0112419938668609,-0.177434697747231,-0.852141618728638,-0.503467857837677,-0.142740100622177,-0.870443820953369,-0.491811096668243,-0.0211962722241879,-0.998540937900543,0.0107536502182484,-0.0529184974730015,-0.852141618728638,-0.503467857837677,-0.142740100622177,-0.49150088429451,-0.862945675849915,-0.117267735302448,-0.504639327526093,-0.863327085971832,0.00234821764752269,-0.870443820953369,-0.491811096668243,-0.0211962722241879,-0.49150088429451,-0.862945675849915,-0.117267735302448,2.35427854988757e-008,-0.994158625602722,-0.107928402721882,-1.21203015623905e-006,-0.999939143657684,0.0110374893993139,-0.504639327526093,-0.863327085971832,0.00234821764752269,2.35427854988757e-008,-0.994158625602722,-0.107928402721882,0.491522312164307,-0.862935543060303,-0.117251642048359,0.50464278459549,-0.863324999809265,0.00236730533652008,
- -1.21203015623905e-006,-0.999939143657684,0.0110374893993139,-2.10729240279761e-006,0.993420422077179,-0.114524014294147,-0.492506891489029,0.863775193691254,-0.106439061462879,-0.357299119234085,0.618886709213257,0.699511766433716,1.98852762878232e-006,0.714637994766235,0.699494540691376,0.492518216371536,0.863771200180054,-0.106419444084167,-2.10729240279761e-006,0.993420422077179,-0.114524014294147,1.98852762878232e-006,0.714637994766235,0.699494540691376,0.357365548610687,0.618916094303131,0.699451684951782,0.858295440673828,0.50622570514679,-0.0840495228767395,0.492518216371536,0.863771200180054,-0.106419444084167,0.357365548610687,0.618916094303131,0.699451684951782,0.618855595588684,0.357333034276962,0.699522018432617,0.998544335365295,0.0107478341087699,-0.0528547875583172,0.858295440673828,0.50622570514679,-0.0840495228767395,0.618855595588684,0.357333034276962,0.699522018432617,0.714570224285126,3.79380452386613e-007,0.699563801288605,0.870474576950073,-0.491757154464722,-0.0211897697299719,0.998544335365295,0.0107478341087699,-0.0528547875583172,0.714570224285126,3.79380452386613e-007,0.699563801288605,0.618858277797699,-0.357324987649918,0.699523508548737,0.50464278459549,-0.863324999809265,0.00236730533652008,0.870474576950073,-0.491757154464722,-0.0211897697299719,0.618858277797699,-0.357324987649918,0.699523508548737,0.357362598180771,-0.618911385536194,0.699457406997681,-1.21203015623905e-006,-0.999939143657684,0.0110374893993139,0.50464278459549,-0.863324999809265,0.00236730533652008,0.357362598180771,-0.618911385536194,0.699457406997681,1.36315429699607e-006,-0.714635610580444,0.699496924877167,-0.504639327526093,-0.863327085971832,0.00234821764752269,-1.21203015623905e-006,-0.999939143657684,0.0110374893993139,1.36315429699607e-006,-0.714635610580444,0.699496924877167,-0.357297241687775,-0.618885934352875,0.699513375759125,-0.870443820953369,-0.491811096668243,-0.0211962722241879,-0.504639327526093,-0.863327085971832,0.00234821764752269,-0.357297241687775,-0.618885934352875,0.699513375759125,-0.618942379951477,-0.357377946376801,0.699422121047974,
- -0.998540937900543,0.0107536502182484,-0.0529184974730015,-0.870443820953369,-0.491811096668243,-0.0211962722241879,-0.618942379951477,-0.357377946376801,0.699422121047974,-0.714749276638031,2.81065517526713e-008,0.6993807554245,-0.858266711235046,0.506272077560425,-0.0840644910931587,-0.998540937900543,0.0107536502182484,-0.0529184974730015,-0.714749276638031,2.81065517526713e-008,0.6993807554245,-0.618941783905029,0.357388198375702,0.699417352676392,-0.492506891489029,0.863775193691254,-0.106439061462879,-0.858266711235046,0.506272077560425,-0.0840644910931587,-0.618941783905029,0.357388198375702,0.699417352676392,-0.357299119234085,0.618886709213257,0.699511766433716,0.497914731502533,-0.858730673789978,-0.121089048683643,0.862135231494904,-0.493975222110748,-0.112744174897671,0.863866567611694,-0.50229799747467,-0.03783168643713,0.497901290655136,-0.866033136844635,-0.0456174947321415,0.862135231494904,-0.493975222110748,-0.112744174897671,0.994846165180206,0.00371526926755905,-0.101327918469906,0.999626696109772,-0.00362634449265897,-0.0270796492695808,0.863866567611694,-0.50229799747467,-0.03783168643713,0.994846165180206,0.00371526926755905,-0.101327918469906,0.860924780368805,0.500720381736755,-0.0899313688278198,0.867510974407196,0.497149020433426,-0.0163548514246941,0.999626696109772,-0.00362634449265897,-0.0270796492695808,0.860924780368805,0.500720381736755,-0.0899313688278198,0.496707260608673,0.864075660705566,-0.0815786123275757,0.501543700695038,0.865091323852539,-0.00841915421187878,0.867510974407196,0.497149020433426,-0.0163548514246941,0.496707260608673,0.864075660705566,-0.0815786123275757,2.99762717759222e-007,0.996911883354187,-0.0785288959741592,-7.73056171965436e-007,0.999984800815582,-0.0055193561129272,0.501543700695038,0.865091323852539,-0.00841915421187878,2.99762717759222e-007,0.996911883354187,-0.0785288959741592,-0.496715217828751,0.864071190357208,-0.0815777778625488,-0.50155121088028,0.865086913108826,-0.00841856002807617,-7.73056171965436e-007,0.999984800815582,-0.0055193561129272,
- -0.496715217828751,0.864071190357208,-0.0815777778625488,-0.860885381698608,0.500794351100922,-0.0898968204855919,-0.867467701435089,0.49722608923912,-0.0163125693798065,-0.50155121088028,0.865086913108826,-0.00841856002807617,-0.860885381698608,0.500794351100922,-0.0898968204855919,-0.994849324226379,0.00371968862600625,-0.101297162473202,-0.999626755714417,-0.00363133009523153,-0.027075631543994,-0.867467701435089,0.49722608923912,-0.0163125693798065,-0.994849324226379,0.00371968862600625,-0.101297162473202,-0.86209374666214,-0.494054734706879,-0.112712919712067,-0.86382669210434,-0.50236964225769,-0.0377921238541603,-0.999626755714417,-0.00363133009523153,-0.027075631543994,-0.86209374666214,-0.494054734706879,-0.112712919712067,-0.497922122478485,-0.858726441860199,-0.121088229119778,-0.497905552387238,-0.866030693054199,-0.0456175431609154,-0.86382669210434,-0.50236964225769,-0.0377921238541603,-0.497922122478485,-0.858726441860199,-0.121088229119778,4.55641469443435e-007,-0.992263793945313,-0.124147236347198,-1.04841944903455e-006,-0.998824715614319,-0.0484681539237499,-0.497905552387238,-0.866030693054199,-0.0456175431609154,4.55641469443435e-007,-0.992263793945313,-0.124147236347198,0.497914731502533,-0.858730673789978,-0.121089048683643,0.497901290655136,-0.866033136844635,-0.0456174947321415,-1.04841944903455e-006,-0.998824715614319,-0.0484681539237499,-7.73056171965436e-007,0.999984800815582,-0.0055193561129272,-0.50155121088028,0.865086913108826,-0.00841856002807617,-0.330175340175629,0.571836411952972,0.750990927219391,-3.56936226353355e-007,0.66033136844635,0.750974357128143,0.501543700695038,0.865091323852539,-0.00841915421187878,-7.73056171965436e-007,0.999984800815582,-0.0055193561129272,-3.56936226353355e-007,0.66033136844635,0.750974357128143,0.330247759819031,0.571903824806213,0.750907838344574,0.867510974407196,0.497149020433426,-0.0163548514246941,0.501543700695038,0.865091323852539,-0.00841915421187878,0.330247759819031,0.571903824806213,0.750907838344574,0.571901023387909,0.330193936824799,0.750933587551117,
- 0.999626696109772,-0.00362634449265897,-0.0270796492695808,0.867510974407196,0.497149020433426,-0.0163548514246941,0.571901023387909,0.330193936824799,0.750933587551117,0.660361588001251,-1.78462915556565e-008,0.750947833061218,0.863866567611694,-0.50229799747467,-0.03783168643713,0.999626696109772,-0.00362634449265897,-0.0270796492695808,0.660361588001251,-1.78462915556565e-008,0.750947833061218,0.571907639503479,-0.330204546451569,0.750923812389374,0.497901290655136,-0.866033136844635,-0.0456174947321415,0.863866567611694,-0.50229799747467,-0.03783168643713,0.571907639503479,-0.330204546451569,0.750923812389374,0.330254197120667,-0.571916222572327,0.750895440578461,-1.04841944903455e-006,-0.998824715614319,-0.0484681539237499,0.497901290655136,-0.866033136844635,-0.0456174947321415,0.330254197120667,-0.571916222572327,0.750895440578461,-3.62898504135956e-007,-0.660356104373932,0.7509526014328,-0.497905552387238,-0.866030693054199,-0.0456175431609154,-1.04841944903455e-006,-0.998824715614319,-0.0484681539237499,-3.62898504135956e-007,-0.660356104373932,0.7509526014328,-0.330182760953903,-0.571849703788757,0.750977635383606,-0.86382669210434,-0.50236964225769,-0.0377921238541603,-0.497905552387238,-0.866030693054199,-0.0456175431609154,-0.330182760953903,-0.571849703788757,0.750977635383606,-0.571944057941437,-0.330228894948959,0.750885426998138,-0.999626755714417,-0.00363133009523153,-0.027075631543994,-0.86382669210434,-0.50236964225769,-0.0377921238541603,-0.571944057941437,-0.330228894948959,0.750885426998138,-0.660459995269775,3.15283642748909e-007,0.750861287117004,-0.867467701435089,0.49722608923912,-0.0163125693798065,-0.999626755714417,-0.00363133009523153,-0.027075631543994,-0.660459995269775,3.15283642748909e-007,0.750861287117004,-0.571941077709198,0.330218821763992,0.750891983509064,-0.50155121088028,0.865086913108826,-0.00841856002807617,-0.867467701435089,0.49722608923912,-0.0163125693798065,-0.571941077709198,0.330218821763992,0.750891983509064,-0.330175340175629,0.571836411952972,0.750990927219391,
- 0.497069269418716,-0.860931575298309,-0.108254924416542,0.860956072807312,-0.497021675109863,-0.108278535306454,0.865724205970764,-0.499757885932922,0.0276345387101173,0.499798387289047,-0.865699231624603,0.0276860129088163,0.860956072807312,-0.497021675109863,-0.108278535306454,0.994118630886078,-5.4706589480702e-008,-0.108296290040016,0.999616861343384,-3.8943952063164e-008,0.0276777278631926,0.865724205970764,-0.499757885932922,0.0276345387101173,0.994118630886078,-5.4706589480702e-008,-0.108296290040016,0.860958099365234,0.497017025947571,-0.108283124864101,0.865726590156555,0.499753713607788,0.0276338327676058,0.999616861343384,-3.8943952063164e-008,0.0276777278631926,0.860958099365234,0.497017025947571,-0.108283124864101,0.497069776058197,0.860930025577545,-0.108264617621899,0.499795585870743,0.865700900554657,0.0276837386190891,0.865726590156555,0.499753713607788,0.0276338327676058,0.497069776058197,0.860930025577545,-0.108264617621899,8.62854176375549e-006,0.994120657444,-0.108277805149555,7.94358402345097e-006,0.99961793422699,0.0276435110718012,0.499795585870743,0.865700900554657,0.0276837386190891,8.62854176375549e-006,0.994120657444,-0.108277805149555,-0.497064143419266,0.86092871427536,-0.108300752937794,-0.499813407659531,0.865691900253296,0.0276405401527882,7.94358402345097e-006,0.99961793422699,0.0276435110718012,-0.497064143419266,0.86092871427536,-0.108300752937794,-0.860912442207336,0.497092008590698,-0.108302444219589,-0.865689218044281,0.499819219112396,0.0276192910969257,-0.499813407659531,0.865691900253296,0.0276405401527882,-0.860912442207336,0.497092008590698,-0.108302444219589,-0.994117200374603,0,-0.108309350907803,-0.999618828296661,1.55769430687513e-009,0.0276038255542517,-0.865689218044281,0.499819219112396,0.0276192910969257,-0.994117200374603,0,-0.108309350907803,-0.86091011762619,-0.497096419334412,-0.108300969004631,-0.865687191486359,-0.499823063611984,0.027616960927844,-0.999618828296661,1.55769430687513e-009,0.0276038255542517,-0.86091011762619,-0.497096419334412,-0.108300969004631,
- -0.497063279151917,-0.860929906368256,-0.108294874429703,-0.499816060066223,-0.865690469741821,0.0276390314102173,-0.865687191486359,-0.499823063611984,0.027616960927844,-0.497063279151917,-0.860929906368256,-0.108294874429703,8.62854994920781e-006,-0.994121611118317,-0.108268812298775,8.02460635895841e-006,-0.999617874622345,0.0276396106928587,-0.499816060066223,-0.865690469741821,0.0276390314102173,8.62854994920781e-006,-0.994121611118317,-0.108268812298775,0.497069269418716,-0.860931575298309,-0.108254924416542,0.499798387289047,-0.865699231624603,0.0276860129088163,8.02460635895841e-006,-0.999617874622345,0.0276396106928587,7.94358402345097e-006,0.99961793422699,0.0276435110718012,-0.499813407659531,0.865691900253296,0.0276405401527882,-0.357258886098862,0.618795216083527,0.699613153934479,-4.55290355603211e-005,0.714495360851288,0.699640214443207,0.499795585870743,0.865700900554657,0.0276837386190891,7.94358402345097e-006,0.99961793422699,0.0276435110718012,-4.55290355603211e-005,0.714495360851288,0.699640214443207,0.357285767793655,0.61875706911087,0.699633181095123,0.865726590156555,0.499753713607788,0.0276338327676058,0.499795585870743,0.865700900554657,0.0276837386190891,0.357285767793655,0.61875706911087,0.699633181095123,0.618784725666046,0.357233136892319,0.699635446071625,0.999616861343384,-3.8943952063164e-008,0.0276777278631926,0.865726590156555,0.499753713607788,0.0276338327676058,0.618784725666046,0.357233136892319,0.699635446071625,0.7144975066185,6.32373655662377e-008,0.699638068675995,0.865724205970764,-0.499757885932922,0.0276345387101173,0.999616861343384,-3.8943952063164e-008,0.0276777278631926,0.7144975066185,6.32373655662377e-008,0.699638068675995,0.618789851665497,-0.35724139213562,0.699626982212067,0.499798387289047,-0.865699231624603,0.0276860129088163,0.865724205970764,-0.499757885932922,0.0276345387101173,0.618789851665497,-0.35724139213562,0.699626982212067,0.357302963733673,-0.618778228759766,0.699605643749237,8.02460635895841e-006,-0.999617874622345,0.0276396106928587,0.499798387289047,-0.865699231624603,0.0276860129088163,
- 0.357302963733673,-0.618778228759766,0.699605643749237,-4.49402068625204e-005,-0.714526057243347,0.69960880279541,-0.499816060066223,-0.865690469741821,0.0276390314102173,8.02460635895841e-006,-0.999617874622345,0.0276396106928587,-4.49402068625204e-005,-0.714526057243347,0.69960880279541,-0.357273995876312,-0.618814170360565,0.699588656425476,-0.865687191486359,-0.499823063611984,0.027616960927844,-0.499816060066223,-0.865690469741821,0.0276390314102173,-0.357273995876312,-0.618814170360565,0.699588656425476,-0.61887800693512,-0.357350021600723,0.69949346780777,-0.999618828296661,1.55769430687513e-009,0.0276038255542517,-0.865687191486359,-0.499823063611984,0.027616960927844,-0.61887800693512,-0.357350021600723,0.69949346780777,-0.714676976203918,0,0.699454724788666,-0.865689218044281,0.499819219112396,0.0276192910969257,-0.999618828296661,1.55769430687513e-009,0.0276038255542517,-0.714676976203918,0,0.699454724788666,-0.618873834609985,0.357344686985016,0.699499845504761,-0.499813407659531,0.865691900253296,0.0276405401527882,-0.865689218044281,0.499819219112396,0.0276192910969257,-0.618873834609985,0.357344686985016,0.699499845504761,-0.357258886098862,0.618795216083527,0.699613153934479,0.498163282871246,-0.862841427326202,-0.0856623724102974,0.862861692905426,-0.49812576174736,-0.0856769382953644,0.866018831729889,-0.499943405389786,-0.00825015734881163,0.49998351931572,-0.865995943546295,-0.00821906700730324,0.862861692905426,-0.49812576174736,-0.0856769382953644,0.996323049068451,-1.51514321089508e-008,-0.085676409304142,0.999966263771057,-1.1418413237152e-007,-0.00821194145828485,0.866018831729889,-0.499943405389786,-0.00825015734881163,0.996323049068451,-1.51514321089508e-008,-0.085676409304142,0.862858593463898,0.498131573200226,-0.0856740772724152,0.866016745567322,0.499947190284729,-0.00824749935418367,0.999966263771057,-1.1418413237152e-007,-0.00821194145828485,0.862858593463898,0.498131573200226,-0.0856740772724152,0.498162478208542,0.862842082977295,-0.0856596753001213,0.499984174966812,0.865995526313782,-0.00821339152753353,
- 0.866016745567322,0.499947190284729,-0.00824749935418367,0.498162478208542,0.862842082977295,-0.0856596753001213,3.48425203355873e-007,0.996324360370636,-0.0856610313057899,-8.58947998949589e-007,0.999966025352478,-0.00824197940528393,0.499984174966812,0.865995526313782,-0.00821339152753353,3.48425203355873e-007,0.996324360370636,-0.0856610313057899,-0.498151749372482,0.862848043441772,-0.0856624245643616,-0.499971657991409,0.8660027384758,-0.00821885839104652,-8.58947998949589e-007,0.999966025352478,-0.00824197940528393,-0.498151749372482,0.862848043441772,-0.0856624245643616,-0.862814009189606,0.49821263551712,-0.0856514722108841,-0.865972340106964,0.500024080276489,-0.00823213718831539,-0.499971657991409,0.8660027384758,-0.00821885839104652,-0.862814009189606,0.49821263551712,-0.0856514722108841,-0.996325254440308,1.51480552545991e-008,-0.0856501683592796,-0.999966144561768,-1.0330247590673e-007,-0.00822555925697088,-0.865972340106964,0.500024080276489,-0.00823213718831539,-0.996325254440308,1.51480552545991e-008,-0.0856501683592796,-0.862817049026489,-0.498206853866577,-0.0856552943587303,-0.865974605083466,-0.500020265579224,-0.00823515467345715,-0.999966144561768,-1.0330247590673e-007,-0.00822555925697088,-0.862817049026489,-0.498206853866577,-0.0856552943587303,-0.49815246462822,-0.862847208976746,-0.0856674164533615,-0.499970823526382,-0.866003274917603,-0.008225467056036,-0.865974605083466,-0.500020265579224,-0.00823515467345715,-0.49815246462822,-0.862847208976746,-0.0856674164533615,3.18127064247165e-007,-0.996324241161346,-0.0856619998812675,-9.35052639761125e-007,-0.999965906143188,-0.00824528373777866,-0.499970823526382,-0.866003274917603,-0.008225467056036,3.18127064247165e-007,-0.996324241161346,-0.0856619998812675,0.498163282871246,-0.862841427326202,-0.0856623724102974,0.49998351931572,-0.865995943546295,-0.00821906700730324,-9.35052639761125e-007,-0.999965906143188,-0.00824528373777866,-8.58947998949589e-007,0.999966025352478,-0.00824197940528393,-0.499971657991409,0.8660027384758,-0.00821885839104652,
- -0.357225775718689,0.618747532367706,0.699672281742096,1.96073278857511e-006,0.714487075805664,0.699648678302765,0.499984174966812,0.865995526313782,-0.00821339152753353,-8.58947998949589e-007,0.999966025352478,-0.00824197940528393,1.96073278857511e-006,0.714487075805664,0.699648678302765,0.357290595769882,0.61877429485321,0.69961553812027,0.866016745567322,0.499947190284729,-0.00824749935418367,0.499984174966812,0.865995526313782,-0.00821339152753353,0.357290595769882,0.61877429485321,0.69961553812027,0.618785619735718,0.35723802447319,0.699632406234741,0.999966263771057,-1.1418413237152e-007,-0.00821194145828485,0.866016745567322,0.499947190284729,-0.00824749935418367,0.618785619735718,0.35723802447319,0.699632406234741,0.714497029781342,4.8481012981938e-007,0.699638426303864,0.866018831729889,-0.499943405389786,-0.00825015734881163,0.999966263771057,-1.1418413237152e-007,-0.00821194145828485,0.714497029781342,4.8481012981938e-007,0.699638426303864,0.618792116641998,-0.357233017683029,0.699629068374634,0.49998351931572,-0.865995943546295,-0.00821906700730324,0.866018831729889,-0.499943405389786,-0.00825015734881163,0.618792116641998,-0.357233017683029,0.699629068374634,0.35729119181633,-0.618787229061127,0.699603736400604,-9.35052639761125e-007,-0.999965906143188,-0.00824528373777866,0.49998351931572,-0.865995943546295,-0.00821906700730324,0.35729119181633,-0.618787229061127,0.699603736400604,1.36342055157002e-006,-0.714506804943085,0.699628591537476,-0.499970823526382,-0.866003274917603,-0.008225467056036,-9.35052639761125e-007,-0.999965906143188,-0.00824528373777866,1.36342055157002e-006,-0.714506804943085,0.699628591537476,-0.357222735881805,-0.618756234645844,0.699666082859039,-0.865974605083466,-0.500020265579224,-0.00823515467345715,-0.499970823526382,-0.866003274917603,-0.008225467056036,-0.357222735881805,-0.618756234645844,0.699666082859039,-0.618876457214355,-0.357285588979721,0.699527680873871,-0.999966144561768,-1.0330247590673e-007,-0.00822555925697088,-0.865974605083466,-0.500020265579224,-0.00823515467345715,
- -0.618876457214355,-0.357285588979721,0.699527680873871,-0.714676141738892,4.42717720261498e-007,0.699455559253693,-0.865972340106964,0.500024080276489,-0.00823213718831539,-0.999966144561768,-1.0330247590673e-007,-0.00822555925697088,-0.714676141738892,4.42717720261498e-007,0.699455559253693,-0.618872404098511,0.357292473316193,0.699527740478516,-0.499971657991409,0.8660027384758,-0.00821885839104652,-0.865972340106964,0.500024080276489,-0.00823213718831539,-0.618872404098511,0.357292473316193,0.699527740478516,-0.357225775718689,0.618747532367706,0.699672281742096,-1.14951026262133e-005,0,1,-1.14951008072239e-005,0,1,-1.14951008072239e-005,0,0.999999940395355,-1.14951026262133e-005,0,1,-1.14951026262133e-005,0,1,-1.14951008072239e-005,0,1,-1.14951026262133e-005,0,1,-1.14951026262133e-005,0,1,-1.14951017167186e-005,0,1,-1.14951008072239e-005,0,0.999999940395355,-1.14951017167186e-005,0,1,-1.14951026262133e-005,0,1,0.0468000210821629,-0.0269730295985937,-0.998540043830872,0.0270252861082554,-0.0467493459582329,-0.998541057109833,6.56101974527701e-006,-0.0539940781891346,-0.998541235923767,-0.0270106624811888,-0.0467595607042313,-0.998540878295898,-0.0467679873108864,-0.0269656572490931,-0.99854177236557,-0.0540253780782223,3.918444053852e-005,-0.998539566993713,-0.0467362552881241,0.0270260032266378,-0.998541593551636,-0.0269814878702164,0.0467847250401974,-0.99854052066803,6.65145398670575e-006,0.0540072880685329,-0.99854052066803,0.0269965082406998,0.0467748306691647,-0.998540580272675,0.0467694513499737,0.0270339045673609,-0.998539805412292,0.0540048331022263,3.93230366171338e-005,-0.998540639877319,1.43945626973618e-007,0.989164113998413,-0.146814033389091,-0.494189113378525,0.856751084327698,-0.147494241595268,-0.49823123216629,0.865501761436462,0.0516957230865955,-5.6803349934853e-007,0.998412191867828,0.056330680847168,0.494219779968262,0.856732308864594,-0.147500857710838,1.43945626973618e-007,0.989164113998413,-0.146814033389091,-5.6803349934853e-007,0.998412191867828,0.056330680847168,0.498264908790588,0.8654825091362,0.0516910515725613,
- 0.856005072593689,0.494921058416367,-0.149359986186028,0.494219779968262,0.856732308864594,-0.147500857710838,0.498264908790588,0.8654825091362,0.0516910515725613,0.864230632781982,0.501598656177521,0.0387849248945713,0.988391280174255,0.000740566989406943,-0.151927947998047,0.856005072593689,0.494921058416367,-0.149359986186028,0.864230632781982,0.501598656177521,0.0387849248945713,0.999781787395477,0.00300728855654597,0.0206666942685843,0.85596764087677,-0.493421643972397,-0.154448658227921,0.988391280174255,0.000740566989406943,-0.151927947998047,0.999781787395477,0.00300728855654597,0.0206666942685843,0.867523729801178,-0.497392982244492,0.00167245790362358,0.494182050228119,-0.855189621448517,-0.156316325068474,0.85596764087677,-0.493421643972397,-0.154448658227921,0.867523729801178,-0.497392982244492,0.00167245790362358,0.501618802547455,-0.864992558956146,-0.0128994546830654,1.83357087735203e-007,-0.987598598003387,-0.156999841332436,0.494182050228119,-0.855189621448517,-0.156316325068474,0.501618802547455,-0.864992558956146,-0.0128994546830654,-2.75958342399463e-007,-0.99983012676239,-0.018432954326272,-0.494151324033737,-0.855208694934845,-0.156309053301811,1.83357087735203e-007,-0.987598598003387,-0.156999841332436,-2.75958342399463e-007,-0.99983012676239,-0.018432954326272,-0.501585364341736,-0.865012168884277,-0.0128943799063563,-0.855932295322418,-0.493483692407608,-0.154446423053741,-0.494151324033737,-0.855208694934845,-0.156309053301811,-0.501585364341736,-0.865012168884277,-0.0128943799063563,-0.867495179176331,-0.497442662715912,0.00170905224513263,-0.988399207592011,0.000740657618734986,-0.151876389980316,-0.855932295322418,-0.493483692407608,-0.154446423053741,-0.867495179176331,-0.497442662715912,0.00170905224513263,-0.999781489372253,0.00300359097309411,0.0206882804632187,-0.855969727039337,0.494983196258545,-0.14935702085495,-0.988399207592011,0.000740657618734986,-0.151876389980316,-0.999781489372253,0.00300359097309411,0.0206882804632187,-0.864199161529541,0.501649856567383,0.0388222374022007,
- -0.494189113378525,0.856751084327698,-0.147494241595268,-0.855969727039337,0.494983196258545,-0.14935702085495,-0.864199161529541,0.501649856567383,0.0388222374022007,-0.49823123216629,0.865501761436462,0.0516957230865955,0,1,0,0,1,0,0,1,0,0,1,0,-0.052342813462019,-0.998629212379456,0,-0.035099733620882,-0.999383747577667,0,0.035099733620882,-0.999383747577667,0,0.052342813462019,-0.998629212379456,0,0.998878955841064,-0.0473381280899048,0,0.994274616241455,-0.106854796409607,0,1,-3.02790326145441e-008,0,1,-3.02790326145441e-008,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.052342813462019,-0.998629212379456,0,-0.998878955841064,-0.0473381280899048,0,-0.994274616241455,-0.106854796409607,0,-0.035099733620882,-0.999383747577667,0,0.998878955841064,-0.0473381280899048,0,0.052342813462019,-0.998629212379456,0,0.035099733620882,-0.999383747577667,0,0.994274616241455,-0.106854796409607,0,-1,-3.02790326145441e-008,0,-0.994274616241455,-0.106854796409607,0,-0.998878955841064,-0.0473381280899048,0,-1,-3.02790326145441e-008,0,1.9810110529761e-007,0.644134163856506,-0.764912545681,1.9810110529761e-007,0.644134163856506,-0.764912545681,1.98101119508465e-007,0.644134163856506,-0.764912486076355,1.9810110529761e-007,0.644134163856506,-0.764912545681,1.9810110529761e-007,0.644134163856506,-0.764912545681,1.98101119508465e-007,0.644134163856506,-0.764912486076355
- }
- NormalsW: *9105 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *27315 {
- a: -0.765633881092072,0.643276631832123,0,-0.765641868114471,0.643267035484314,0,-0.765649914741516,0.64325749874115,0,-0.765641868114471,0.643267035484314,0,0.765590906143188,-0.64332789182663,0,0.765590846538544,-0.64332789182663,0,0.765590786933899,-0.64332789182663,0,0.765590906143188,-0.64332789182663,0,-0.643243193626404,-0.765662014484406,1.51645139112588e-007,-0.643243134021759,-0.765662014484406,1.46827588309861e-007,-0.643243134021759,-0.765662014484406,1.51645139112588e-007,-0.643243193626404,-0.765662014484406,1.56462689915315e-007,-0.765658020973206,0.643247842788696,0,-0.765658020973206,0.643247842788696,0,-0.765658020973206,0.643247842788696,0,-0.765658020973206,0.643247842788696,0,0.765616774559021,-0.643296897411346,3.88755267977103e-008,0.765616774559021,-0.643296897411346,3.92939298876627e-008,0.765616834163666,-0.643296897411346,3.8875530350424e-008,0.765616893768311,-0.643296897411346,3.8457134365899e-008,-0.765641868114471,0.643267095088959,0,-0.765643954277039,0.643264532089233,0,-0.76564610004425,0.643262028694153,0,-0.765643954277039,0.643264532089233,0,0.765625596046448,-0.6432865858078,7.36270990842058e-008,0.765625536441803,-0.643286526203156,3.68135495421029e-008,0.765625536441803,-0.643286526203156,0,0.765625596046448,-0.6432865858078,3.68135495421029e-008,-0.765642583370209,0.643266201019287,0,-0.765653550624847,0.643253207206726,0,-0.765664458274841,0.64324015378952,0,-0.765653491020203,0.643253207206726,0,0.643265306949615,0.765643417835236,2.3753199229759e-007,0.643265247344971,0.765643537044525,1.26588687976437e-007,0.643265247344971,0.76564347743988,1.56453818789259e-008,0.643265247344971,0.765643417835236,1.26588673765582e-007,-0.765643239021301,0.643265426158905,0,-0.765640735626221,0.643268465995789,0,-0.765638172626495,0.643271446228027,0,-0.765640735626221,0.643268465995789,0,-0.765604317188263,0.643311738967896,-3.01431981597489e-007,-0.765604317188263,0.643311738967896,-8.77378170116572e-007,-0.765604317188263,0.643311738967896,-3.01431953175779e-007,
- -0.765604317188263,0.643311738967896,2.74514206921594e-007,0.765625834465027,-0.643286287784576,3.19908011192638e-008,0.765625774860382,-0.643286287784576,4.74292960461753e-008,0.765625834465027,-0.643286228179932,6.28677909730868e-008,0.765625834465027,-0.643286287784576,4.74292960461753e-008,0.643273413181305,0.765636563301086,-1.73134566239241e-007,0.643273413181305,0.765636563301086,-7.14375190113969e-008,0.64327347278595,0.765636563301086,3.02595246637338e-008,0.643273413181305,0.765636503696442,-7.14375119059696e-008,-0.643254697322845,-0.765652418136597,6.0519830924477e-008,-0.643254697322845,-0.765652358531952,9.0779707306865e-008,-0.643254697322845,-0.765652358531952,1.21039576583826e-007,-0.643254697322845,-0.765652418136597,9.0779707306865e-008,-0.765635907649994,0.643274188041687,0,-0.765644073486328,0.643264412879944,0,-0.765652298927307,0.643254637718201,0,-0.765644073486328,0.643264412879944,0,-0.765647709369659,0.643260180950165,0,-0.765647649765015,0.643260300159454,-9.81537411348654e-008,-0.765647649765015,0.643260300159454,-1.96307468058876e-007,-0.765647709369659,0.643260180950165,-9.8153712713156e-008,0.765682697296143,-0.643218457698822,0,0.765682697296143,-0.643218457698822,0,0.765682697296143,-0.643218457698822,0,0.765682697296143,-0.643218457698822,0,-0.765690624713898,0.643209099769592,-1.28211240735254e-007,-0.765691339969635,0.643208265304565,-3.02532299656377e-007,-0.765691339969635,0.64320832490921,-4.76853642794595e-007,-0.765690565109253,0.643209159374237,-3.02531702800479e-007,0.643233060836792,0.765670478343964,1.2600895615833e-006,0.64323228597641,0.765671074390411,6.37609446130227e-007,0.643232226371765,0.765671074390411,1.51298689132773e-008,0.643233060836792,0.765670597553253,6.37609730347322e-007,-0.643270313739777,-0.765639185905457,3.54692502924081e-007,-0.643270313739777,-0.765639185905457,2.37865435792628e-007,-0.643270254135132,-0.765639185905457,1.21038340239465e-007,-0.643270373344421,-0.765639185905457,2.37865435792628e-007,-0.76566481590271,0.643239796161652,0,-0.765649557113647,0.643257856369019,0,
- -0.76563435792923,0.64327597618103,0,-0.765649557113647,0.643257856369019,0,0.765694558620453,-0.6432044506073,6.08044885552772e-008,0.765694558620453,-0.6432044506073,6.08044885552772e-008,0.765693485736847,-0.64320570230484,6.08044885552772e-008,0.765693485736847,-0.64320570230484,6.08044814498498e-008,0.643258690834045,0.765648901462555,1.51300501016749e-008,0.643258690834045,0.765648901462555,3.78251101551541e-008,0.643258690834045,0.765648901462555,6.05201648795628e-008,0.643258690834045,0.765648901462555,3.78251101551541e-008,-0.643266618251801,-0.76564234495163,1.21040642397929e-007,-0.643265724182129,-0.765642940998077,4.5524453184953e-007,-0.643265724182129,-0.765642940998077,7.8944844972284e-007,-0.643266618251801,-0.765642285346985,4.55245157127138e-007,-0.765648126602173,0.643259584903717,0,-0.765647292137146,0.643260598182678,0,-0.765646398067474,0.643261671066284,0,-0.765647292137146,0.643260598182678,0,-0.765715599060059,0.643179357051849,1.12405132313143e-006,-0.765715062618256,0.643180012702942,5.77225932829606e-007,-0.765715062618256,0.643180012702942,3.04010256968468e-008,-0.765715539455414,0.643179357051849,5.77226160203281e-007,0.765711605548859,-0.643184185028076,0,0.765713155269623,-0.643182218074799,0,0.765713155269623,-0.643182218074799,0,0.765711605548859,-0.643184185028076,0,0.765688538551331,-0.643211662769318,1.21038084444081e-007,0.765686094760895,-0.643214404582977,9.07786414927614e-008,0.765686094760895,-0.643214404582977,6.05192056468695e-008,0.765688419342041,-0.643211662769318,9.07786414927614e-008,0.64326274394989,0.765645563602448,3.02594216350371e-008,0.643263041973114,0.765645325183868,4.53891217944147e-008,0.643263041973114,0.765645325183868,6.05188148483649e-008,0.64326274394989,0.765645503997803,4.53891217944147e-008,-0.643266141414642,-0.765642642974854,6.05205485726401e-008,-0.643265187740326,-0.765643537044525,6.05205627834948e-008,-0.643265187740326,-0.765643537044525,6.05205627834948e-008,-0.643266201019287,-0.765642583370209,6.05205627834948e-008,-0.765649437904358,0.643258035182953,0,
- -0.765648722648621,0.643259048461914,0,-0.765647828578949,0.643259942531586,0,-0.765648722648621,0.643259048461914,0,-0.765609323978424,0.643305897712708,7.105427357601e-015,-0.76561027765274,0.643304824829102,0,-0.76561027765274,0.643304824829102,0,-0.765609264373779,0.643305838108063,0,0.643260478973389,0.765647530555725,1.51298191752858e-008,0.643260538578033,0.765647292137146,1.51298173989289e-008,0.643260538578033,0.765647292137146,1.51298173989289e-008,0.643260478973389,0.76564747095108,1.51298173989289e-008,-0.64325749874115,-0.765650033950806,1.21038254974337e-007,-0.64325737953186,-0.765649974346161,1.21038240763482e-007,-0.64325737953186,-0.765649974346161,1.21038240763482e-007,-0.643257439136505,-0.765649974346161,1.21038240763482e-007,-0.765646517276764,0.64326149225235,0,-0.76564747095108,0.643260538578033,0,-0.765648186206818,0.643259525299072,0,-0.76564747095108,0.643260538578033,0,-0.76560252904892,0.643314003944397,3.03982119476132e-008,-0.76560240983963,0.643314003944397,6.07962959975339e-008,-0.76560240983963,0.643314003944397,9.11943800474546e-008,-0.76560252904892,0.643314003944397,6.07962959975339e-008,0.76559579372406,-0.643321931362152,6.07946901709511e-008,0.765595376491547,-0.643322467803955,6.07946901709511e-008,0.765595376491547,-0.643322467803955,6.07946901709511e-008,0.76559579372406,-0.643321931362152,6.07946901709511e-008,0.643258810043335,0.765648782253265,6.05198735570411e-008,0.643259286880493,0.765648424625397,4.53899104968514e-008,0.643259286880493,0.765648424625397,3.02599474366616e-008,0.643258810043335,0.765648782253265,4.53898962859967e-008,-0.643259823322296,-0.765647947788239,6.05199090841779e-008,-0.643259286880493,-0.765648424625397,9.07798352045575e-008,-0.643259286880493,-0.765648424625397,1.21039761324937e-007,-0.643259823322296,-0.765648066997528,9.07798352045575e-008,-0.765648245811462,0.643259465694427,0,-0.765648245811462,0.643259465694427,0,-0.765648245811462,0.643259465694427,0,-0.765648245811462,0.643259465694427,0,-0.765718042850494,0.6431764960289,0,-0.765720248222351,0.643173933029175,0,
- -0.765720248222351,0.643173933029175,0,-0.76571798324585,0.6431764960289,0,0.765720248222351,-0.643173933029175,0,0.76572173833847,-0.643172025680542,0,0.765721797943115,-0.643172025680542,0,0.765720248222351,-0.643173933029175,0,-0.765666127204895,0.643238186836243,6.80832670241216e-008,-0.765669167041779,0.643234550952911,6.66648674041426e-008,-0.765669167041779,0.643234550952911,6.52464748895909e-008,-0.765666127204895,0.643238246440887,6.66648674041426e-008,0.643264472484589,0.765644073486328,7.56503126808639e-009,0.643265247344971,0.76564347743988,1.13475522312001e-008,0.643265247344971,0.76564347743988,1.51300678652433e-008,0.643264472484589,0.765644133090973,1.13475486784864e-008,-0.643248975276947,-0.765657126903534,1.21037786016132e-007,-0.643249928951263,-0.765656352043152,1.21037800226986e-007,-0.643249869346619,-0.765656292438507,1.21037786016132e-007,-0.643248975276947,-0.765657126903534,1.21037786016132e-007,-0.765639364719391,0.643270075321198,0,-0.76564621925354,0.643261909484863,0,-0.765653073787689,0.643253803253174,0,-0.76564621925354,0.643261909484863,0,0.765616416931152,-0.643297374248505,6.0790952716161e-008,0.765616416931152,-0.643297374248505,6.0790952716161e-008,0.765617311000824,-0.643296301364899,6.0790952716161e-008,0.765617311000824,-0.643296301364899,6.07909598215883e-008,0.643266499042511,0.765642464160919,1.51300287853928e-008,0.643265902996063,0.765642940998077,3.78250391008805e-008,0.643265902996063,0.765642940998077,6.05200511927251e-008,0.643266499042511,0.765642404556274,3.78250319954532e-008,-0.643260836601257,-0.765647172927856,1.21038937095364e-007,-0.64326000213623,-0.765647947788239,1.21038951306218e-007,-0.64326000213623,-0.765647947788239,1.21038951306218e-007,-0.643260836601257,-0.765647232532501,1.21038951306218e-007,-0.765642046928406,0.643266916275024,0,-0.765644788742065,0.643263638019562,0,-0.765647530555725,0.643260359764099,0,-0.765644788742065,0.643263638019562,0,-0.765652656555176,0.643254399299622,9.11983306650654e-008,-0.76565283536911,0.643254041671753,6.07989250056562e-008,
- -0.76565283536911,0.643254041671753,3.03995228989606e-008,-0.765652656555176,0.643254399299622,6.07989179002288e-008,0.765622138977051,-0.643290579319,0,0.765622735023499,-0.643289864063263,0,0.765622735023499,-0.643289864063263,0,0.765622138977051,-0.643290579319,0,0.765662431716919,-0.643242597579956,1.21037132316815e-007,0.765664041042328,-0.643240809440613,9.0777938055453e-008,0.765664041042328,-0.643240809440613,6.05187366886639e-008,0.765662491321564,-0.643242597579956,9.07779451608803e-008,0.643269121646881,0.765640139579773,3.02601712576234e-008,0.643267631530762,0.765641391277313,4.53902444519372e-008,0.643267631530762,0.765641391277313,6.05203211989647e-008,0.643269121646881,0.765640139579773,4.53902480046509e-008,-0.643257677555084,-0.765649735927582,6.05187082669545e-008,-0.643257617950439,-0.765649855136871,6.05187153723818e-008,-0.643257617950439,-0.765649855136871,6.05187153723818e-008,-0.643257677555084,-0.765649735927582,6.05187082669545e-008,-0.765645742416382,0.643262445926666,0,-0.765649974346161,0.64325737953186,0,-0.76565420627594,0.643252372741699,0,-0.765649974346161,0.64325737953186,0,-0.765736401081085,0.643154561519623,-3.5527136788005e-015,-0.76573383808136,0.643157660961151,0,-0.76573383808136,0.643157660961151,0,-0.76573634147644,0.643154621124268,-3.5527136788005e-015,0.64325624704361,0.765650928020477,1.51298262807131e-008,0.643255472183228,0.765651762485504,1.512982805707e-008,0.643255472183228,0.765651762485504,1.512982805707e-008,0.643256187438965,0.765650987625122,1.512982805707e-008,-0.643257558345795,-0.765649974346161,1.21038254974337e-007,-0.643257141113281,-0.765650272369385,1.21038240763482e-007,-0.643257141113281,-0.765650272369385,1.21038240763482e-007,-0.643257558345795,-0.765649974346161,1.21038254974337e-007,-0.765650987625122,0.64325624704361,0,-0.765649616718292,0.643257856369019,0,-0.765648186206818,0.643259525299072,0,-0.765649557113647,0.643257856369019,0,-0.765592992305756,0.643325209617615,3.03975653537236e-008,-0.765591502189636,0.643327176570892,6.07950099151822e-008,
- -0.765591502189636,0.643327176570892,9.11924544766407e-008,-0.7655930519104,0.643325209617615,6.07950028097548e-008,0.76558119058609,-0.643339276313782,6.07957701959094e-008,0.765578746795654,-0.643342256546021,6.07957773013368e-008,0.765578746795654,-0.643342196941376,6.07957773013368e-008,0.76558119058609,-0.643339276313782,6.07957701959094e-008,0.643260061740875,0.765647828578949,6.05198806624685e-008,0.643259286880493,0.765648424625397,4.53899104968514e-008,0.643259286880493,0.765648424625397,3.02599474366616e-008,0.64326000213623,0.765647828578949,4.53899140495651e-008,-0.643262147903442,-0.765645980834961,6.05196390779383e-008,-0.643262147903442,-0.76564610004425,9.07794444060528e-008,-0.643262147903442,-0.76564610004425,1.21039235523313e-007,-0.643262147903442,-0.765645980834961,9.07794230897707e-008,-0.765648245811462,0.643259465694427,0,-0.765647053718567,0.643260836601257,0,-0.765645921230316,0.643262267112732,0,-0.765647053718567,0.643260836601257,0,-0.765718162059784,0.643176317214966,-3.5527136788005e-015,-0.765715956687927,0.643178939819336,0,-0.765715956687927,0.643178939819336,0,-0.765718102455139,0.643176317214966,3.5527136788005e-015,0.765702247619629,-0.64319521188736,0,0.76570338010788,-0.64319384098053,0,0.76570338010788,-0.64319384098053,0,0.765702247619629,-0.64319521188736,0,-0.765623092651367,0.64328944683075,6.8082499637967e-008,-0.765621364116669,0.643291473388672,6.666412133427e-008,-0.765621364116669,0.643291473388672,6.52457359251457e-008,-0.765623092651367,0.64328944683075,6.66641142288427e-008,0.643266558647156,0.76564234495163,7.56502416265903e-009,0.643266141414642,0.765642642974854,1.13475335794533e-008,0.643266141414642,0.765642642974854,1.51300447726044e-008,0.643266558647156,0.765642285346985,1.13475344676317e-008,-0.643254280090332,-0.765652596950531,1.21038198130918e-007,-0.643253922462463,-0.765652894973755,1.21038212341773e-007,-0.643253862857819,-0.765652894973755,1.21038198130918e-007,-0.643254280090332,-0.765652596950531,1.21038198130918e-007,-0.765638589859009,0.643271028995514,0,
- -0.765643537044525,0.643265128135681,0,-0.765648424625397,0.643259286880493,0,-0.76564347743988,0.643265128135681,0,0.765579640865326,-0.643341243267059,6.07915637829137e-008,0.765579640865326,-0.643341243267059,6.07915637829137e-008,0.765579402446747,-0.643341422080994,6.07915637829137e-008,0.765579402446747,-0.643341422080994,6.07915637829137e-008,0.643255531787872,0.76565158367157,1.51296966066639e-008,0.643255352973938,0.765651822090149,3.78242290821618e-008,0.643255352973938,0.765651822090149,6.05187651103734e-008,0.643255531787872,0.76565158367157,3.78242290821618e-008,-0.643281579017639,-0.765629708766937,1.21039704481518e-007,-0.643280744552612,-0.765630483627319,1.21039704481518e-007,-0.643280744552612,-0.765630483627319,1.21039704481518e-007,-0.643281519412994,-0.765629768371582,1.21039704481518e-007,-0.765650808811188,0.643256425857544,0,-0.765640676021576,0.643268465995789,0,-0.765630602836609,0.643280565738678,0,-0.765640676021576,0.643268465995789,0,-0.765632808208466,0.643277943134308,9.11841482320597e-008,-0.765631675720215,0.643279254436493,6.07894747872706e-008,-0.765631675720215,0.643279254436493,3.03948013424815e-008,-0.765632808208466,0.643277943134308,6.07894747872706e-008,0.765684366226196,-0.643216490745544,0,0.765686452388763,-0.643213987350464,0,0.765686511993408,-0.643214046955109,0,0.765684366226196,-0.643216490745544,0,0.765663146972656,-0.643241882324219,1.21037672329294e-007,0.765660524368286,-0.643244922161102,9.0778335959385e-008,0.765660524368286,-0.643244922161102,6.05189995894762e-008,0.765663087368011,-0.643241822719574,9.07783430648124e-008,0.643254458904266,0.765652477741241,3.02598870405291e-008,0.64325362443924,0.765653252601624,4.53898323371504e-008,0.64325362443924,0.765653252601624,6.05197669756308e-008,0.643254458904266,0.765652477741241,4.53898216790094e-008,-0.643261313438416,-0.765646755695343,6.05191345925959e-008,-0.643260359764099,-0.765647530555725,6.05191345925959e-008,-0.643260359764099,-0.765647530555725,6.05191345925959e-008,-0.643261313438416,-0.765646696090698,6.05191274871686e-008,
- -0.765657901763916,0.643247961997986,0,-0.765655100345612,0.643251299858093,0,-0.765652298927307,0.643254697322845,0,-0.765655100345612,0.643251299858093,0,-0.765691578388214,0.643208086490631,0,-0.765687882900238,0.643212378025055,0,-0.765687882900238,0.643212378025055,0,-0.765691578388214,0.643208086490631,0,0.64326012134552,0.765647828578949,1.94795166663653e-008,0.64326012134552,0.765647828578949,1.36308074161207e-007,0.64326012134552,0.765647828578949,2.53136647643259e-007,0.64326012134552,0.765647768974304,1.36308059950352e-007,-0.643252789974213,-0.765653848648071,1.55836815451949e-007,-0.643252789974213,-0.765653848648071,1.55836815451949e-007,-0.643252789974213,-0.765653848648071,1.55836815451949e-007,-0.643252789974213,-0.765653848648071,1.55836815451949e-007,-0.765646934509277,0.643261015415192,0,-0.765649795532227,0.643257677555084,0,-0.765652596950531,0.643254339694977,0,-0.765649735927582,0.643257677555084,0,-0.76564347743988,0.643265247344971,3.03988265670796e-008,-0.76564347743988,0.643265247344971,6.07975252364668e-008,-0.76564347743988,0.643265247344971,9.11962274585676e-008,-0.76564347743988,0.643265247344971,6.07975252364668e-008,0.76567006111145,-0.643233597278595,6.07929351303937e-008,0.76567006111145,-0.643233597278595,-3.73564503775015e-008,0.76567006111145,-0.64323365688324,-1.35505857201679e-007,0.76567006111145,-0.64323365688324,-3.73564645883562e-008,-0.768665015697479,0.639651536941528,0,-0.768690347671509,0.639621198177338,0,-0.768665015697479,0.639651536941528,0,-0.768639743328094,0.639681875705719,0,-0.765652120113373,0.64325487613678,0,-0.765636026859283,0.643274009227753,0,-0.765619993209839,0.643293142318726,0,-0.765636086463928,0.643274009227753,0,-0.765657722949982,0.64324826002121,0,-0.765653610229492,0.643253087997437,0,-0.765649616718292,0.643257856369019,0,-0.765653610229492,0.643253087997437,0,0.765621244907379,-0.643291652202606,9.75777822986856e-008,0.765621304512024,-0.643291652202606,9.62943289550822e-008,0.765621244907379,-0.643291711807251,9.50108471897693e-008,0.765621244907379,-0.643291652202606,9.62943218496548e-008,
- 0.766194224357605,-0.638282477855682,0.0744441226124763,0.763243496417999,-0.64610880613327,0.00170683953911066,0.754240393638611,-0.656571567058563,0.0059390882961452,0.75996607542038,-0.649276971817017,0.0298513788729906,-0.0109153818339109,-0.0128966988995671,0.999857306480408,-0.00921087060123682,-0.0108849881216884,0.999898433685303,-0.012458966113627,-0.0148273697122931,0.999812483787537,-0.0148674342781305,-0.0176952891051769,0.999732911586761,-0.0577177964150906,0.0595575533807278,-0.996554851531982,0.0700510889291763,-0.0491950996220112,-0.996329665184021,0.0789848491549492,-0.0257446877658367,-0.996543407440186,-0.0398032665252686,0.0648362934589386,-0.997101783752441,-0.758321583271027,0.646623432636261,-0.082622766494751,-0.766538798809052,0.642196953296661,0.00117919570766389,-0.76267546415329,0.646719336509705,-0.00896719377487898,-0.764465630054474,0.642563879489899,-0.0520016103982925,0.765422523021698,-0.640935182571411,-0.0577102638781071,0.762239694595337,-0.647243082523346,0.008198500610888,0.76696902513504,-0.641683340072632,-0.00110561598557979,0.761632800102234,-0.644958972930908,-0.0627974346280098,-0.643280506134033,-0.765538215637207,-0.0118903666734695,-0.643241584300995,-0.765570342540741,0.0119305271655321,-0.643264353275299,-0.76564347743988,0.000993940513581038,-0.643287837505341,-0.765572667121887,-0.00889715645462275,0.685276031494141,0.728265047073364,-0.00518752913922071,0.643199563026428,0.765637397766113,-0.00968583859503269,0.612117409706116,0.790596604347229,-0.0164146944880486,0.601467311382294,0.798625886440277,0.0208277069032192,0.681140124797821,0.732136011123657,0.00501791015267372,-0.108786359429359,0.994010865688324,-0.0103867882862687,-0.765598475933075,0.643309950828552,0.00337289366871119,-0.741599559783936,0.670835733413696,0.00311523210257292,0.799280166625977,-0.600956797599792,-0.00150522729381919,0.76566082239151,-0.643233597278595,-0.00376325170509517,0.765659511089325,-0.643227756023407,0.004849414806813,0.796409904956818,-0.604757130146027,0.000244738504989073,
- 0.6430584192276,0.765365421772003,-0.0263005867600441,0.643268465995789,0.765626907348633,-0.00460427161306143,0.643271148204803,0.765635132789612,-0.00230226735584438,0.643094778060913,0.765410304069519,-0.0240067094564438,-0.682689070701599,-0.730704486370087,0.00259865098632872,-0.603618144989014,-0.797257006168365,0.0051418193615973,-0.601494550704956,-0.79845654964447,0.0259153060615063,-0.680796444416046,-0.732096374034882,0.0234769284725189,0.729876160621643,-0.683578133583069,-0.00136309198569506,0.765664875507355,-0.643238425254822,0.00131974194664508,0.765630722045898,-0.643278479576111,-0.00155037152580917,0.730387806892395,-0.683029413223267,-0.00213901582174003,-0.799309909343719,0.600899994373322,0.00479513732716441,-0.765631854534149,0.643277227878571,0.00155284465290606,-0.765651047229767,0.643254935741425,-0.00132282974664122,-0.798680245876312,0.601753890514374,0.00146569358184934,-0.643220484256744,-0.765633046627045,-0.00856671389192343,-0.643240869045258,-0.765634655952454,0.00670018047094345,-0.643240809440613,-0.765634655952454,0.00669979630038142,-0.643220484256744,-0.765633046627045,-0.00856838468462229,-0.765639007091522,0.643270492553711,0,-0.765640258789063,0.643268942832947,0,-0.765640735626221,0.643268465995789,0,-0.765639960765839,0.643269419670105,0,-0.765640079975128,0.643269181251526,0,0.643230736255646,0.765624582767487,0.00856643263250589,0.643253445625305,0.765623927116394,-0.00670050363987684,0.604282140731812,0.796742022037506,-0.00672665471211076,0.605166554450989,0.796053767204285,0.00848378613591194,-0.730349063873291,0.683073282241821,-0.00106513081118464,-0.765648066997528,0.643259167671204,-0.000951412948779762,-0.765634953975677,0.643273770809174,-0.0014570492785424,-0.730060577392578,0.683381736278534,-0.000997110619209707,0.765659987926483,-0.643245398998261,0.000443324272055179,0.765651047229767,-0.643254637718201,0.00146156037226319,0.765651047229767,-0.643254637718201,0.00146198784932494,0.765661597251892,-0.643242955207825,0.00095298932865262,0.582927405834198,-0.812524259090424,0,
- 0.966615915298462,-0.256229996681213,0,0.958316266536713,-0.285709887742996,0,0.954348027706146,-0.298697054386139,0,0.840439796447754,-0.541905045509338,0,-0.083970807492733,-0.996468305587769,0,-0.765657067298889,0.643249034881592,0,-0.765663146972656,0.643241763114929,0,-0.765676975250244,0.643225312232971,0,-0.765660345554352,0.643245100975037,0,-0.765650391578674,0.643256962299347,0,-0.765657603740692,0.643248319625854,0,0.765422523021698,-0.640935182571411,-0.0577102638781071,0.761632800102234,-0.644958972930908,-0.0627974346280098,0.0789848491549492,-0.0257446877658367,-0.996543407440186,0.0700510889291763,-0.0491950996220112,-0.996329665184021,-0.0577177964150906,0.0595575533807278,-0.996554851531982,-0.0398032665252686,0.0648362934589386,-0.997101783752441,-0.758321583271027,0.646623432636261,-0.082622766494751,-0.764465630054474,0.642563879489899,-0.0520016103982925,0.799280166625977,-0.600956797599792,-0.00150522729381919,0.796409904956818,-0.604757130146027,0.000244738504989073,0.685276031494141,0.728265047073364,-0.00518752913922071,0.681140124797821,0.732136011123657,0.00501791015267372,0.601467311382294,0.798625886440277,0.0208277069032192,0.612117409706116,0.790596604347229,-0.0164146944880486,-0.741599559783936,0.670835733413696,0.00311523210257292,-0.730648458003998,0.682737231254578,0.00476296618580818,-0.799309909343719,0.600899994373322,0.00479513732716441,-0.798680245876312,0.601753890514374,0.00146569358184934,-0.682689070701599,-0.730704486370087,0.00259865098632872,-0.680796444416046,-0.732096374034882,0.0234769284725189,-0.601494550704956,-0.79845654964447,0.0259153060615063,-0.603618144989014,-0.797257006168365,0.0051418193615973,0.729876160621643,-0.683578133583069,-0.00136309198569506,0.730387806892395,-0.683029413223267,-0.00213901582174003,0.605166554450989,0.796053767204285,0.00848378613591194,0.604282140731812,0.796742022037506,-0.00672665471211076,-0.730349063873291,0.683073282241821,-0.00106513081118464,-0.730060577392578,0.683381736278534,-0.000997110619209707,0.681140124797821,0.732136011123657,0.00501791015267372,
- 0.601467311382294,0.798625886440277,0.0208277069032192,0.60446709394455,0.796597957611084,0.00716715771704912,0.682840347290039,0.730542540550232,0.0060492530465126,0.60446709394455,0.796597957611084,0.00716715771704912,0.601467311382294,0.798625886440277,0.0208277069032192,-0.730648458003998,0.682737231254578,0.00476296618580818,-0.729448139667511,0.684036076068878,-0.000311608426272869,-0.765677571296692,0.643174231052399,0.00804608501493931,-0.765651166439056,0.643255829811096,0.000445424520876259,-0.729448139667511,0.684036076068878,-0.000311608426272869,-0.730648458003998,0.682737231254578,0.00476296618580818,-0.643269419670105,-0.765627861022949,-0.00432225083932281,-0.643280506134033,-0.765538215637207,-0.0118903666734695,-0.643287837505341,-0.765572667121887,-0.00889715645462275,-0.643269598484039,-0.765632152557373,-0.0034041446633637,0.798690378665924,-0.601733446121216,0.00323714269325137,0.765636563301086,-0.643269181251526,0.0023640647996217,0.76566082239151,-0.643233597278595,-0.00376325170509517,0.799280166625977,-0.600956797599792,-0.00150522729381919,0.798690378665924,-0.601733446121216,0.00323714269325137,0.799280166625977,-0.600956797599792,-0.00150522729381919,0.681140124797821,0.732136011123657,0.00501791015267372,0.682840347290039,0.730542540550232,0.0060492530465126,0.682840347290039,0.730542540550232,0.0060492530465126,0.60446709394455,0.796597957611084,0.00716715771704912,0.602076709270477,0.79833972454071,-0.012548103928566,0.681572437286377,0.73164838552475,-0.0122365653514862,0.602076709270477,0.79833972454071,-0.012548103928566,0.60446709394455,0.796597957611084,0.00716715771704912,-0.729448139667511,0.684036076068878,-0.000311608426272869,-0.730514407157898,0.68288779258728,-0.00359783554449677,-0.765651166439056,0.643255829811096,0.000445424520876259,-0.765712559223175,0.643145263195038,-0.00696587981656194,-0.730514407157898,0.68288779258728,-0.00359783554449677,-0.729448139667511,0.684036076068878,-0.000311608426272869,-0.643285930156708,-0.765528321266174,0.0122349867597222,-0.643269419670105,-0.765627861022949,-0.00432225083932281,
- -0.643269598484039,-0.765632152557373,-0.0034041446633637,-0.643270909786224,-0.765426576137543,0.0180201642215252,0.799034357070923,-0.601271092891693,0.00416299141943455,0.765649497509003,-0.643182694911957,0.00984044652432203,0.765636563301086,-0.643269181251526,0.0023640647996217,0.798690378665924,-0.601733446121216,0.00323714269325137,0.799034357070923,-0.601271092891693,0.00416299141943455,0.798690378665924,-0.601733446121216,0.00323714269325137,0.682840347290039,0.730542540550232,0.0060492530465126,0.681572437286377,0.73164838552475,-0.0122365653514862,0.681572437286377,0.73164838552475,-0.0122365653514862,0.602076709270477,0.79833972454071,-0.012548103928566,0.602877199649811,0.797833025455475,0.00123769475612789,0.681960165500641,0.73138827085495,0.00123764586169273,0.602877199649811,0.797833025455475,0.00123769475612789,0.602076709270477,0.79833972454071,-0.012548103928566,-0.730514407157898,0.68288779258728,-0.00359783554449677,-0.730126917362213,0.683310568332672,0.00117726996541023,-0.765712559223175,0.643145263195038,-0.00696587981656194,-0.765652656555176,0.643252611160278,0.0014204562176019,-0.730126917362213,0.683310568332672,0.00117726996541023,-0.730514407157898,0.68288779258728,-0.00359783554449677,-0.643245041370392,-0.765659093856812,0.00142041454091668,-0.643285930156708,-0.765528321266174,0.0122349867597222,-0.643270909786224,-0.765426576137543,0.0180201642215252,-0.643245041370392,-0.765659034252167,0.00140677799936384,0.798953115940094,-0.601391971111298,0.00123845739290118,0.765617549419403,-0.643294453620911,0.00143541896250099,0.765649497509003,-0.643182694911957,0.00984044652432203,0.799034357070923,-0.601271092891693,0.00416299141943455,0.798953115940094,-0.601391971111298,0.00123845739290118,0.799034357070923,-0.601271092891693,0.00416299141943455,0.681572437286377,0.73164838552475,-0.0122365653514862,0.681960165500641,0.73138827085495,0.00123764586169273,0.796409904956818,-0.604757130146027,0.000244738504989073,0.773477256298065,-0.633823275566101,0.00101751612965018,0.791398942470551,0.611298859119415,0.00125960051082075,
- 0.685276031494141,0.728265047073364,-0.00518752913922071,-0.643264353275299,-0.76564347743988,0.000993940513581038,-0.643241584300995,-0.765570342540741,0.0119305271655321,-0.643236756324768,-0.765648305416107,-0.00539712002500892,-0.643198132514954,-0.76560240983963,-0.0122135542333126,-0.681024551391602,-0.732217609882355,0.00794136989861727,-0.601974487304688,-0.7985018491745,0.00464024767279625,-0.602860867977142,-0.7976935505867,-0.0156187172979116,-0.681902945041656,-0.731277108192444,-0.0155601687729359,-0.798807740211487,0.601582109928131,-0.00230604060925543,-0.799451529979706,0.600730538368225,-0.000358168705133721,-0.681024551391602,-0.732217609882355,0.00794136989861727,-0.681902945041656,-0.731277108192444,-0.0155601687729359,-0.765641510486603,0.643267333507538,-0.000647154694888741,-0.765649199485779,0.643256425857544,0.0015971886459738,-0.799451529979706,0.600730538368225,-0.000358168705133721,-0.798807740211487,0.601582109928131,-0.00230604060925543,0.643164396286011,0.765557050704956,0.0161909740418196,0.643263101577759,0.765632629394531,-0.0044138259254396,0.643248975276947,0.765623509883881,-0.00717667583376169,0.643178462982178,0.765570461750031,0.0149495145305991,0.730284929275513,-0.683141946792603,0.00102958106435835,0.765663504600525,-0.643239438533783,-0.00160459312610328,0.765654683113098,-0.643251538276672,0.000647622160613537,0.730206847190857,-0.683223426342011,0.0019366554915905,-0.602860867977142,-0.7976935505867,-0.0156187172979116,-0.601974487304688,-0.7985018491745,0.00464024767279625,0.730284929275513,-0.683141946792603,0.00102958106435835,0.730206847190857,-0.683223426342011,0.0019366554915905,-0.681351721286774,-0.731112778186798,0.0351279452443123,-0.602167665958405,-0.797756433486938,0.0312857963144779,-0.601974487304688,-0.7985018491745,0.00464024767279625,-0.681024551391602,-0.732217609882355,0.00794136989861727,-0.799451529979706,0.600730538368225,-0.000358168705133721,-0.798855125904083,0.601467072963715,0.00824162270873785,-0.681351721286774,-0.731112778186798,0.0351279452443123,
- -0.681024551391602,-0.732217609882355,0.00794136989861727,-0.765649199485779,0.643256425857544,0.0015971886459738,-0.765457212924957,0.643415987491608,0.00954032223671675,-0.798855125904083,0.601467072963715,0.00824162270873785,-0.799451529979706,0.600730538368225,-0.000358168705133721,0.643263101577759,0.765632629394531,-0.0044138259254396,0.642858564853668,0.765299916267395,-0.032389510422945,0.642796874046326,0.765231251716614,-0.0351210944354534,0.643248975276947,0.765623509883881,-0.00717667583376169,0.730142951011658,-0.683280766010284,-0.00432921480387449,0.765452980995178,-0.643421113491058,-0.00955162942409515,0.765663504600525,-0.643239438533783,-0.00160459312610328,0.730284929275513,-0.683141946792603,0.00102958106435835,-0.601974487304688,-0.7985018491745,0.00464024767279625,-0.602167665958405,-0.797756433486938,0.0312857963144779,0.730142951011658,-0.683280766010284,-0.00432921480387449,0.730284929275513,-0.683141946792603,0.00102958106435835,-0.681902945041656,-0.731277108192444,-0.0155601687729359,-0.602860867977142,-0.7976935505867,-0.0156187172979116,-0.603618144989014,-0.797257006168365,0.0051418193615973,-0.682689070701599,-0.730704486370087,0.00259865098632872,-0.798680245876312,0.601753890514374,0.00146569358184934,-0.798807740211487,0.601582109928131,-0.00230604060925543,-0.681902945041656,-0.731277108192444,-0.0155601687729359,-0.682689070701599,-0.730704486370087,0.00259865098632872,-0.765651047229767,0.643254935741425,-0.00132282974664122,-0.765641510486603,0.643267333507538,-0.000647154694888741,-0.798807740211487,0.601582109928131,-0.00230604060925543,-0.798680245876312,0.601753890514374,0.00146569358184934,0.643268465995789,0.765626907348633,-0.00460427161306143,0.643164396286011,0.765557050704956,0.0161909740418196,0.643178462982178,0.765570461750031,0.0149495145305991,0.643271148204803,0.765635132789612,-0.00230226735584438,0.730206847190857,-0.683223426342011,0.0019366554915905,0.765654683113098,-0.643251538276672,0.000647622160613537,0.765664875507355,-0.643238425254822,0.00131974194664508,
- 0.729876160621643,-0.683578133583069,-0.00136309198569506,-0.603618144989014,-0.797257006168365,0.0051418193615973,-0.602860867977142,-0.7976935505867,-0.0156187172979116,0.730206847190857,-0.683223426342011,0.0019366554915905,0.729876160621643,-0.683578133583069,-0.00136309198569506,0.643258154392242,0.765637457370758,-0.00429068692028522,0.643251478672028,0.765603005886078,0.00892418157309294,0.604515135288239,0.796565353870392,0.00672791711986065,0.605605900287628,0.795753419399261,-0.00424127373844385,0.765665650367737,-0.643238246440887,-0.000874049495905638,0.765654981136322,-0.643250942230225,-0.000906204921193421,0.765654921531677,-0.643250942230225,-0.000906305620446801,0.765665769577026,-0.643238186836243,-0.000875505735166371,-0.643243491649628,-0.765649676322937,0.00429090764373541,-0.64324963092804,-0.765627324581146,-0.00669282209128141,-0.64324963092804,-0.765627264976501,-0.00669227633625269,-0.643243551254272,-0.765649735927582,0.00429190462455153,-0.730324864387512,0.683099269866943,0.00105355132836849,-0.765649020671844,0.643258094787598,0.000872575212270021,-0.765642583370209,0.643265664577484,0.000904603279195726,-0.72983455657959,0.683623552322388,0.00067228201078251,0.605605900287628,0.795753419399261,-0.00424127373844385,0.604515135288239,0.796565353870392,0.00672791711986065,-0.730324864387512,0.683099269866943,0.00105355132836849,-0.72983455657959,0.683623552322388,0.00067228201078251,0.643253445625305,0.765623927116394,-0.00670050363987684,0.643258154392242,0.765637457370758,-0.00429068692028522,0.605605900287628,0.795753419399261,-0.00424127373844385,0.604282140731812,0.796742022037506,-0.00672665471211076,0.765654981136322,-0.643250942230225,-0.000906204921193421,0.765659987926483,-0.643245398998261,0.000443324272055179,0.765661597251892,-0.643242955207825,0.00095298932865262,0.765654921531677,-0.643250942230225,-0.000906305620446801,-0.643240869045258,-0.765634655952454,0.00670018047094345,-0.643243491649628,-0.765649676322937,0.00429090764373541,-0.643243551254272,-0.765649735927582,0.00429190462455153,
- -0.643240809440613,-0.765634655952454,0.00669979630038142,-0.72983455657959,0.683623552322388,0.00067228201078251,-0.765642583370209,0.643265664577484,0.000904603279195726,-0.765648066997528,0.643259167671204,-0.000951412948779762,-0.730349063873291,0.683073282241821,-0.00106513081118464,0.604282140731812,0.796742022037506,-0.00672665471211076,0.605605900287628,0.795753419399261,-0.00424127373844385,-0.72983455657959,0.683623552322388,0.00067228201078251,-0.730349063873291,0.683073282241821,-0.00106513081118464,0.643251478672028,0.765603005886078,0.00892418157309294,0.643265545368195,0.765643239021301,-5.82076609134674e-011,0.605100274085999,0.796149253845215,0,0.604515135288239,0.796565353870392,0.00672791711986065,0.765661001205444,-0.64324426651001,0,0.765665650367737,-0.643238246440887,-0.000874049495905638,0.765665769577026,-0.643238186836243,-0.000875505735166371,0.765661180019379,-0.64324426651001,-1.52341112880094e-006,-0.64324963092804,-0.765627324581146,-0.00669282209128141,-0.64325624704361,-0.765650987625122,5.82076609134674e-011,-0.643256306648254,-0.765650868415833,0,-0.64324963092804,-0.765627264976501,-0.00669227633625269,-0.730092167854309,0.683348715305328,0,-0.765643537044525,0.643265187740326,2.3283064365387e-010,-0.765649020671844,0.643258094787598,0.000872575212270021,-0.730324864387512,0.683099269866943,0.00105355132836849,0.604515135288239,0.796565353870392,0.00672791711986065,0.605100274085999,0.796149253845215,0,-0.730092167854309,0.683348715305328,0,-0.730324864387512,0.683099269866943,0.00105355132836849,0.0912285223603249,-0.0209480691701174,0.995609700679779,-0.0370045490562916,0.0846615880727768,0.995722413063049,-0.0657308399677277,0.0585366562008858,0.996119022369385,0.066428080201149,-0.0498279295861721,0.996546387672424,-0.767670810222626,0.635867178440094,0.0797149315476418,-0.766071259975433,0.64096873998642,0.0478965789079666,-0.0657308399677277,0.0585366562008858,0.996119022369385,-0.0370045490562916,0.0846615880727768,0.995722413063049,-0.771235287189484,0.636139452457428,0.0228674672544003,
- -0.769051909446716,0.639161705970764,0.00560890324413776,-0.766071259975433,0.64096873998642,0.0478965789079666,-0.767670810222626,0.635867178440094,0.0797149315476418,-0.0266303792595863,-0.0323811210691929,-0.999120831489563,-0.00594761362299323,-0.00707971910014749,-0.999957323074341,-0.00594821618869901,-0.0070790434256196,-0.999957323074341,-0.0267740320414305,-0.0325594209134579,-0.999111115932465,0.766262829303741,-0.639847159385681,0.0586245208978653,0.769052386283875,-0.639161288738251,-0.00560882454738021,0.771235823631287,-0.636138737201691,-0.0228675529360771,0.772718548774719,-0.633871376514435,0.0333653837442398,0.0912285223603249,-0.0209480691701174,0.995609700679779,0.066428080201149,-0.0498279295861721,0.996546387672424,0.766262829303741,-0.639847159385681,0.0586245208978653,0.772718548774719,-0.633871376514435,0.0333653837442398,0.066428080201149,-0.0498279295861721,0.996546387672424,-0.0657308399677277,0.0585366562008858,0.996119022369385,-0.0734971463680267,0.0320624448359013,0.996779978275299,0.0441700778901577,-0.0677128881216049,0.99672669172287,-0.766071259975433,0.64096873998642,0.0478965789079666,-0.761484444141388,0.645782768726349,0.0557340607047081,-0.0734971463680267,0.0320624448359013,0.996779978275299,-0.0657308399677277,0.0585366562008858,0.996119022369385,-0.769051909446716,0.639161705970764,0.00560890324413776,-0.76145213842392,0.648091793060303,-0.0129516460001469,-0.761484444141388,0.645782768726349,0.0557340607047081,-0.766071259975433,0.64096873998642,0.0478965789079666,-0.00594761362299323,-0.00707971910014749,-0.999957323074341,0.0149769904091954,0.0176096577197313,-0.999732851982117,0.0152316559106112,0.0179085470736027,-0.999723672866821,-0.00594821618869901,-0.0070790434256196,-0.999957323074341,0.758104681968689,-0.647084474563599,0.0809890031814575,0.761452615261078,-0.648091197013855,0.0129517083987594,0.769052386283875,-0.639161288738251,-0.00560882454738021,0.766262829303741,-0.639847159385681,0.0586245208978653,0.066428080201149,-0.0498279295861721,0.996546387672424,
- 0.0441700778901577,-0.0677128881216049,0.99672669172287,0.758104681968689,-0.647084474563599,0.0809890031814575,0.766262829303741,-0.639847159385681,0.0586245208978653,0.0441700778901577,-0.0677128881216049,0.99672669172287,-0.0734971463680267,0.0320624448359013,0.996779978275299,-0.0639140233397484,0.0526169128715992,0.996567368507385,0.0658732503652573,-0.0550227947533131,0.996309876441956,-0.761484444141388,0.645782768726349,0.0557340607047081,-0.763914346694946,0.64265912771225,0.0585155487060547,-0.0639140233397484,0.0526169128715992,0.996567368507385,-0.0734971463680267,0.0320624448359013,0.996779978275299,-0.76145213842392,0.648091793060303,-0.0129516460001469,-0.764089584350586,0.645100235939026,-0.00361024308949709,-0.763914346694946,0.64265912771225,0.0585155487060547,-0.761484444141388,0.645782768726349,0.0557340607047081,0.0149769904091954,0.0176096577197313,-0.999732851982117,0.00230613700114191,0.00274486257694662,-0.999993622303009,0.00230630207806826,0.00274494756013155,-0.999993622303009,0.0152316559106112,0.0179085470736027,-0.999723672866821,0.763960838317871,-0.643210828304291,0.0514180548489094,0.764090120792389,-0.645099580287933,0.00361017789691687,0.761452615261078,-0.648091197013855,0.0129517083987594,0.758104681968689,-0.647084474563599,0.0809890031814575,0.0441700778901577,-0.0677128881216049,0.99672669172287,0.0658732503652573,-0.0550227947533131,0.996309876441956,0.763960838317871,-0.643210828304291,0.0514180548489094,0.758104681968689,-0.647084474563599,0.0809890031814575,0.0658732503652573,-0.0550227947533131,0.996309876441956,-0.0639140233397484,0.0526169128715992,0.996567368507385,-0.03813411667943,0.0519627556204796,0.997920751571655,0.0563220083713531,-0.0268050916492939,0.998052835464478,-0.763914346694946,0.64265912771225,0.0585155487060547,-0.761392831802368,0.63734757900238,0.118613228201866,-0.03813411667943,0.0519627556204796,0.997920751571655,-0.0639140233397484,0.0526169128715992,0.996567368507385,-0.764089584350586,0.645100235939026,-0.00361024308949709,-0.767874419689178,0.640534937381744,0.00915481336414814,
- -0.761392831802368,0.63734757900238,0.118613228201866,-0.763914346694946,0.64265912771225,0.0585155487060547,0.00230613700114191,0.00274486257694662,-0.999993622303009,-0.00996279343962669,-0.0119469901546836,-0.999879002571106,-0.00996257085353136,-0.0119467247277498,-0.999879062175751,0.00230630207806826,0.00274494756013155,-0.999993622303009,0.765021443367004,-0.635921001434326,0.101718828082085,0.767874896526337,-0.640534460544586,-0.00915494281798601,0.764090120792389,-0.645099580287933,0.00361017789691687,0.763960838317871,-0.643210828304291,0.0514180548489094,0.0658732503652573,-0.0550227947533131,0.996309876441956,0.0563220083713531,-0.0268050916492939,0.998052835464478,0.765021443367004,-0.635921001434326,0.101718828082085,0.763960838317871,-0.643210828304291,0.0514180548489094,-0.0648115873336792,0.0647401660680771,-0.995795249938965,0.0733611062169075,-0.0492881610989571,-0.996086776256561,0.0395860932767391,-0.0503686517477036,-0.99794590473175,-0.0549764335155487,0.0291913822293282,-0.998060822486877,0.7656289935112,-0.641295969486237,-0.0505142211914063,0.759215831756592,-0.640318214893341,-0.116550147533417,0.0395860932767391,-0.0503686517477036,-0.99794590473175,0.0733611062169075,-0.0492881610989571,-0.996086776256561,0.766393780708313,-0.642356395721436,0.00436301296576858,0.765376627445221,-0.643535435199738,-0.00779431685805321,0.759215831756592,-0.640318214893341,-0.116550147533417,0.7656289935112,-0.641295969486237,-0.0505142211914063,-0.00812288373708725,-0.00966782681643963,0.999920308589935,0.00885111279785633,0.0105220163241029,0.999905467033386,0.00885111466050148,0.0105220153927803,0.999905467033386,-0.00812286697328091,-0.00966809596866369,0.999920248985291,-0.761945426464081,0.63953047990799,-0.102176502346992,-0.764947950839996,0.644045054912567,0.00778554659336805,-0.765979707241058,0.64285010099411,-0.0043573877774179,-0.764739871025085,0.642873823642731,-0.0434299819171429,-0.0648115873336792,0.0647401660680771,-0.995795249938965,-0.0549764335155487,0.0291913822293282,-0.998060822486877,
- -0.761945426464081,0.63953047990799,-0.102176502346992,-0.764739871025085,0.642873823642731,-0.0434299819171429,-0.0497906245291233,0.0614286921918392,-0.996868848800659,0.072836272418499,-0.0408842340111732,-0.996505618095398,0.0733611062169075,-0.0492881610989571,-0.996086776256561,-0.0648115873336792,0.0647401660680771,-0.995795249938965,-0.0497906245291233,0.0614286921918392,-0.996868848800659,-0.0648115873336792,0.0647401660680771,-0.995795249938965,-0.764739871025085,0.642873823642731,-0.0434299819171429,-0.76644092798233,0.637957513332367,-0.0746899247169495,-0.765979707241058,0.64285010099411,-0.0043573877774179,-0.767899572849274,0.640567719936371,-0.00179178453981876,-0.76644092798233,0.637957513332367,-0.0746899247169495,-0.764739871025085,0.642873823642731,-0.0434299819171429,-0.00657626194879413,-0.00784167088568211,0.999947726726532,-0.00812288373708725,-0.00966782681643963,0.999920308589935,-0.00812286697328091,-0.00966809596866369,0.999920248985291,-0.00522831687703729,-0.00623421836644411,0.999966979026794,0.768316864967346,-0.640068054199219,-0.00142192153725773,0.766393780708313,-0.642356395721436,0.00436301296576858,0.7656289935112,-0.641295969486237,-0.0505142211914063,0.76877498626709,-0.637354850769043,-0.0525736063718796,0.76877498626709,-0.637354850769043,-0.0525736063718796,0.7656289935112,-0.641295969486237,-0.0505142211914063,0.0733611062169075,-0.0492881610989571,-0.996086776256561,0.072836272418499,-0.0408842340111732,-0.996505618095398,-0.0580962933599949,0.0635482370853424,-0.996286392211914,0.0699864327907562,-0.0407748632133007,-0.996714353561401,0.072836272418499,-0.0408842340111732,-0.996505618095398,-0.0497906245291233,0.0614286921918392,-0.996868848800659,0.759025573730469,-0.648729741573334,-0.0550443418323994,0.76877498626709,-0.637354850769043,-0.0525736063718796,0.072836272418499,-0.0408842340111732,-0.996505618095398,0.0699864327907562,-0.0407748632133007,-0.996714353561401,0.759155094623566,-0.650667369365692,0.0177646409720182,0.768316864967346,-0.640068054199219,-0.00142192153725773,
- 0.76877498626709,-0.637354850769043,-0.0525736063718796,0.759025573730469,-0.648729741573334,-0.0550443418323994,-0.0101125799119473,-0.0120065938681364,0.999876856803894,-0.00657626194879413,-0.00784167088568211,0.999947726726532,-0.00522831687703729,-0.00623421836644411,0.999966979026794,-0.011943637393415,-0.0141795929521322,0.999828219413757,-0.76644092798233,0.637957513332367,-0.0746899247169495,-0.767899572849274,0.640567719936371,-0.00179178453981876,-0.758989334106445,0.650978207588196,-0.0127492770552635,-0.757029175758362,0.650659501552582,-0.0595743730664253,-0.0580962933599949,0.0635482370853424,-0.996286392211914,-0.0497906245291233,0.0614286921918392,-0.996868848800659,-0.76644092798233,0.637957513332367,-0.0746899247169495,-0.757029175758362,0.650659501552582,-0.0595743730664253,-0.76267546415329,0.646719336509705,-0.00896719377487898,-0.758205473423004,0.65163379907608,-0.022315189242363,-0.758335471153259,0.648500502109528,-0.0661391615867615,-0.764465630054474,0.642563879489899,-0.0520016103982925,-0.00585608463734388,-0.00683663366362453,0.999959468841553,-0.0121094333007932,-0.0141317173838615,0.999826788902283,-0.0262939035892487,-0.0306792836636305,0.999183416366577,-0.00921087060123682,-0.0108849881216884,0.999898433685303,-0.0109153818339109,-0.0128966988995671,0.999857306480408,0.069730170071125,-0.0325145870447159,0.997035920619965,-0.043028149753809,0.059395506978035,0.997306823730469,-0.0370045490562916,0.0846615880727768,0.995722413063049,0.0912285223603249,-0.0209480691701174,0.995609700679779,-0.764103651046753,0.639492034912109,0.0848277360200882,-0.767670810222626,0.635867178440094,0.0797149315476418,-0.0370045490562916,0.0846615880727768,0.995722413063049,-0.043028149753809,0.059395506978035,0.997306823730469,-0.763242900371552,0.646109521389008,-0.0016985097900033,-0.771235287189484,0.636139452457428,0.0228674672544003,-0.767670810222626,0.635867178440094,0.0797149315476418,-0.764103651046753,0.639492034912109,0.0848277360200882,-0.00921906623989344,-0.0107307881116867,-0.999899983406067,
- -0.0266303792595863,-0.0323811210691929,-0.999120831489563,-0.0267740320414305,-0.0325594209134579,-0.999111115932465,-0.0092166792601347,-0.0107318684458733,-0.999900043010712,0.772718548774719,-0.633871376514435,0.0333653837442398,0.771235823631287,-0.636138737201691,-0.0228675529360771,0.763243496417999,-0.64610880613327,0.00170683953911066,0.766194224357605,-0.638282477855682,0.0744441226124763,0.069730170071125,-0.0325145870447159,0.997035920619965,0.0912285223603249,-0.0209480691701174,0.995609700679779,0.772718548774719,-0.633871376514435,0.0333653837442398,0.766194224357605,-0.638282477855682,0.0744441226124763,-0.0398032665252686,0.0648362934589386,-0.997101783752441,0.0789848491549492,-0.0257446877658367,-0.996543407440186,0.0699864327907562,-0.0407748632133007,-0.996714353561401,-0.0580962933599949,0.0635482370853424,-0.996286392211914,-0.0398032665252686,0.0648362934589386,-0.997101783752441,-0.0580962933599949,0.0635482370853424,-0.996286392211914,-0.757029175758362,0.650659501552582,-0.0595743730664253,-0.758321583271027,0.646623432636261,-0.082622766494751,-0.758989334106445,0.650978207588196,-0.0127492770552635,-0.766538798809052,0.642196953296661,0.00117919570766389,-0.758321583271027,0.646623432636261,-0.082622766494751,-0.757029175758362,0.650659501552582,-0.0595743730664253,-0.012458966113627,-0.0148273697122931,0.999812483787537,-0.0101125799119473,-0.0120065938681364,0.999876856803894,-0.011943637393415,-0.0141795929521322,0.999828219413757,-0.0148674342781305,-0.0176952891051769,0.999732911586761,0.76696902513504,-0.641683340072632,-0.00110561598557979,0.759155094623566,-0.650667369365692,0.0177646409720182,0.759025573730469,-0.648729741573334,-0.0550443418323994,0.761632800102234,-0.644958972930908,-0.0627974346280098,0.761632800102234,-0.644958972930908,-0.0627974346280098,0.759025573730469,-0.648729741573334,-0.0550443418323994,0.0699864327907562,-0.0407748632133007,-0.996714353561401,0.0789848491549492,-0.0257446877658367,-0.996543407440186,0.00881287641823292,0.0101254610344768,-0.9999098777771,
- 0.00881201773881912,0.0101244747638702,-0.999909996986389,-0.00921906623989344,-0.0107307881116867,-0.999899983406067,-0.0092166792601347,-0.0107318684458733,-0.999900043010712,0.0766509249806404,-0.0819403156638145,0.993685364723206,-0.0954093262553215,0.0635284036397934,0.993408918380737,-0.043028149753809,0.059395506978035,0.997306823730469,0.069730170071125,-0.0325145870447159,0.997035920619965,-0.760596573352814,0.648993372917175,0.0173386372625828,-0.754240214824677,0.656571805477142,-0.00592915853485465,-0.763242900371552,0.646109521389008,-0.0016985097900033,-0.764103651046753,0.639492034912109,0.0848277360200882,-0.0954093262553215,0.0635284036397934,0.993408918380737,-0.760596573352814,0.648993372917175,0.0173386372625828,-0.764103651046753,0.639492034912109,0.0848277360200882,-0.043028149753809,0.059395506978035,0.997306823730469,0.75996607542038,-0.649276971817017,0.0298513788729906,0.0766509249806404,-0.0819403156638145,0.993685364723206,0.069730170071125,-0.0325145870447159,0.997035920619965,0.766194224357605,-0.638282477855682,0.0744441226124763,0,1,-0,0,1,-7.16502370323724e-007,0,1,-3.99909282577937e-007,-0,1,0,-0,1,1.16638489089382e-007,0,1,-3.99909254156228e-007,0.999996781349182,0.00255742925219238,-1.39170062141147e-008,0.999248087406158,-0.0387747921049595,-4.63419311813595e-008,0.999284684658051,-0.0378192998468876,-5.67463338541074e-008,0.999996721744537,0.00255743064917624,-3.47924995480753e-008,-0.999036908149719,-0.0438785813748837,-9.94714852708967e-008,-0.999996840953827,-0.00255059148184955,-1.1133459310031e-007,-0.999996840953827,-0.00255059218034148,-1.1133459310031e-007,-0.999078392982483,-0.0429234057664871,-9.94350415339795e-008,-0.00255729816854,0.999996781349182,-3.80138942546182e-007,-0.00255729816854,0.999996781349182,-2.53426122753808e-007,-0.0025575936306268,0.999996781349182,-1.26713331383144e-007,-0.0025575936306268,0.999996781349182,-2.53426122753808e-007,-0.0410752967000008,-0.999156057834625,-1.03496184067353e-007,0.0461631640791893,-0.998933970928192,-1.19097506967591e-007,
- 0.0461181178689003,-0.998936057090759,-1.19097748552122e-007,-0.0410354621708393,-0.999157667160034,-1.03494670611326e-007,-0.00259455107152462,0.999996662139893,0,-0.00256195245310664,0.999996781349182,0,-0.00252874847501516,0.999996781349182,0,-0.00252466299571097,0.999996840953827,0,-0.00253865635022521,0.999996781349182,0,-0.00257651135325432,0.999996721744537,0,0.999284684658051,-0.0378192998468876,-5.67463338541074e-008,0.999248087406158,-0.0387747921049595,-4.63419311813595e-008,0.0461181178689003,-0.998936057090759,-5.80452201859316e-008,0.0461631640791893,-0.998933970928192,-5.80476147149511e-008,-0.999036908149719,-0.0438785813748837,-9.94714852708967e-008,-0.999078392982483,-0.0429234057664871,-9.94350415339795e-008,-0.0410752967000008,-0.999156057834625,-1.03496184067353e-007,-0.0410354621708393,-0.999157667160034,-1.03494670611326e-007,0.765682697296143,-0.643218457698822,0,0.765683650970459,-0.643217444419861,0,0.765683650970459,-0.643217444419861,0,0.765682697296143,-0.643218457698822,0,-0.643270313739777,-0.765639185905457,-3.84994052637921e-007,-0.643269717693329,-0.765639662742615,-7.69988503179775e-007,-0.643269717693329,-0.765639662742615,-3.84994280011597e-007,-0.643270254135132,-0.765639185905457,0,0.765693485736847,-0.64320570230484,4.24697191192536e-006,0.765693485736847,-0.64320570230484,3.01133127322828e-007,0.765683650970459,-0.643217325210571,4.24692098022206e-006,0.765683710575104,-0.643217325210571,8.1927100836765e-006,0.765713155269623,-0.643182218074799,6.74476814310765e-006,0.765722930431366,-0.643170595169067,3.37241704073676e-006,0.765722990036011,-0.643170654773712,1.13686851274143e-013,0.765713155269623,-0.643182218074799,3.37238407155382e-006,0.765595376491547,-0.643322467803955,4.62359935227141e-007,0.765593826770782,-0.643324315547943,1.1627835760919e-007,0.765593826770782,-0.643324315547943,-2.29804271612011e-007,0.765595376491547,-0.643322467803955,1.1627832918748e-007,0.76572173833847,-0.643172025680542,1.29940156057273e-006,0.765726089477539,-0.643166959285736,6.49704418265173e-007,
- 0.765726029872894,-0.643166959285736,0,0.765721797943115,-0.643172025680542,6.49700837129785e-007,-0.643249928951263,-0.765656352043152,-4.57806976328357e-007,-0.643251895904541,-0.765654623508453,0,-0.643251955509186,-0.765654623508453,-4.57808425835537e-007,-0.643249869346619,-0.765656292438507,-9.15613838969875e-007,0.765617311000824,-0.643296301364899,4.34760067946627e-007,0.765617311000824,-0.643296301364899,1.08979395463393e-006,0.765619337558746,-0.643293857574463,4.34762000622868e-007,0.765619397163391,-0.643293857574463,-2.20272923456832e-007,0.765622735023499,-0.643289864063263,9.7158772405237e-007,0.765623986721039,-0.643288373947144,9.55162249738351e-007,0.765624046325684,-0.643288373947144,9.38735240652022e-007,0.765622735023499,-0.643289864063263,9.55160658122622e-007,0.765578746795654,-0.643342256546021,2.62438959452993e-007,0.765574872493744,-0.643346905708313,5.55339624952467e-007,0.765574812889099,-0.643346965312958,8.48239153583563e-007,0.765578746795654,-0.643342196941376,5.553409323511e-007,0.76570338010788,-0.64319384098053,0,0.765705049037933,-0.643191814422607,6.96878288408698e-008,0.765705108642578,-0.643191874027252,1.3937565768174e-007,0.76570338010788,-0.64319384098053,6.96880420036905e-008,-0.643253922462463,-0.765652894973755,-9.09942983184919e-008,-0.643253445625305,-0.765653371810913,-3.36432947278809e-007,-0.643253445625305,-0.765653371810913,-9.09940993665259e-008,-0.643253862857819,-0.765652894973755,1.54444720124047e-007,0.765579402446747,-0.643341422080994,1.88196310091371e-007,0.765579402446747,-0.643341422080994,2.1013701712036e-007,0.765579164028168,-0.643341779708862,1.88196381145644e-007,0.765579223632813,-0.643341779708862,1.66255674116655e-007,0.765686452388763,-0.643213987350464,6.99321617503301e-007,0.765688955783844,-0.643211007118225,3.49661490872677e-007,0.765689015388489,-0.64321094751358,0,0.765686511993408,-0.643214046955109,3.4966083717336e-007,0.642772018909454,0.765070796012878,0.0388699285686016,0.643136620521545,0.765504717826843,0.0194387082010508,0.643258154392242,0.765649497509003,1.43397343776996e-007,
- 0.643136620521545,0.765504658222198,0.0194387082010508,-0.76563823223114,0.643271505832672,-8.53820602060296e-005,-0.76563823223114,0.643271446228027,-0.000346884975442663,-0.765638291835785,0.643271446228027,-8.5382052930072e-005,-0.76563823223114,0.643271446228027,0.000176120840478688,0.765669524669647,-0.643234133720398,5.33049274054065e-007,0.765669584274292,-0.643234074115753,2.4687591348993e-007,0.765669643878937,-0.643234133720398,-3.92974968121962e-008,0.765669584274292,-0.643234133720398,2.46875885068221e-007,0.64298814535141,0.765424430370331,-0.0263006240129471,0.643236219882965,0.765576243400574,-0.0118428850546479,0.643265008926392,0.765639245510101,0.00262960977852345,0.643033623695374,0.765461623668671,-0.0240067429840565,-0.684797525405884,-0.728725790977478,0.00333909736946225,-0.605591237545013,-0.795718312263489,0.00957342050969601,-0.602283596992493,-0.797861337661743,0.0259203091263771,-0.681607246398926,-0.731341481208801,0.0234797820448875,0.73191374540329,-0.681394875049591,-0.00180468009784818,0.765662848949432,-0.643242180347443,0.000276668957667425,0.765628397464752,-0.643281280994415,-0.00155027583241463,0.730189681053162,-0.683241188526154,-0.00213134405203164,-0.798927545547485,0.601408243179321,0.00478142127394676,-0.765626907348633,0.643283128738403,0.00155267864465714,-0.765650868415833,0.643256366252899,-0.000279099331237376,-0.796914517879486,0.604088366031647,0.00216659135185182,-0.643226146697998,-0.765628457069397,-0.00856672506779432,-0.643240809440613,-0.765634596347809,0.00670018000528216,-0.643240690231323,-0.765634655952454,0.00669979630038142,-0.643226206302643,-0.765628337860107,-0.00856839492917061,0.643235385417938,0.765620589256287,0.00856644101440907,0.643253445625305,0.765623927116394,-0.00670050363987684,0.604282140731812,0.796742022037506,-0.00672665471211076,0.605069875717163,0.796127200126648,0.00848355703055859,-0.730349063873291,0.683073282241821,-0.00106513081118464,-0.765648066997528,0.643259167671204,-0.000951412948779762,-0.765637218952179,0.643270969390869,-0.00145708024501801,
- -0.730087757110596,0.683352708816528,-0.000997454626485705,0.765659987926483,-0.643245458602905,0.000443324504885823,0.765654802322388,-0.643250107765198,0.00146161066368222,0.765654861927032,-0.643250107765198,0.00146203825715929,0.765661597251892,-0.643243074417114,0.000952989445067942,-0.798927545547485,0.601408243179321,0.00478142127394676,-0.796914517879486,0.604088366031647,0.00216659135185182,-0.684797525405884,-0.728725790977478,0.00333909736946225,-0.681607246398926,-0.731341481208801,0.0234797820448875,-0.602283596992493,-0.797861337661743,0.0259203091263771,-0.605591237545013,-0.795718312263489,0.00957342050969601,0.73191374540329,-0.681394875049591,-0.00180468009784818,0.730189681053162,-0.683241188526154,-0.00213134405203164,0.605069875717163,0.796127200126648,0.00848355703055859,0.604282140731812,0.796742022037506,-0.00672665471211076,-0.730349063873291,0.683073282241821,-0.00106513081118464,-0.730087757110596,0.683352708816528,-0.000997454626485705,-0.796914517879486,0.604088366031647,0.00216659135185182,-0.776821076869965,0.629721462726593,0.000171102597960271,-0.733521044254303,-0.67946445941925,-0.0165844112634659,-0.684797525405884,-0.728725790977478,0.00333909736946225,-0.765650868415833,0.643256366252899,-0.000279099331237376,-0.765619575977325,0.643289804458618,-0.00220580818131566,-0.776821076869965,0.629721462726593,0.000171102597960271,-0.796914517879486,0.604088366031647,0.00216659135185182,0.643236219882965,0.765576243400574,-0.0118428850546479,0.643171668052673,0.765579044818878,0.0148001750931144,0.643144071102142,0.765554070472717,0.0171103645116091,0.643265008926392,0.765639245510101,0.00262960977852345,-0.605591237545013,-0.795718312263489,0.00957342050969601,-0.615217506885529,-0.788237333297729,-0.0137641504406929,0.745203912258148,-0.666836142539978,-0.000862612505443394,0.73191374540329,-0.681394875049591,-0.00180468009784818,0.606983304023743,0.794655680656433,-0.00968639831990004,0.615526080131531,0.788074493408203,0.00814689137041569,-0.74709141254425,0.664720177650452,0.00124801346100867,
- -0.732953906059265,0.680278301239014,0.000264563161181286,0.643253445625305,0.765623927116394,-0.00670050363987684,0.643086850643158,0.765789866447449,-0.00226365937851369,0.606983304023743,0.794655680656433,-0.00968639831990004,0.604282140731812,0.796742022037506,-0.00672665471211076,0.76595813035965,-0.642890274524689,-0.000462784199044108,0.765659987926483,-0.643245458602905,0.000443324504885823,0.765661597251892,-0.643243074417114,0.000952989445067942,0.765958547592163,-0.64288991689682,-0.00041334587149322,-0.643240809440613,-0.765634596347809,0.00670018000528216,-0.643061280250549,-0.765712082386017,0.012540309689939,-0.64311021566391,-0.765766978263855,0.00318165146745741,-0.643240690231323,-0.765634655952454,0.00669979630038142,-0.732953906059265,0.680278301239014,0.000264563161181286,-0.767032146453857,0.641608595848084,0.000533696264028549,-0.765648066997528,0.643259167671204,-0.000951412948779762,-0.730349063873291,0.683073282241821,-0.00106513081118464,0.604282140731812,0.796742022037506,-0.00672665471211076,0.606983304023743,0.794655680656433,-0.00968639831990004,-0.732953906059265,0.680278301239014,0.000264563161181286,-0.730349063873291,0.683073282241821,-0.00106513081118464,0.643086850643158,0.765789866447449,-0.00226365937851369,0.642895221710205,0.765926361083984,0.00652495305985212,0.615526080131531,0.788074493408203,0.00814689137041569,0.606983304023743,0.794655680656433,-0.00968639831990004,-0.643061280250549,-0.765712082386017,0.012540309689939,-0.642987310886383,-0.76585179567337,-0.00621087569743395,-0.642987668514252,-0.765852212905884,-0.00610974198207259,-0.64311021566391,-0.765766978263855,0.00318165146745741,-0.765838444232941,0.642612874507904,0.0232425164431334,-0.761440634727478,0.645835816860199,0.0557150430977345,-0.0763112679123878,0.0344644077122211,0.996488332748413,-0.247270509600639,0.180664449930191,0.95195460319519,-0.546526908874512,0.458017259836197,0.701090931892395,-0.769221961498261,0.638905584812164,-0.00987270753830671,-0.76145213842392,0.648091852664948,-0.0129518546164036,
- -0.761440634727478,0.645835816860199,0.0557150430977345,-0.765838444232941,0.642612874507904,0.0232425164431334,0.758413672447205,-0.64722204208374,0.0768923908472061,0.76145213842392,-0.648091614246368,0.0129661494866014,0.761216163635254,-0.64836710691452,0.0130410436540842,0.75931704044342,-0.648141026496887,0.0578863471746445,0.0423629358410835,-0.0661822035908699,0.996907889842987,-0.0763112679123878,0.0344644077122211,0.996488332748413,-0.0639140456914902,0.052616935223341,0.996567368507385,0.065873347222805,-0.0550228841602802,0.996309876441956,-0.761440634727478,0.645835816860199,0.0557150430977345,-0.763914287090302,0.64265912771225,0.0585159584879875,-0.0639140456914902,0.052616935223341,0.996567368507385,-0.0763112679123878,0.0344644077122211,0.996488332748413,-0.76145213842392,0.648091852664948,-0.0129518546164036,-0.764089584350586,0.645100235939026,-0.00361025054007769,-0.763914287090302,0.64265912771225,0.0585159584879875,-0.761440634727478,0.645835816860199,0.0557150430977345,0.0149780651554465,0.017609091475606,-0.999732792377472,0.00230613630264997,0.0027448630426079,-0.999993562698364,0.00230630068108439,0.00274494779296219,-0.999993562698364,0.0152960196137428,0.0179823487997055,-0.99972140789032,0.763960838317871,-0.643210887908936,0.05141731351614,0.764090120792389,-0.645099520683289,0.00360977835953236,0.76145213842392,-0.648091614246368,0.0129661494866014,0.758413672447205,-0.64722204208374,0.0768923908472061,0.0423629358410835,-0.0661822035908699,0.996907889842987,0.065873347222805,-0.0550228841602802,0.996309876441956,0.763960838317871,-0.643210887908936,0.05141731351614,0.758413672447205,-0.64722204208374,0.0768923908472061,0.065873347222805,-0.0550228841602802,0.996309876441956,-0.0639140456914902,0.052616935223341,0.996567368507385,-0.0381340980529785,0.0519627332687378,0.997920751571655,0.0563220754265785,-0.0268051512539387,0.998052716255188,-0.763914287090302,0.64265912771225,0.0585159584879875,-0.761392831802368,0.63734757900238,0.11861327290535,-0.0381340980529785,0.0519627332687378,0.997920751571655,
- -0.0639140456914902,0.052616935223341,0.996567368507385,-0.764089584350586,0.645100235939026,-0.00361025054007769,-0.767874419689178,0.640534937381744,0.00915493164211512,-0.761392831802368,0.63734757900238,0.11861327290535,-0.763914287090302,0.64265912771225,0.0585159584879875,0.00230613630264997,0.0027448630426079,-0.999993562698364,-0.00996279437094927,-0.0119469901546836,-0.999879062175751,-0.00996257085353136,-0.0119467219337821,-0.999879002571106,0.00230630068108439,0.00274494779296219,-0.999993562698364,0.765021502971649,-0.635921061038971,0.101718284189701,0.767874896526337,-0.640534460544586,-0.00915608834475279,0.764090120792389,-0.645099520683289,0.00360977835953236,0.763960838317871,-0.643210887908936,0.05141731351614,0.065873347222805,-0.0550228841602802,0.996309876441956,0.0563220754265785,-0.0268051512539387,0.998052716255188,0.765021502971649,-0.635921061038971,0.101718284189701,0.763960838317871,-0.643210887908936,0.05141731351614,0.999996721744537,0.00255743064917624,-3.90364576219326e-008,0.999284684658051,-0.0378192998468876,-6.53887397561448e-008,0.999905347824097,-0.0137631986290216,-4.7574339134826e-008,0.999996781349182,0.00255743227899075,-1.44421123948746e-008,-0.999078392982483,-0.0429234057664871,-9.25631411519134e-008,-0.999996840953827,-0.00255059218034148,-1.21428726629347e-007,-0.999996781349182,-0.00255059287883341,-1.15563558722442e-007,-0.999821245670319,-0.0189110152423382,-1.13587375949464e-007,-0.0025575936306268,0.999996781349182,-3.94578250961786e-007,-0.0025575936306268,0.999996781349182,-2.63036355363511e-007,-0.00255790026858449,0.999996781349182,-1.31494459765236e-007,-0.00255790073424578,0.999996781349182,-2.63036355363511e-007,-0.999078392982483,-0.0429234057664871,-9.25631411519134e-008,-0.999821245670319,-0.0189110152423382,-1.13587375949464e-007,-0.0570364929735661,-0.998372197151184,-7.3826257107612e-008,-0.0410752967000008,-0.999156057834625,-8.51948840363548e-008,0.643276631832123,0.765633821487427,4.01409465666802e-008,0.643276691436768,0.765633821487427,3.83287286354062e-008,
- 0.643276691436768,0.765633821487427,4.01409465666802e-008,0.643276691436768,0.765633821487427,4.1953168050668e-008,-0.643254280090332,-0.765652716159821,-8.59615681747528e-007,-0.643254280090332,-0.765652656555176,-3.86852633482704e-007,-0.643254280090332,-0.765652716159821,8.59103650441284e-008,-0.643254280090332,-0.765652656555176,-3.86852605060994e-007,-0.765621244907379,0.643291592597961,0,-0.765621244907379,0.643291592597961,-6.04797207870433e-007,-0.765621304512024,0.643291592597961,-1.20959441574087e-006,-0.765621304512024,0.643291532993317,-6.04797264713852e-007,-0.765616476535797,0.643297433853149,6.54794760635014e-008,-0.765616416931152,0.643297433853149,6.71517099704033e-008,-0.765616416931152,0.643297374248505,6.88239438773053e-008,-0.765616416931152,0.643297374248505,6.71517099704033e-008,0.643243193626404,0.76566207408905,1.29430759443494e-008,0.643243134021759,0.765662014484406,6.74481448470488e-009,0.643243134021759,0.765662014484406,1.29430741679926e-008,0.643243134021759,0.765662014484406,1.91413320749234e-008,0.643266081809998,0.765642702579498,4.42510383891204e-008,0.643266141414642,0.765642762184143,1.66750222518885e-008,0.643266141414642,0.765642762184143,4.42510383891204e-008,0.643266141414642,0.765642762184143,7.18270598554227e-008,-0.643261909484863,-0.76564621925354,1.35920359412012e-007,-0.643261909484863,-0.76564621925354,1.41250609431154e-007,-0.643261909484863,-0.76564621925354,1.46580873661151e-007,-0.643261909484863,-0.76564621925354,1.41250609431154e-007,-0.765661954879761,0.643243193626404,3.3503546603697e-008,-0.76566207408905,0.643243193626404,6.79573091133534e-008,-0.76566207408905,0.643243193626404,1.02411064517582e-007,-0.76566207408905,0.643243193626404,6.79573091133534e-008,0.765698969364166,-0.643199145793915,1.00514270684471e-007,0.765698969364166,-0.64319920539856,1.331810466354e-007,0.765698969364166,-0.643199145793915,1.00514270684471e-007,0.765698969364166,-0.643199145793915,6.7847501838969e-008,0.643267512321472,0.765641510486603,4.55197408655295e-007,0.643267512321472,0.765641510486603,8.4380837961362e-007,
- 0.643267571926117,0.765641510486603,4.55197465498713e-007,0.643267571926117,0.765641510486603,6.65864092752599e-008,-0.643241465091705,-0.76566344499588,-7.63143134463462e-007,-0.643241465091705,-0.76566344499588,-3.47650058074578e-007,-0.64324152469635,-0.76566344499588,6.78430254197337e-008,-0.643241405487061,-0.76566344499588,-3.47650029652868e-007,-0.765704214572906,0.643192946910858,-9.67146206676262e-007,-0.765704214572906,0.643192946910858,-9.75720922724577e-007,-0.765704154968262,0.643192887306213,-9.84295525086054e-007,-0.765704214572906,0.643192887306213,-9.75720922724577e-007,-0.643266379833221,-0.765642404556274,-6.44510350866767e-007,-0.643266379833221,-0.765642464160919,-2.90409843728412e-007,-0.643266320228577,-0.765642464160919,6.36906918316527e-008,-0.643266379833221,-0.765642464160919,-2.90409843728412e-007,0.639681100845337,0.768640518188477,5.59797399546369e-008,0.639681160449982,0.768640518188477,3.3713767777499e-008,0.639681160449982,0.768640458583832,5.59797399546369e-008,0.639681160449982,0.768640458583832,7.82457121317748e-008,-0.765586495399475,0.643332958221436,5.23860208545557e-008,-0.76558655500412,0.643332958221436,8.01441188968965e-008,-0.76558655500412,0.64333301782608,1.07902224044665e-007,-0.76558655500412,0.64333301782608,8.01441260023239e-008,0.765776991844177,-0.643106281757355,1.05604087252686e-007,0.765777051448822,-0.643106281757355,1.04053121674497e-007,0.765777051448822,-0.64310622215271,1.05604073041832e-007,0.765777051448822,-0.64310622215271,1.07155038620022e-007,0.643260061740875,0.765647828578949,5.20132417136665e-008,0.643260061740875,0.765647768974304,0,0.643260061740875,0.765647888183594,5.20132488190939e-008,0.643260061740875,0.765647888183594,1.04026497638188e-007,-0.643297553062439,-0.765616357326508,4.7256162361009e-007,-0.643297553062439,-0.765616416931152,2.362808260159e-007,-0.643297612667084,-0.765616238117218,0,-0.643297553062439,-0.765616238117218,2.36280783383336e-007,-0.765651881694794,0.643255114555359,-7.105427357601e-015,-0.765651941299438,0.643255114555359,-1.5767571426295e-007,
- -0.765651881694794,0.643255114555359,-3.15351428525901e-007,-0.765651941299438,0.643255174160004,-1.5767571426295e-007,0.643247544765472,0.765658378601074,1.70725673598326e-008,0.643247544765472,0.765658318996429,1.05029052122063e-008,0.643247485160828,0.765658318996429,1.70725655834758e-008,0.643247485160828,0.765658318996429,2.3642229507459e-008,-0.643255710601807,-0.765651404857636,0,-0.643255710601807,-0.765651524066925,4.85620716972335e-008,-0.643255710601807,-0.765651524066925,9.7124143394467e-008,-0.643255710601807,-0.765651524066925,4.85620716972335e-008,-0.76561176776886,0.643302977085114,8.44108996034265e-008,-0.76561176776886,0.643302977085114,6.38131538721609e-008,-0.765611708164215,0.643302917480469,4.32153974827543e-008,-0.765611708164215,0.643302917480469,6.38131467667336e-008,0.612117409706116,0.790596604347229,-0.0164146944880486,0.643199563026428,0.765637397766113,-0.00968583859503269,0.0240810550749302,0.999641418457031,-0.0117179313674569,-0.741599559783936,0.670835733413696,0.00311523210257292,-0.765598475933075,0.643309950828552,0.00337289366871119,-0.765618860721588,0.643291234970093,0.00206001568585634,-0.765677571296692,0.643174231052399,0.00804608501493931,-0.730648458003998,0.682737231254578,0.00476296618580818,-0.741599559783936,0.670835733413696,0.00311523210257292,0.612117409706116,0.790596604347229,-0.0164146944880486,0.0240810550749302,0.999641418457031,-0.0117179313674569,-0.108786359429359,0.994010865688324,-0.0103867882862687,0.791398942470551,0.611298859119415,0.00125960051082075,0.643199563026428,0.765637397766113,-0.00968583859503269,0.685276031494141,0.728265047073364,-0.00518752913922071,-0.765598475933075,0.643309950828552,0.00337289366871119,-0.765649020671844,0.643256962299347,0.00142330466769636,-0.765618860721588,0.643291234970093,0.00206001568585634,0.000434908957686275,0.0543913654983044,-0.998519599437714,0.27070426940918,-0.181713476777077,-0.945356726646423,0.0700510889291763,-0.0491950996220112,-0.996329665184021,-0.0577177964150906,0.0595575533807278,-0.996554851531982,
- -0.758335471153259,0.648500502109528,-0.0661391615867615,0.000434908957686275,0.0543913654983044,-0.998519599437714,-0.0577177964150906,0.0595575533807278,-0.996554851531982,-0.764465630054474,0.642563879489899,-0.0520016103982925,0.762106895446777,-0.647395551204681,0.00849772524088621,0.757897675037384,-0.652089297771454,0.0192532874643803,0.757296741008759,-0.6528200507164,0.0180985927581787,0.762239694595337,-0.647243082523346,0.008198500610888,0.765422523021698,-0.640935182571411,-0.0577102638781071,0.27070426940918,-0.181713476777077,-0.945356726646423,0.762106895446777,-0.647395551204681,0.00849772524088621,0.765422523021698,-0.640935182571411,-0.0577102638781071,0.0700510889291763,-0.0491950996220112,-0.996329665184021,-0.639621198177338,-0.768690407276154,1.38893170742449e-007,-0.639621198177338,-0.768690407276154,1.47697605257235e-007,-0.639621198177338,-0.768690288066864,1.56502025561167e-007,-0.639621198177338,-0.768690288066864,1.47697591046381e-007,0.0126457428559661,0.014712861739099,0.999811768531799,-0.0121094333007932,-0.0141317173838615,0.999826788902283,-0.00585608463734388,-0.00683663366362453,0.999959468841553,0.757897675037384,-0.652089297771454,0.0192532874643803,0.755326271057129,-0.65524160861969,-0.0118675697594881,0.757296741008759,-0.6528200507164,0.0180985927581787,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.643273234367371,0.765636742115021,9.99525695988268e-007,0.643273174762726,0.765636742115021,1.99905161935021e-006,0.643273413181305,0.765636563301086,9.9952558230143e-007,0.643273413181305,0.765636503696442,0,-0.643254220485687,-0.765652775764465,0,-0.643254220485687,-0.765652656555176,0,-0.643254697322845,-0.765652418136597,0,-0.643254697322845,-0.765652418136597,0,-0.765648782253265,0.643258988857269,1.679527485976e-006,-0.765648722648621,0.643258988857269,8.3976362930116e-007,-0.765647709369659,0.643260180950165,0,-0.765647709369659,0.643260180950165,8.39765277760307e-007,-0.76568603515625,0.643214583396912,4.44643819719204e-006,-0.765685975551605,0.643214583396912,2.5778133476706e-006,-0.765690624713898,0.643209099769592,7.0918304118095e-007,
- -0.765690565109253,0.643209159374237,2.57783221968566e-006,0.643238246440887,0.76566618680954,3.10614211684879e-007,0.643238246440887,0.76566606760025,-6.04452179686632e-006,0.643233060836792,0.765670478343964,3.10602331410337e-007,0.643233060836792,0.765670597553253,6.66569667373551e-006,0.643258810043335,0.765648782253265,0,0.643258810043335,0.765648782253265,0,0.643258690834045,0.765648901462555,0,0.643258690834045,0.765648901462555,0,-0.643271327018738,-0.765638411045074,-3.60369040208752e-006,-0.643271267414093,-0.76563835144043,-3.98430665882188e-006,-0.643266618251801,-0.76564234495163,-4.36488198829466e-006,-0.643266618251801,-0.765642285346985,-3.98427300751791e-006,-0.76571798324585,0.643176436424255,1.29510738133831e-007,-0.765718042850494,0.643176436424255,-2.01031502911064e-006,-0.765715599060059,0.643179357051849,-4.15012709709117e-006,-0.765715539455414,0.643179357051849,-2.0103079805267e-006,0.765698671340942,-0.643199443817139,2.25787107410724e-006,0.765698671340942,-0.643199443817139,2.56157647982036e-007,0.765688538551331,-0.643211662769318,2.25784287977149e-006,0.765688419342041,-0.643211662769318,4.25952748628333e-006,0.643261551856995,0.765646576881409,6.68076609144919e-007,0.643261551856995,0.765646636486053,1.336153104603e-006,0.64326274394989,0.765645563602448,6.68077802856715e-007,0.64326274394989,0.765645503997803,0,-0.643270194530487,-0.765639364719391,-2.03265614118209e-007,-0.643270194530487,-0.765639364719391,-1.89089018931554e-006,-0.643266141414642,-0.765642642974854,-3.5784919418802e-006,-0.643266201019287,-0.765642583370209,-1.89087995750015e-006,-0.765606164932251,0.643309593200684,-1.59028184043564e-006,-0.765606284141541,0.643309593200684,-6.17959699411585e-007,-0.765609323978424,0.643305897712708,3.54360423671096e-007,-0.765609264373779,0.643305838108063,-6.17963905824581e-007,0.643260061740875,0.765647768974304,2.3382632718949e-007,0.643260061740875,0.765647888183594,2.01620213857723e-008,0.643260478973389,0.765647530555725,2.33826284556926e-007,0.643260478973389,0.76564747095108,4.47490492661018e-007,
- -0.643257617950439,-0.765649795532227,3.25997092431862e-007,-0.643257617950439,-0.765649855136871,4.81909012250981e-007,-0.64325749874115,-0.765650033950806,6.37821074178646e-007,-0.643257439136505,-0.765649974346161,4.81909069094399e-007,-0.765602588653564,0.643313884735107,8.10175748711117e-008,-0.765602588653564,0.643313884735107,-9.64457669283547e-008,-0.76560252904892,0.643314003944397,-2.7390916557124e-007,-0.76560252904892,0.643314003944397,-9.64457953500641e-008,0.643257737159729,0.765649795532227,4.7544622816531e-007,0.643257737159729,0.765649855136871,9.5089251317404e-007,0.643258810043335,0.765648782253265,4.75446938708046e-007,0.643258810043335,0.765648782253265,0,-0.643261194229126,-0.765646815299988,1.41443067036562e-007,-0.643261194229126,-0.765646934509277,-3.90941863770422e-007,-0.643259823322296,-0.765647947788239,-9.23324478208087e-007,-0.643259823322296,-0.765648066997528,-3.90940726902045e-007,-0.765713036060333,0.643182396888733,-1.05091430668836e-006,-0.765713095664978,0.643182456493378,-5.25457267031015e-007,-0.765718042850494,0.6431764960289,0,-0.76571798324585,0.6431764960289,-5.25460563949309e-007,-0.765659868717194,0.643245697021484,-8.76194349075377e-007,-0.765659928321838,0.643245697021484,-4.02604428018094e-007,-0.765666127204895,0.643238186836243,7.09856138314535e-008,-0.765666127204895,0.643238246440887,-4.02608236527158e-007,0.64326286315918,0.765645444393158,5.30364445694431e-007,0.643262922763824,0.765645444393158,7.98561131887254e-007,0.643264472484589,0.765644073486328,5.30365241502295e-007,0.643264472484589,0.765644133090973,2.62167390019385e-007,0.643267691135406,0.765641331672668,4.38198185293004e-007,0.643267631530762,0.765641391277313,2.6894880988948e-008,0.643266499042511,0.765642464160919,4.38197446328559e-007,0.643266499042511,0.765642404556274,8.49499997457315e-007,-0.643262505531311,-0.765645802021027,1.10896777982816e-007,-0.643262505531311,-0.765645742416382,-2.89792126295652e-007,-0.643260836601257,-0.765647172927856,-6.90478998421895e-007,-0.643260836601257,-0.765647232532501,-2.89791103114112e-007,
- -0.765652120113373,0.643254995346069,0,-0.765652060508728,0.643254935741425,5.57043300375426e-008,-0.765652656555176,0.643254399299622,1.11408667180513e-007,-0.765652656555176,0.643254399299622,5.57043335902563e-008,0.765659630298615,-0.643245875835419,4.67861042352524e-007,0.765659809112549,-0.643245875835419,9.35722312078724e-007,0.765662431716919,-0.643242597579956,4.67862577124833e-007,0.765662491321564,-0.643242597579956,0,0.643271744251251,0.765638053417206,3.22298561172829e-008,0.643271684646606,0.765637993812561,-6.31557554697793e-007,0.643269121646881,0.765640139579773,3.22297211141631e-008,0.643269121646881,0.765640139579773,6.96014467393979e-007,-0.643257856369019,-0.765649616718292,1.00058038299267e-007,-0.643257856369019,-0.765649676322937,5.0029022702347e-008,-0.643257677555084,-0.765649735927582,0,-0.643257677555084,-0.765649735927582,5.00290155969196e-008,-0.765740513801575,0.643149614334106,7.51796164877305e-007,-0.765740513801575,0.643149673938751,3.75898110860362e-007,-0.765736401081085,0.643154561519623,-3.5527136788005e-015,-0.76573634147644,0.643154621124268,3.75896064497283e-007,0.643257439136505,0.765649974346161,3.32863805851957e-007,0.643257439136505,0.765650033950806,1.07630464540875e-008,0.64325624704361,0.765650928020477,3.32863208996059e-007,0.643256187438965,0.765650987625122,6.54963287161081e-007,-0.643258154392242,-0.765649378299713,-1.70296885926291e-007,-0.643258094787598,-0.765649497509003,6.124819407205e-008,-0.643257558345795,-0.765649974346161,2.92793430389793e-007,-0.643257558345795,-0.765649974346161,6.12482011774773e-008,-0.765595316886902,0.643322467803955,8.64959588398051e-008,-0.765595376491547,0.64332240819931,1.36946965767493e-007,-0.765592992305756,0.643325209617615,1.87398597972788e-007,-0.7655930519104,0.643325209617615,1.36947278406296e-007,0.643261015415192,0.765646994113922,-2.76454301229023e-007,0.643261015415192,0.765646934509277,-4.29970612003672e-007,0.643260061740875,0.765647828578949,-2.76454045433638e-007,0.64326000213623,0.765647828578949,-1.2293821782805e-007,
- -0.643262326717377,-0.765645921230316,1.60204223220717e-007,-0.643262267112732,-0.765645921230316,8.0102104504931e-008,-0.643262147903442,-0.765645980834961,0,-0.643262147903442,-0.765645980834961,8.0102104504931e-008,-0.765721023082733,0.643172919750214,6.05099216954841e-007,-0.765721023082733,0.643172919750214,3.0254960847742e-007,-0.765718162059784,0.643176317214966,-3.5527136788005e-015,-0.765718102455139,0.643176317214966,3.02548471609043e-007,-0.765625178813934,0.643287003040314,6.51217959557471e-008,-0.76562511920929,0.643287003040314,-2.21749303364049e-007,-0.765623092651367,0.64328944683075,-5.08618882122391e-007,-0.765623092651367,0.64328944683075,-2.2174855018875e-007,0.643267035484314,0.765641987323761,-6.72063222850738e-008,0.643267035484314,0.765641927719116,6.88524082192998e-009,0.643266558647156,0.76564234495163,-6.7206364917638e-008,0.643266558647156,0.765642285346985,-1.41297959999065e-007,0.643255710601807,0.765651404857636,2.68266759917424e-008,0.643255710601807,0.765651404857636,1.69954930129279e-008,0.643255531787872,0.76565158367157,2.68266759917424e-008,0.643255531787872,0.76565158367157,3.66578589705568e-008,-0.643282473087311,-0.765629053115845,1.38587139986157e-007,-0.643282473087311,-0.765628933906555,-6.3824103335719e-008,-0.643281579017639,-0.765629708766937,-2.66234508217167e-007,-0.643281519412994,-0.765629768371582,-6.38236699046502e-008,-0.765634059906006,0.643276453018188,3.41430066441717e-008,-0.765634059906006,0.643276453018188,6.92731489948528e-008,-0.765632808208466,0.643277943134308,1.04403298450961e-007,-0.765632808208466,0.643277943134308,6.92731489948528e-008,0.765666007995605,-0.643238425254822,3.916774744539e-007,0.765666007995605,-0.643238365650177,6.78668641285185e-008,0.765663146972656,-0.643241882324219,3.91676735489455e-007,0.765663087368011,-0.643241822719574,7.154866352721e-007,0.643255352973938,0.765651702880859,-1.56913529281155e-007,0.643255352973938,0.765651822090149,-3.81693070039546e-007,0.643254458904266,0.765652477741241,-1.56913245064061e-007,0.643254458904266,0.765652477741241,6.78659830555262e-008,
- -0.643262386322021,-0.765645921230316,6.49005116315493e-008,-0.643262386322021,-0.765645861625671,-9.05717243426807e-008,-0.643261313438416,-0.765646755695343,-2.46043043716782e-007,-0.643261313438416,-0.765646696090698,-9.05712767007572e-008,-0.76569539308548,0.643203437328339,4.92288620534964e-007,-0.765695452690125,0.643203377723694,2.46144338689192e-007,-0.765691578388214,0.643208086490631,0,-0.765691578388214,0.643208086490631,2.46143088133977e-007,-0.642750561237335,-0.765054643154144,-0.0395390912890434,-0.643127679824829,-0.765503704547882,-0.0197735372930765,-0.64325350522995,-0.765653252601624,-2.53578491538065e-007,-0.643127739429474,-0.765503704547882,-0.0197735391557217,0.765588343143463,-0.643304884433746,-0.00576871633529663,0.765554189682007,-0.643240988254547,-0.0129578057676554,0.773464739322662,-0.6338130235672,-0.00576827907934785,0.796409904956818,-0.604757130146027,0.000244738504989073,-0.733521044254303,-0.67946445941925,-0.0165844112634659,-0.615217506885529,-0.788237333297729,-0.0137641504406929,-0.605591237545013,-0.795718312263489,0.00957342050969601,-0.684797525405884,-0.728725790977478,0.00333909736946225,0.745203912258148,-0.666836142539978,-0.000862612505443394,0.765645623207092,-0.643258929252625,0.00220033060759306,0.765662848949432,-0.643242180347443,0.000276668957667425,0.73191374540329,-0.681394875049591,-0.00180468009784818,0.765958547592163,-0.64288991689682,-0.00041334587149322,0.766235411167145,-0.64255964756012,-0.00065037771128118,0.766235768795013,-0.642559170722961,-0.000747971702367067,0.76595813035965,-0.642890274524689,-0.000462784199044108,-0.74709141254425,0.664720177650452,0.00124801346100867,-0.768511474132538,0.63983553647995,0.00079381640534848,-0.767032146453857,0.641608595848084,0.000533696264028549,-0.732953906059265,0.680278301239014,0.000264563161181286,-0.546526908874512,0.458017259836197,0.701090931892395,-0.771991610527039,0.635141670703888,0.0249814875423908,-0.765838444232941,0.642612874507904,0.0232425164431334,-0.771991610527039,0.635141670703888,0.0249814875423908,
- -0.772073924541473,0.635093033313751,0.0236406940966845,-0.769221961498261,0.638905584812164,-0.00987270753830671,-0.765838444232941,0.642612874507904,0.0232425164431334,-0.0268878880888224,-0.0327540338039398,-0.99910169839859,0.0011730530532077,0.00137542188167572,-0.999998450279236,-0.00598772056400776,-0.00704418495297432,-0.999957323074341,0.0138116711750627,-0.043039508163929,0.998977899551392,-0.247270509600639,0.180664449930191,0.95195460319519,-0.0763112679123878,0.0344644077122211,0.996488332748413,0.0423629358410835,-0.0661822035908699,0.996907889842987,0.0011730530532077,0.00137542188167572,-0.999998450279236,0.0154945170506835,0.0181995183229446,-0.999714374542236,0.0149780651554465,0.017609091475606,-0.999732792377472,0.0152960196137428,0.0179823487997055,-0.99972140789032,-0.00598772056400776,-0.00704418495297432,-0.999957323074341,0.75931704044342,-0.648141026496887,0.0578863471746445,0.0138116711750627,-0.043039508163929,0.998977899551392,0.0423629358410835,-0.0661822035908699,0.996907889842987,0.758413672447205,-0.64722204208374,0.0768923908472061,-0.0570364929735661,-0.998372197151184,-7.3826257107612e-008,0.0623729228973389,-0.998052954673767,-1.02472320406832e-007,0.0461631640791893,-0.998933970928192,-1.36733490307961e-007,-0.0410752967000008,-0.999156057834625,-8.51948840363548e-008,0.0623729228973389,-0.998052954673767,-6.74773517062022e-008,0.999905347824097,-0.0137631986290216,-4.7574339134826e-008,0.999284684658051,-0.0378192998468876,-6.53887397561448e-008,0.0461631640791893,-0.998933970928192,-6.6643316642967e-008,0.765238761901855,-0.642855882644653,0.0338527075946331,0.764132082462311,-0.645054757595062,-0.00259769451804459,0.761912167072296,-0.647552847862244,0.0128537304699421,0.760170519351959,-0.647337436676025,0.055633045732975,0.0654149129986763,-0.0597113445401192,0.996070086956024,-0.0723898336291313,0.0597419999539852,0.995585560798645,-0.0381344333291054,0.0519630126655102,0.997920691967011,0.0563217960298061,-0.0268049146980047,0.998052835464478,-0.764177322387695,0.642910480499268,0.0519541501998901,
- -0.761392772197723,0.63734757900238,0.118613481521606,-0.0381344333291054,0.0519630126655102,0.997920691967011,-0.0723898336291313,0.0597419999539852,0.995585560798645,-0.76411110162735,0.645084023475647,-0.000944395083934069,-0.767874479293823,0.640534996986389,0.00915607716888189,-0.761392772197723,0.63734757900238,0.118613481521606,-0.764177322387695,0.642910480499268,0.0519541501998901,0.00230121612548828,0.0027486823964864,-0.999993562698364,-0.00996278412640095,-0.0119469966739416,-0.999879002571106,-0.00996256247162819,-0.0119467312470078,-0.999879062175751,0.00230194581672549,0.00274947984144092,-0.999993562698364,0.765021502971649,-0.635921001434326,0.101719178259373,0.767874956130981,-0.640534520149231,-0.00915456283837557,0.764132082462311,-0.645054757595062,-0.00259769451804459,0.765238761901855,-0.642855882644653,0.0338527075946331,0.0654149129986763,-0.0597113445401192,0.996070086956024,0.0563217960298061,-0.0268049146980047,0.998052835464478,0.765021502971649,-0.635921001434326,0.101719178259373,0.765238761901855,-0.642855882644653,0.0338527075946331,0.00416082190349698,-0.0332632623612881,0.999438047409058,-0.288847088813782,0.217609494924545,0.932316184043884,-0.0723898336291313,0.0597419999539852,0.995585560798645,0.0654149129986763,-0.0597113445401192,0.996070086956024,-0.288847088813782,0.217609494924545,0.932316184043884,-0.762134194374084,0.64741587638855,-0.00207523792050779,-0.764177322387695,0.642910480499268,0.0519541501998901,-0.0723898336291313,0.0597419999539852,0.995585560798645,-0.762134194374084,0.64741587638855,-0.00207523792050779,-0.761910498142242,0.647555530071259,-0.0128098577260971,-0.76411110162735,0.645084023475647,-0.000944395083934069,-0.764177322387695,0.642910480499268,0.0519541501998901,0.0147093022242188,0.0173259172588587,-0.999741673469543,0.0147081296890974,0.0173245389014483,-0.999741792678833,0.00230121612548828,0.0027486823964864,-0.999993562698364,0.00230194581672549,0.00274947984144092,-0.999993562698364,0.760170519351959,-0.647337436676025,0.055633045732975,0.00416082190349698,-0.0332632623612881,0.999438047409058,
- 0.0654149129986763,-0.0597113445401192,0.996070086956024,0.765238761901855,-0.642855882644653,0.0338527075946331,-6.17334805497194e-008,0.765651643276215,0.643255591392517,0,0.765651643276215,0.643255531787872,-6.17334805497194e-008,0.765651702880859,0.643255472183228,-1.23466961099439e-007,0.765651643276215,0.643255591392517,4.81924780615373e-006,-0.76565021276474,-0.643257141113281,2.0956158550689e-006,-0.765651166439056,-0.643256008625031,-6.28011207481904e-007,-0.765651166439056,-0.643256068229675,2.09561903830036e-006,-0.76565021276474,-0.643257200717926,3.6427496752367e-007,0.643325865268707,-0.765592515468597,1.82136801640809e-007,0.643324196338654,-0.765593886375427,0,0.643324196338654,-0.765593886375427,1.82137483761835e-007,0.643325865268707,-0.765592515468597,-3.41664616598791e-007,0.765648305416107,0.643259465694427,-1.11099311084217e-007,0.765648007392883,0.643259882926941,-3.41664531333663e-007,0.765648007392883,0.643259882926941,-5.72229964745929e-007,0.765648245811462,0.643259525299072,-0,-0.765645802021027,-0.643262386322021,-1.18419052341778e-007,-0.765645802021027,-0.643262505531311,-2.36838104683557e-007,-0.765645742416382,-0.643262505531311,-1.18419038130924e-007,-0.765645802021027,-0.643262386322021,0,0.643179059028625,-0.765715837478638,0,0.643178641796112,-0.765716135501862,0,0.643178701400757,-0.765716195106506,0,0.643179059028625,-0.765715837478638,-6.15593478414667e-008,0.643290221691132,-0.765622437000275,6.57432906336908e-007,0.64328545331955,-0.765626490116119,1.37642518893699e-006,0.64328545331955,-0.765626490116119,6.57429154671263e-007,0.643290221691132,-0.765622496604919,-8.22477431938751e-007,0.765642046928406,0.64326685667038,-1.21745483738778e-006,0.765640377998352,0.643268823623657,-8.22478853024222e-007,0.765640437602997,0.643268823623657,-4.2750372131195e-007,0.765642106533051,0.643266916275024,-4.6487961924413e-008,0.765651643276215,0.643255531787872,0,0.765651702880859,0.643255531787872,-4.6487961924413e-008,0.765651643276215,0.643255531787872,-9.29759238488259e-008,0.765651643276215,0.643255531787872,
- 1.82445859309155e-007,-0.765630602836609,-0.643280625343323,1.01810337937991e-008,-0.765630304813385,-0.643280982971191,-1.62083622967657e-007,-0.765630304813385,-0.643280923366547,1.01811084007863e-008,-0.765630602836609,-0.643280625343323,-8.14028808804323e-008,0.643278777599335,-0.765632092952728,-4.07014404402162e-008,0.643279016017914,-0.765631973743439,0,0.643279016017914,-0.765631914138794,-4.07014404402162e-008,0.643278777599335,-0.765632092952728,5.36552278163072e-008,-0.643244802951813,0.76566070318222,-1.54482776792975e-007,-0.643246352672577,0.765659391880035,5.36555475605383e-008,-0.643246352672577,0.765659272670746,2.61793189793025e-007,-0.643244743347168,0.765660583972931,-3.36723537941452e-008,0.765653669834137,0.643253147602081,-6.73447075882905e-008,0.765653669834137,0.643253207206726,-3.36723537941452e-008,0.765653669834137,0.643253207206726,0,0.765653669834137,0.643253147602081,3.11609852587935e-007,-0.765647828578949,-0.643260061740875,1.55804869450549e-007,-0.76564747095108,-0.643260359764099,0,-0.765647530555725,-0.643260359764099,1.55804926293968e-007,-0.765647828578949,-0.64326000213623,0,0.643212020397186,-0.765688180923462,0,0.643212020397186,-0.765688121318817,0,0.643212080001831,-0.765688180923462,0,0.643212020397186,-0.765688180923462,1.20856398666547e-007,0.765648543834686,0.643259108066559,-1.75815717540218e-008,0.765648484230042,0.643259346485138,1.20856370244837e-007,0.765648424625397,0.643259346485138,2.59294353099904e-007,0.765648543834686,0.643259167671204,-1.796473441118e-007,-0.765653967857361,-0.643252670764923,-8.98236720558998e-008,-0.765654027462006,-0.643252670764923,-0,-0.765654027462006,-0.643252670764923,-8.98236720558998e-008,-0.765653967857361,-0.643252670764923,0,0.643264651298523,-0.765643954277039,-5.48737730809989e-008,0.643264710903168,-0.765643894672394,-1.09747546161998e-007,0.643264651298523,-0.765643954277039,-5.48737730809989e-008,0.643264651298523,-0.765643954277039,0.000796880340203643,-0.646027863025665,0.763313412666321,0.000561451015528291,-0.64501827955246,0.76416689157486,
- 0.000297892489470541,-0.645019829273224,0.764165759086609,0.000848193420097232,-0.646027624607086,0.763313591480255,-0.000573653203900903,0.680935561656952,-0.732343196868896,-0.000617004174273461,0.64373904466629,-0.765244960784912,-0.000881961546838284,0.64406943321228,-0.764966607093811,-0.00117394246626645,0.66829115152359,-0.743898928165436,-0.00471470504999161,0.765581965446472,0.643321216106415,-5.82076609134674e-011,0.765643239021301,0.643265545368195,5.82076609134674e-011,0.796149492263794,0.605100095272064,-0.0029851186554879,0.794531345367432,0.607215762138367,-2.32830615898294e-010,-0.643243908882141,0.765661358833313,0.000297892489470541,-0.645019829273224,0.764165759086609,0.000561451015528291,-0.64501827955246,0.76416689157486,1.52341090142727e-006,-0.643243849277496,0.765661418437958,0.00335916504263878,-0.765576720237732,-0.643335938453674,0,-0.765650987625122,-0.643256187438965,5.82076609134674e-011,-0.765651047229767,-0.64325624704361,0.00285163498483598,-0.765577912330627,-0.643336892127991,0,0.683348119258881,-0.730092763900757,0,0.643264710903168,-0.765643954277039,-0.000617004174273461,0.64373904466629,-0.765244960784912,-0.000573653203900903,0.680935561656952,-0.732343196868896,-0.0029851186554879,0.794531345367432,0.607215762138367,5.82076609134674e-011,0.796149492263794,0.605100095272064,0,0.683348119258881,-0.730092763900757,-0.000573653203900903,0.680935561656952,-0.732343196868896,0,-0.999155521392822,-0.0410907454788685,8.02500892405078e-008,-0.998933136463165,0.0461801663041115,1.60363711643186e-007,-0.998041927814484,0.062549039721489,6.9849214412443e-008,-0.998363137245178,-0.0571936033666134,7.64402869890546e-008,-0.0374821722507477,0.999297320842743,5.98784950511799e-008,-0.0127466283738613,0.999918758869171,7.89861971384198e-008,-0.998041927814484,0.062549039721489,7.82284388378685e-008,-0.998933136463165,0.0461801663041115,-5.22651681933439e-008,0.765633881092072,0.643276572227478,-1.04530336386688e-007,0.765633881092072,0.643276572227478,-5.22651681933439e-008,0.765633940696716,0.643276572227478,
- 0,0.765633881092072,0.643276572227478,0,0.64325749874115,-0.765649914741516,0,0.643267154693604,-0.765641808509827,0,0.643276870250702,-0.765633642673492,0,0.643267154693604,-0.765641808509827,-0,-0.76565033197403,-0.643256962299347,-0,-0.765650391578674,-0.643257081508636,-0,-0.76565033197403,-0.643257021903992,-0,-0.76565033197403,-0.643256962299347,0,0.643305063247681,-0.765609920024872,0,0.643305122852325,-0.765609979629517,0,0.643305063247681,-0.765610039234161,0,0.643305063247681,-0.765609920024872,-6.99701274697873e-008,0.643290042877197,-0.765622615814209,6.17309240169561e-007,0.643290042877197,-0.765622615814209,1.30458852254378e-006,0.643290042877197,-0.765622556209564,6.17309240169561e-007,0.643289983272552,-0.765622615814209,-5.75392789414764e-007,0.765660107135773,0.643245398998261,-1.15078546514269e-006,0.765660107135773,0.643245339393616,-5.75392789414764e-007,0.765660166740417,0.643245398998261,0,0.765660107135773,0.643245339393616,0,0.643243670463562,-0.765661537647247,0,0.643243432044983,-0.765661716461182,0,0.643243134021759,-0.765661954879761,0,0.643243432044983,-0.765661716461182,-4.41655245708716e-008,0.765643060207367,0.643265664577484,0,0.765643119812012,0.643265724182129,-4.41655245708716e-008,0.765643060207367,0.643265664577484,-8.83310491417433e-008,0.765643060207367,0.643265664577484,0,0.643261790275574,-0.765646278858185,0,0.64326399564743,-0.765644550323486,0,0.643266141414642,-0.765642642974854,0,0.64326399564743,-0.765644550323486,-1.85789360784838e-007,-0.76564610004425,-0.643262147903442,-1.70382861597318e-007,-0.765645980834961,-0.643262147903442,-1.54976433464071e-007,-0.765646040439606,-0.643262147903442,-1.70382875808173e-007,-0.76564610004425,-0.643262147903442,-7.78458471017984e-008,0.643238723278046,-0.765665709972382,-3.89229235508992e-008,0.643238663673401,-0.765665709972382,0,0.64323878288269,-0.765665769577026,-3.89229235508992e-008,0.643238723278046,-0.765665709972382,-1.51200367781712e-007,-0.643198490142822,0.765699446201324,-1.48021982226965e-007,-0.643198490142822,0.765699565410614,
- -1.51200367781712e-007,-0.643198490142822,0.765699565410614,-1.54378739125605e-007,-0.643198490142822,0.765699446201324,-1.06442399783191e-007,0.765638470649719,0.643271148204803,-6.48718767592982e-008,0.765638470649719,0.643271148204803,-1.06442399783191e-007,0.765638530254364,0.643271148204803,-1.48012915701656e-007,0.765638470649719,0.643271148204803,0,0.643245339393616,-0.765660107135773,0,0.643258333206177,-0.765649199485779,0,0.643271386623383,-0.765638291835785,0,0.643258333206177,-0.765649199485779,-0,-0.765660285949707,-0.643245160579681,-0,-0.765660285949707,-0.643245100975037,-0,-0.765660285949707,-0.643245160579681,-0,-0.765660285949707,-0.643245160579681,0,0.643192172050476,-0.765704870223999,0,0.643192231655121,-0.765704870223999,0,0.643192231655121,-0.765704810619354,0,0.643192172050476,-0.765704870223999,1.99611534412725e-007,0.76564347743988,0.643265247344971,3.99223097247159e-007,0.76564347743988,0.643265247344971,1.99611548623579e-007,0.76564347743988,0.643265187740326,7.105427357601e-015,0.765643417835236,0.643265247344971,0,0.643268525600433,-0.765640616416931,0,0.643266558647156,-0.765642285346985,0,0.643264532089233,-0.765644013881683,0,0.643266558647156,-0.76564234495163,-1.34423189024346e-007,-0.765640020370483,-0.643269300460815,-1.81283610345417e-007,-0.765640020370483,-0.643269300460815,-2.28144074299053e-007,-0.765640020370483,-0.643269300460815,-1.81283610345417e-007,-0.765640020370483,-0.643269300460815,0,0.643326282501221,-0.765592098236084,1.2380144198687e-007,0.643326222896576,-0.765592157840729,2.4760294081716e-007,0.643326282501221,-0.765592157840729,1.23801456197725e-007,0.643326282501221,-0.765592157840729,9.90704279502097e-007,0.765634119510651,0.643276393413544,1.98140833163052e-006,0.765634059906006,0.643276393413544,9.90704279502097e-007,0.765634059906006,0.643276393413544,-1.4210854715202e-014,0.765634059906006,0.643276393413544,0,0.643254637718201,-0.765652298927307,0,0.643266439437866,-0.765642404556274,0,0.643278300762177,-0.765632450580597,0,0.643266439437866,-0.765642404556274,
- -0,-0.765652239322662,-0.643254816532135,-1.00858486007382e-007,-0.765652298927307,-0.643254816532135,-2.01716943593055e-007,-0.765652239322662,-0.643254816532135,-1.00858471796528e-007,-0.765652239322662,-0.643254816532135,0,0.643243014812469,-0.76566219329834,-4.39339714830567e-007,0.643243014812469,-0.765662133693695,-8.78679543347971e-007,0.643242955207825,-0.76566219329834,-4.39339800095695e-007,0.64324289560318,-0.76566219329834,3.8215492281779e-007,0.643232822418213,-0.765670657157898,6.76293154810992e-008,0.643232822418213,-0.765670716762543,-2.46896348699011e-007,0.643232822418213,-0.765670776367188,6.76292941648171e-008,0.643232762813568,-0.765670776367188,-8.28234760774649e-007,0.765670239925385,0.643233418464661,-1.64422476700565e-006,0.765670239925385,0.643233418464661,-8.2823470393123e-007,0.76567018032074,0.643233418464661,-1.22447794126401e-008,0.76567018032074,0.643233358860016,0,0.643268048763275,-0.765641152858734,0,0.643250823020935,-0.765655517578125,0,0.643233597278595,-0.765670001506805,0,0.643250823020935,-0.765655517578125,-4.31756426166885e-008,0.765649020671844,0.643258690834045,-4.1184975430042e-008,0.765649020671844,0.643258631229401,-4.31756426166885e-008,0.765649080276489,0.643258631229401,-4.51663026979077e-008,0.765649020671844,0.643258690834045,0,0.643270075321198,-0.765639364719391,0,0.643264412879944,-0.765644133090973,0,0.643258690834045,-0.765648901462555,0,0.643264412879944,-0.765644133090973,-6.45046327463206e-009,-0.765640676021576,-0.643268525600433,-2.37459090612901e-007,-0.765640676021576,-0.643268585205078,-4.68467675318607e-007,-0.765640676021576,-0.643268585205078,-2.37459076402047e-007,-0.765640616416931,-0.643268585205078,-8.72399596119067e-007,0.643181800842285,-0.765713512897491,-4.56887647715121e-007,0.64318186044693,-0.765713572502136,-4.13756602313242e-008,0.64318186044693,-0.765713572502136,-4.56887647715121e-007,0.643181920051575,-0.765713512897491,-8.31589019867351e-008,-0.643213391304016,0.765686988830566,-8.21971184450376e-008,-0.643213331699371,0.765687048435211,
- -8.31589019867351e-008,-0.643213391304016,0.765686988830566,-8.41206855284327e-008,-0.643213391304016,0.765686988830566,1.87131448114997e-007,0.765646934509277,0.643261134624481,4.56459758879646e-007,0.765646994113922,0.643261134624481,1.87131462325851e-007,0.765646994113922,0.643261134624481,-8.2196848438798e-008,0.765646934509277,0.643261075019836,0,0.643265128135681,-0.76564347743988,0,0.643264174461365,-0.765644311904907,0,0.643263220787048,-0.765645086765289,0,0.643264174461365,-0.765644311904907,-8.41227958403579e-008,-0.765643239021301,-0.643265426158905,-1.5618401505435e-007,-0.765643239021301,-0.64326548576355,-2.2824524137377e-007,-0.765643298625946,-0.64326536655426,-1.56184029265205e-007,-0.765643298625946,-0.64326548576355,1.26332167837973e-007,0.643308699131012,-0.765606939792633,-2.31155937058247e-007,0.643308699131012,-0.765606999397278,-5.88644070376176e-007,0.643308699131012,-0.765606939792633,-2.31155922847393e-007,0.643308758735657,-0.765606939792633,5.9648883166119e-008,0.765647351741791,0.643260657787323,-8.64358273844346e-009,0.765647411346436,0.643260598182678,5.9648883166119e-008,0.765647351741791,0.643260657787323,1.27941348182503e-007,0.765647292137146,0.643260657787323,0,0.643256604671478,-0.765650629997253,0,0.643258571624756,-0.7656489610672,0,0.643260598182678,-0.765647292137146,0,0.643258571624756,-0.7656489610672,7.23724724593922e-008,-0.76564884185791,-0.643258810043335,2.62430575048711e-007,-0.76564884185791,-0.643258810043335,4.52488620794611e-007,-0.76564884185791,-0.64325875043869,2.62430546627002e-007,-0.76564884185791,-0.643258810043335,3.94608775877714e-007,0.643321335315704,-0.765596389770508,1.62572362683022e-007,0.643321335315704,-0.765596389770508,-6.94639936682506e-008,0.64332127571106,-0.765596330165863,1.62572376893877e-007,0.64332127571106,-0.765596330165863,1.58502828639939e-007,0.765649855136871,0.643257558345795,3.51528967712511e-007,0.765649855136871,0.643257617950439,1.58502857061649e-007,0.765649914741516,0.643257617950439,-3.45232713527821e-008,0.765649914741516,0.643257617950439,
- 0,0.643259465694427,-0.765648245811462,0,0.643259525299072,-0.765648245811462,0,0.643259644508362,-0.765648126602173,0,0.643259525299072,-0.765648245811462,3.86302644983516e-007,-0.765649855136871,-0.643257677555084,1.27927464177446e-007,-0.765649855136871,-0.643257737159729,-1.30447745050333e-007,-0.765649855136871,-0.643257737159729,1.27927478388301e-007,-0.765649735927582,-0.643257737159729,0,0.643180072307587,-0.765715062618256,-2.47353369786651e-007,0.643180072307587,-0.765715003013611,-4.94706739573303e-007,0.643180072307587,-0.765715003013611,-2.47353341364942e-007,0.643180072307587,-0.765715003013611,-6.95041393328211e-008,0.643229305744171,-0.765673637390137,1.67135993933698e-007,0.643229305744171,-0.765673637390137,4.03776141411072e-007,0.643229305744171,-0.765673637390137,1.67136022355407e-007,0.643229246139526,-0.765673696994781,-1.47044175946576e-007,0.765641927719116,0.643267095088959,-4.01633855062755e-007,0.765641927719116,0.643267035484314,-1.47044175946576e-007,0.765641927719116,0.643267095088959,1.07545545802168e-007,0.765641987323761,0.643267095088959,0,0.643249690532684,-0.765656530857086,0,0.64325749874115,-0.765649914741516,0,0.64326536655426,-0.765643298625946,0,0.64325749874115,-0.765649914741516,-5.26098737907432e-008,0.765642940998077,0.643265783786774,-1.42391574087242e-008,0.765643000602722,0.643265724182129,-5.26098773434569e-008,0.765643000602722,0.643265783786774,-9.09805848436918e-008,0.765642940998077,0.643265783786774,0,0.64326012134552,-0.765647709369659,0,0.643263041973114,-0.765645265579224,0,0.643265962600708,-0.765642762184143,0,0.643263041973114,-0.765645265579224,2.76847345048736e-007,-0.76564621925354,-0.643262028694153,6.30734575679526e-010,-0.76564610004425,-0.643262028694153,1.79780869302704e-007,-0.76564610004425,-0.643262028694153,6.35147614502785e-007,-0.76564621925354,-0.643262028694153,2.12136384902806e-007,-0.76564610004425,-0.643262028694153,8.0653956047172e-007,0.643268525600433,-0.765640676021576,3.88965617048598e-007,0.643268465995789,-0.765640735626221,-2.86083832179429e-008,0.643268465995789,-0.765640676021576,
- 3.88965588626888e-007,0.643268525600433,-0.765640676021576,-3.05357104934956e-007,-0.643234133720398,0.765669643878937,-5.5292690603892e-007,-0.643234133720398,0.765669643878937,-3.05357104934956e-007,-0.643234133720398,0.765669643878937,-5.77873535689832e-008,-0.643234074115753,0.765669584274292,-5.13959292902655e-008,0.765644788742065,0.643263638019562,3.23050358019827e-007,0.765644729137421,0.643263638019562,-5.13959363956928e-008,0.765644788742065,0.643263638019562,-4.25842245022068e-007,0.765644788742065,0.643263638019562,0,0.643257558345795,-0.765649855136871,0,0.643262624740601,-0.765645623207092,0,0.643267631530762,-0.765641450881958,0,0.643262624740601,-0.765645623207092,-5.7787488572103e-008,-0.765649914741516,-0.64325749874115,-5.62818343041727e-008,-0.765650033950806,-0.64325749874115,-5.47761729308149e-008,-0.765649974346161,-0.64325749874115,-5.62818271987453e-008,-0.765649914741516,-0.64325749874115,7.10542820463395e-015,0.643163859844208,-0.765728712081909,-2.08333190698795e-007,0.643163859844208,-0.765728652477264,-4.16666352975881e-007,0.643163919448853,-0.765728652477264,-2.0833320490965e-007,0.643163859844208,-0.765728712081909,-1.51298262807131e-008,0.765651524066925,0.643255591392517,-1.512982805707e-008,0.765651643276215,0.643255591392517,-1.512982805707e-008,0.765651643276215,0.643255591392517,-1.51298262807131e-008,0.765651524066925,0.643255591392517,0,0.643256604671478,-0.765650629997253,0,0.643255949020386,-0.765651166439056,0,0.643255352973938,-0.765651702880859,0,0.643255949020386,-0.765651226043701,-1.21038254974337e-007,-0.765650153160095,-0.64325737953186,-1.21038240763482e-007,-0.76565021276474,-0.643257141113281,-1.21038240763482e-007,-0.76565021276474,-0.643257200717926,-1.21038254974337e-007,-0.765650153160095,-0.64325737953186,-3.03975653537236e-008,0.643326163291931,-0.765592277050018,-6.07950099151822e-008,0.643325865268707,-0.765592515468597,-9.11924473712133e-008,0.643325865268707,-0.765592515468597,-6.07950028097548e-008,0.643326163291931,-0.765592277050018,-6.07957701959094e-008,-0.643338978290558,0.765581548213959,
- -6.07957773013368e-008,-0.643337905406952,0.765582323074341,-6.07957773013368e-008,-0.643337905406952,0.765582323074341,-6.07957773013368e-008,-0.643338918685913,0.765581488609314,-6.05198806624685e-008,0.765648305416107,0.643259406089783,-4.53899176022787e-008,0.765648305416107,0.643259465694427,-3.02599474366616e-008,0.765648245811462,0.643259525299072,-4.53899140495651e-008,0.765648305416107,0.643259406089783,0,0.643262267112732,-0.765645921230316,0,0.643260955810547,-0.765647053718567,0,0.643259644508362,-0.765648186206818,0,0.643260955810547,-0.765647053718567,-6.05196532887931e-008,-0.765645861625671,-0.643262386322021,-9.07794373006254e-008,-0.765645802021027,-0.643262386322021,-1.21039221312458e-007,-0.765645802021027,-0.643262386322021,-9.07794373006254e-008,-0.765645861625671,-0.643262386322021,0,0.64317911863327,-0.765715777873993,0,0.643179059028625,-0.765715837478638,0,0.643179059028625,-0.765715837478638,0,0.64317911863327,-0.765715777873993,0,-0.643195629119873,0.76570188999176,0,-0.643196046352386,0.765701651573181,0,-0.643196046352386,0.765701651573181,0,-0.643195629119873,0.76570188999176,-6.8082499637967e-008,0.643291771411896,-0.765621185302734,-6.666412133427e-008,0.643290221691132,-0.765622437000275,-6.52457430305731e-008,0.643290221691132,-0.765622496604919,-6.666412133427e-008,0.643291771411896,-0.765621185302734,-7.56502416265903e-009,0.765642642974854,0.643266320228577,-1.13475344676317e-008,0.765642046928406,0.64326685667038,-1.51300429962475e-008,0.765642106533051,0.643266916275024,-1.13475362439885e-008,0.765642642974854,0.643266320228577,-1.21038212341773e-007,-0.765652298927307,-0.643254816532135,-1.21038212341773e-007,-0.765652418136597,-0.643254697322845,-1.21038212341773e-007,-0.765652418136597,-0.643254697322845,-1.21038198130918e-007,-0.765652239322662,-0.64325475692749,0,0.643255174160004,-0.765651881694794,0,0.643260717391968,-0.765647172927856,0,0.643266320228577,-0.765642523765564,0,0.643260717391968,-0.765647172927856,-6.07915637829137e-008,-0.643341243267059,0.765579521656036,
- -6.07915708883411e-008,-0.643341243267059,0.765579640865326,-6.07915637829137e-008,-0.643341243267059,0.765579640865326,-6.07915637829137e-008,-0.643341243267059,0.765579640865326,-1.51296966066639e-008,0.765651643276215,0.643255472183228,-3.78242290821618e-008,0.765651643276215,0.643255531787872,-6.0518758004946e-008,0.765651643276215,0.643255531787872,-3.78242290821618e-008,0.765651643276215,0.643255472183228,0,0.643280327320099,-0.765630722045898,0,0.643267869949341,-0.765641152858734,0,0.643255472183228,-0.76565158367157,0,0.643267869949341,-0.765641152858734,-1.21039704481518e-007,-0.765630602836609,-0.643280506134033,-1.21039704481518e-007,-0.765630602836609,-0.643280625343323,-1.21039704481518e-007,-0.765630602836609,-0.643280625343323,-1.21039704481518e-007,-0.765630602836609,-0.643280506134033,-9.1184155337487e-008,0.64327871799469,-0.765632212162018,-6.07894747872706e-008,0.643278777599335,-0.765632092952728,-3.03948013424815e-008,0.643278777599335,-0.765632092952728,-6.07894747872706e-008,0.64327871799469,-0.765632212162018,0,-0.643217325210571,0.765683710575104,0,-0.643216848373413,0.765684068202972,0,-0.643216848373413,0.765684068202972,0,-0.643217325210571,0.765683650970459,-1.21037686540149e-007,-0.643244206905365,0.765661180019379,-9.07783430648124e-008,-0.643244802951813,0.76566070318222,-6.05189995894762e-008,-0.643244743347168,0.765660583972931,-9.07783430648124e-008,-0.643244206905365,0.765661180019379,-3.02598941459564e-008,0.765653669834137,0.643253207206726,-4.53898323371504e-008,0.765653669834137,0.643253147602081,-6.05197669756308e-008,0.765653669834137,0.643253147602081,-4.53898323371504e-008,0.765653669834137,0.643253207206726,0,0.643259882926941,-0.765647947788239,0,0.643256545066834,-0.765650808811188,0,0.643253147602081,-0.765653550624847,0,0.643256545066834,-0.765650749206543,-6.05191345925959e-008,-0.765647947788239,-0.643259882926941,-6.05191345925959e-008,-0.765647828578949,-0.643260061740875,-6.05191274871686e-008,-0.765647828578949,-0.64326000213623,-6.05191345925959e-008,-0.765647947788239,-0.643259882926941,
- 0,0.643211960792542,-0.765688180923462,0,0.643212020397186,-0.765688180923462,0,0.643212020397186,-0.765688180923462,0,0.643211960792542,-0.765688180923462,-1.94795433117179e-008,0.765648603439331,0.643259048461914,-1.36308216269754e-007,0.765648543834686,0.643259108066559,-2.53136903438644e-007,0.765648543834686,0.643259167671204,-1.36308230480608e-007,0.765648603439331,0.643259108066559,0,0.643252074718475,-0.765654444694519,0,0.643255233764648,-0.765651762485504,0,0.643258452415466,-0.765649080276489,0,0.643255233764648,-0.765651762485504,-1.55836815451949e-007,-0.765653908252716,-0.643252670764923,-1.55836829662803e-007,-0.765653967857361,-0.643252670764923,-1.55836829662803e-007,-0.765653967857361,-0.643252670764923,-1.55836815451949e-007,-0.765653908252716,-0.643252670764923,-3.03988230143659e-008,0.643264651298523,-0.765643954277039,-6.07975252364668e-008,0.643264651298523,-0.765643954277039,-9.11962274585676e-008,0.643264651298523,-0.765643954277039,-6.07975252364668e-008,0.643264651298523,-0.765643954277039,-6.07934751428729e-008,-0.643240928649902,0.765663802623749,3.73571147349594e-008,-0.64324152469635,0.765663385391235,1.35507733034501e-007,-0.643241584300995,0.765663385391235,3.73570436806858e-008,-0.643241047859192,0.765663862228394,0,0.768639981746674,0.639681577682495,0,0.768640041351318,0.63968163728714,0,0.768640041351318,0.639681577682495,0,0.643330514431,-0.765588581562042,0,0.643330454826355,-0.765588641166687,0,0.643330514431,-0.765588581562042,0,0.643330514431,-0.765588581562042,0,-0.643108248710632,0.765775322914124,0,-0.643108189105988,0.765775263309479,0,-0.643108189105988,0.765775322914124,0,-0.643108248710632,0.765775322914124,0,0.76564759016037,0.643260359764099,0,0.765647530555725,0.643260359764099,0,0.765647530555725,0.643260359764099,0,0.76564759016037,0.643260359764099,0,0.643298327922821,-0.765615582466125,0,0.643279194831848,-0.765631675720215,0,0.643260061740875,-0.765647768974304,0,0.643279194831848,-0.765631675720215,0,-0.765616893768311,-0.643296778202057,9.53673691128643e-007,-0.765616893768311,-0.643296837806702,
- 1.90734760963096e-006,-0.765616953372955,-0.643296718597412,9.53673747972061e-007,-0.765616893768311,-0.643296778202057,-1.60252329806099e-006,0.643259227275848,-0.765648603439331,-8.01261592187075e-007,0.643259167671204,-0.765648603439331,0,0.643259108066559,-0.765648543834686,-8.01261592187075e-007,0.643259167671204,-0.765648603439331,0,0.765658736228943,0.643247127532959,0,0.765658557415009,0.643247187137604,0,0.765658617019653,0.643247127532959,0,0.765658736228943,0.643247127532959,0,0.643254935741425,-0.765652060508728,0,0.643251180648804,-0.765655279159546,0,0.643247365951538,-0.765658438205719,0,0.643251180648804,-0.765655338764191,-0,-0.765651285648346,-0.643255949020386,-0,-0.765651226043701,-0.643255889415741,-0,-0.765651226043701,-0.643255949020386,-0,-0.765651285648346,-0.643255949020386,0,0.643302440643311,-0.765612185001373,-6.90065959929598e-008,0.643302500247955,-0.765612244606018,-1.3801319198592e-007,0.643302500247955,-0.765612185001373,-6.90065959929598e-008,0.643302440643311,-0.765612185001373,0.0118922954425216,-0.76555609703064,-0.643259227275848,-0.0119307767599821,-0.765568614006042,-0.643243670463562,-0.00552979949861765,-0.765623152256012,-0.643265724182129,0.00888690166175365,-0.765586316585541,-0.643271863460541,0.00304373982362449,0.730981290340424,0.682390749454498,0.0102154342457652,0.79735654592514,0.603422045707703,-0.0143413469195366,0.796828329563141,0.604035496711731,-0.0074846874922514,0.729958355426788,0.683450758457184,0,-0.643247485160828,0.765658318996429,0,-0.643324017524719,0.765594005584717,0,-0.643336653709412,0.765583455562592,0,-0.643259763717651,0.765648007392883,0,-0.64324676990509,0.765658915042877,0,-0.643291890621185,0.76562112569809,-0.00172207644209266,0.683510899543762,-0.729938387870789,-0.00113756454084069,0.643277168273926,-0.765632688999176,-0.00588318286463618,0.64326274394989,-0.765622913837433,-0.00220931274816394,0.680553376674652,-0.732695162296295,-0.000907364534214139,-0.603507459163666,0.797356903553009,0.00250823074020445,-0.64325362443924,0.765649080276489,
- -0.00314943096600473,-0.643243014812469,0.76565557718277,-0.000275175087153912,-0.601653218269348,0.798757433891296,-0.00333312130533159,-0.728897511959076,-0.684614777565002,-0.00183187064249069,-0.79591178894043,-0.605409860610962,-0.0249446034431458,-0.788160920143127,-0.61496365070343,-0.0221543982625008,-0.679587960243225,-0.733259499073029,0,0.643595218658447,-0.76536613702774,0,0.644658446311951,-0.764470756053925,0,0.6439169049263,-0.765095412731171,0,0.643215537071228,-0.765685141086578,0,0.643273413181305,-0.765636563301086,0,0.643290579319,-0.765622138977051,0.00183389324229211,-0.681512892246246,0.731803894042969,0.000300486601190642,-0.643243193626404,0.765661954879761,-0.000438016839325428,-0.643238246440887,0.765666007995605,0.00139804277569056,-0.666655004024506,0.745365083217621,0.00856672413647175,-0.765628457069397,-0.643226087093353,-0.00670017953962088,-0.765634536743164,-0.643240869045258,-0.00669979583472013,-0.765634596347809,-0.643240809440613,0.00856839492917061,-0.765628397464752,-0.643226087093353,-0.00856644101440907,0.765620589256287,0.643235385417938,0.00670050363987684,0.765623986721039,0.64325350522995,0.00672665424644947,0.796742379665375,0.604281663894653,-0.00848355703055859,0.796127319335938,0.605069637298584,0,0.642457783222198,-0.766321063041687,0,0.621306896209717,-0.783567428588867,0,0.621728658676147,-0.783232629299164,0,0.64328271150589,-0.765628755092621,0,0.628690183162689,-0.777655899524689,0.0010651231277734,0.683072686195374,-0.730349600315094,0.000951412250287831,0.643258929252625,-0.765648245811462,0.0014570850180462,0.643270492553711,-0.765637636184692,0.00099746196065098,0.683352112770081,-0.730088353157043,-0.000443316588643938,-0.643244981765747,0.765660405158997,-0.00146161566954106,-0.643249690532684,0.765655040740967,-0.00146204233169556,-0.643249690532684,0.765655100345612,-0.000952988630160689,-0.643242537975311,0.765661895275116,-0.000907364534214139,-0.603507459163666,0.797356903553009,-0.000275175087153912,-0.601653218269348,0.798757433891296,0.00304373982362449,0.730981290340424,0.682390749454498,
- -0.0074846874922514,0.729958355426788,0.683450758457184,-0.0143413469195366,0.796828329563141,0.604035496711731,0.0102154342457652,0.79735654592514,0.603422045707703,-0.00172207644209266,0.683510899543762,-0.729938387870789,-0.00220931274816394,0.680553376674652,-0.732695162296295,-0.00848355703055859,0.796127319335938,0.605069637298584,0.00672665424644947,0.796742379665375,0.604281663894653,0.0010651231277734,0.683072686195374,-0.730349600315094,0.00099746196065098,0.683352112770081,-0.730088353157043,-0.0074846874922514,0.729958355426788,0.683450758457184,-0.0143413469195366,0.796828329563141,0.604035496711731,-0.0420446880161762,0.784644603729248,0.618518471717834,-0.0285584703087807,0.667816758155823,0.743777692317963,-0.00588318286463618,0.64326274394989,-0.765622913837433,-0.0179479718208313,0.642541348934174,-0.766040802001953,-0.00819066632539034,0.66444605588913,-0.747291386127472,-0.00220931274816394,0.680553376674652,-0.732695162296295,-0.00123806041665375,0.731387972831726,0.681960463523865,-0.00123717729002237,0.797832548618317,0.602877855300903,0.0102154342457652,0.79735654592514,0.603422045707703,0.00304373982362449,0.730981290340424,0.682390749454498,-0.000275175087153912,-0.601653218269348,0.798757433891296,-0.00117838720325381,-0.601391434669495,0.798953711986542,-0.00123806041665375,0.731387972831726,0.681960463523865,0.00304373982362449,0.730981290340424,0.682390749454498,-0.00314943096600473,-0.643243014812469,0.76565557718277,-0.00143533037044108,-0.643294155597687,0.765617847442627,-0.00117838720325381,-0.601391434669495,0.798953711986542,-0.000275175087153912,-0.601653218269348,0.798757433891296,-0.0119307767599821,-0.765568614006042,-0.643243670463562,-0.00140674156136811,-0.76565957069397,-0.643244564533234,-0.00139314448460937,-0.76565957069397,-0.643244564533234,-0.00552979949861765,-0.765623152256012,-0.643265724182129,-0.00123840617015958,0.683310925960541,-0.730126440525055,-0.00142159766983241,0.643253326416016,-0.765652120113373,-0.00113756454084069,0.643277168273926,-0.765632688999176,
- -0.00172207644209266,0.683510899543762,-0.729938387870789,0.0102154342457652,0.79735654592514,0.603422045707703,-0.00123717729002237,0.797832548618317,0.602877855300903,-0.00123840617015958,0.683310925960541,-0.730126440525055,-0.00172207644209266,0.683510899543762,-0.729938387870789,-0.00794137176126242,-0.732217609882355,-0.681024491786957,-0.00464024720713496,-0.798501670360565,-0.601974904537201,0.0156187182292342,-0.797693192958832,-0.602861106395721,0.0155601669102907,-0.731277048587799,-0.681903004646301,0.00230604922398925,0.601581692695618,-0.798807978630066,0.000358163961209357,0.600730180740356,-0.79945182800293,-0.00794137176126242,-0.732217609882355,-0.681024491786957,0.0155601669102907,-0.731277048587799,-0.681903004646301,0.000647157954517752,0.643267214298248,-0.765641570091248,-0.00159718794748187,0.643256485462189,-0.765649199485779,0.000358163961209357,0.600730180740356,-0.79945182800293,0.00230604922398925,0.601581692695618,-0.798807978630066,-0.0161909740418196,0.765556871891022,0.643164455890656,0.00441382639110088,0.765632510185242,0.643263220787048,0.00717667769640684,0.765623509883881,0.643249034881592,-0.0149495135992765,0.765570282936096,0.643178522586823,-0.00102957885246724,-0.683141648769379,0.730285286903381,0.00160459498874843,-0.643239080905914,0.765663683414459,-0.000647635257337242,-0.64325088262558,0.765655279159546,-0.00193666433915496,-0.683223068714142,0.730207204818726,0.0156187182292342,-0.797693192958832,-0.602861106395721,-0.00464024720713496,-0.798501670360565,-0.601974904537201,-0.00102957885246724,-0.683141648769379,0.730285286903381,-0.00193666433915496,-0.683223068714142,0.730207204818726,-0.0351338386535645,-0.729661762714386,-0.682905077934265,-0.0312966853380203,-0.796686053276062,-0.603582561016083,-0.00464024720713496,-0.798501670360565,-0.601974904537201,-0.00794137176126242,-0.732217609882355,-0.681024491786957,0.000358163961209357,0.600730180740356,-0.79945182800293,-0.0081997225061059,0.60243034362793,-0.798129379749298,-0.0351338386535645,-0.729661762714386,-0.682905077934265,
- -0.00794137176126242,-0.732217609882355,-0.681024491786957,-0.00159718794748187,0.643256485462189,-0.765649199485779,-0.00953736621886492,0.64348042011261,-0.765403151512146,-0.0081997225061059,0.60243034362793,-0.798129379749298,0.000358163961209357,0.600730180740356,-0.79945182800293,0.00441382639110088,0.765632510185242,0.643263220787048,0.0323875658214092,0.765430390834808,0.642703115940094,0.0351189337670803,0.765376746654511,0.642623782157898,0.00717667769640684,0.765623509883881,0.643249034881592,0.0043129944242537,-0.683675289154053,0.729773581027985,0.00955089088529348,-0.643440067768097,0.765436947345734,0.00160459498874843,-0.643239080905914,0.765663683414459,-0.00102957885246724,-0.683141648769379,0.730285286903381,-0.00464024720713496,-0.798501670360565,-0.601974904537201,-0.0312966853380203,-0.796686053276062,-0.603582561016083,0.0043129944242537,-0.683675289154053,0.729773581027985,-0.00102957885246724,-0.683141648769379,0.730285286903381,0.0155601669102907,-0.731277048587799,-0.681903004646301,0.0156187182292342,-0.797693192958832,-0.602861106395721,-0.00183187064249069,-0.79591178894043,-0.605409860610962,-0.00333312130533159,-0.728897511959076,-0.684614777565002,-0.00216295197606087,0.603941798210144,-0.797025561332703,0.00230604922398925,0.601581692695618,-0.798807978630066,0.0155601669102907,-0.731277048587799,-0.681903004646301,-0.00333312130533159,-0.728897511959076,-0.684614777565002,-0.000301711173960939,0.643255889415741,-0.765651166439056,0.000647157954517752,0.643267214298248,-0.765641570091248,0.00230604922398925,0.601581692695618,-0.798807978630066,-0.00216295197606087,0.603941798210144,-0.797025561332703,-0.00109978416003287,0.765639901161194,0.643268585205078,-0.0161909740418196,0.765556871891022,0.643164455890656,-0.0149495135992765,0.765570282936096,0.643178522586823,0.0103036407381296,0.765588939189911,0.643247485160828,-0.00193666433915496,-0.683223068714142,0.730207204818726,-0.000647635257337242,-0.64325088262558,0.765655279159546,0.000300486601190642,-0.643243193626404,0.765661954879761,
- 0.00183389324229211,-0.681512892246246,0.731803894042969,-0.00183187064249069,-0.79591178894043,-0.605409860610962,0.0156187182292342,-0.797693192958832,-0.602861106395721,-0.00193666433915496,-0.683223068714142,0.730207204818726,0.00183389324229211,-0.681512892246246,0.731803894042969,0.00429068692028522,0.765637397766113,0.643258094787598,-0.00892418064177036,0.765603005886078,0.643251419067383,-0.00672791618853807,0.796565234661102,0.604515135288239,0.00424127373844385,0.795753598213196,0.605605721473694,-0.0127766756340861,-0.643276154994965,0.765527606010437,0.000906204921193421,-0.64325088262558,0.765654981136322,0.000906305154785514,-0.643251001834869,0.765654921531677,-0.0264289807528257,-0.643196523189545,0.765244901180267,-0.0042909081093967,-0.765649676322937,-0.643243491649628,0.00668754940852523,-0.765841424465179,-0.642994701862335,0.00668720062822104,-0.765839159488678,-0.642997443675995,-0.00429190462455153,-0.765649735927582,-0.643243491649628,0.00664774142205715,0.683946490287781,-0.729501843452454,0.0261504352092743,0.643219232559204,-0.765235424041748,-0.000904602464288473,0.643265783786774,-0.765642464160919,-0.000672283349558711,0.683623373508453,-0.729834735393524,0.00424127373844385,0.795753598213196,0.605605721473694,-0.00672791618853807,0.796565234661102,0.604515135288239,0.00664774142205715,0.683946490287781,-0.729501843452454,-0.000672283349558711,0.683623373508453,-0.729834735393524,0.00670050363987684,0.765623986721039,0.64325350522995,0.00429068692028522,0.765637397766113,0.643258094787598,0.00424127373844385,0.795753598213196,0.605605721473694,0.00672665424644947,0.796742379665375,0.604281663894653,0.000906204921193421,-0.64325088262558,0.765654981136322,-0.000443316588643938,-0.643244981765747,0.765660405158997,-0.000952988630160689,-0.643242537975311,0.765661895275116,0.000906305154785514,-0.643251001834869,0.765654921531677,-0.00670017953962088,-0.765634536743164,-0.643240869045258,-0.0042909081093967,-0.765649676322937,-0.643243491649628,-0.00429190462455153,-0.765649735927582,-0.643243491649628,
- -0.00669979583472013,-0.765634596347809,-0.643240809440613,-0.000672283349558711,0.683623373508453,-0.729834735393524,-0.000904602464288473,0.643265783786774,-0.765642464160919,0.000951412250287831,0.643258929252625,-0.765648245811462,0.0010651231277734,0.683072686195374,-0.730349600315094,0.00672665424644947,0.796742379665375,0.604281663894653,0.00424127373844385,0.795753598213196,0.605605721473694,-0.000672283349558711,0.683623373508453,-0.729834735393524,0.0010651231277734,0.683072686195374,-0.730349600315094,-0.00892418064177036,0.765603005886078,0.643251419067383,0,0.765640199184418,0.643269181251526,-0,0.796313881874084,0.604883670806885,-0.00672791618853807,0.796565234661102,0.604515135288239,0,-0.643240749835968,0.765664100646973,-0.0127766756340861,-0.643276154994965,0.765527606010437,-0.0264289807528257,-0.643196523189545,0.765244901180267,-0.0273026451468468,-0.643000960350037,0.765378654003143,0.00668754940852523,-0.765841424465179,-0.642994701862335,-2.91857868432999e-005,-0.765990972518921,-0.642851412296295,-2.89939343929291e-005,-0.765990912914276,-0.64285135269165,0.00668720062822104,-0.765839159488678,-0.642997443675995,0,0.685599386692047,-0.727979063987732,0.027022697031498,0.6430304646492,-0.765363752841949,0.0261504352092743,0.643219232559204,-0.765235424041748,0.00664774142205715,0.683946490287781,-0.729501843452454,-0.00672791618853807,0.796565234661102,0.604515135288239,-0,0.796313881874084,0.604883670806885,0,0.685599386692047,-0.727979063987732,0.00664774142205715,0.683946490287781,-0.729501843452454,1.39170062141147e-008,0.00255742622539401,0.999996781349182,4.63083260626718e-008,-0.0374821722507477,0.999297320842743,5.67707552079355e-008,-0.0387747772037983,0.999248087406158,3.47924995480753e-008,0.00255743088200688,0.999996781349182,9.94221593941802e-008,-0.0425863228738308,-0.999092757701874,1.1133459310031e-007,-0.00255059148184955,-0.999996840953827,1.1133459310031e-007,-0.00255059148184955,-0.999996840953827,9.94714781654693e-008,-0.0438785813748837,-0.999036908149719,-0,0.999996721744537,-0.00255316868424416,
- -0,0.999996781349182,-0.00254491064697504,-0,0.999996781349182,-0.0025655897334218,-0,0.999996602535248,-0.00261094560846686,-0,0.999996721744537,-0.0025800580624491,-0,0.999996781349182,-0.00254633068107069,3.80138942546182e-007,0.999996781349182,-0.00255729816854,2.53426122753808e-007,0.999996781349182,-0.00255729816854,1.26713331383144e-007,0.999996781349182,-0.00255729816854,2.53426122753808e-007,0.999996781349182,-0.00255729816854,1.03494699033035e-007,-0.999157667160034,-0.0410360172390938,1.19097748552122e-007,-0.998936057090759,0.0461186692118645,1.19097421702463e-007,-0.998933136463165,0.0461801663041115,1.03496773817824e-007,-0.999155521392822,-0.0410907454788685,5.67707552079355e-008,-0.0387747772037983,0.999248087406158,4.63083260626718e-008,-0.0374821722507477,0.999297320842743,5.80485171042255e-008,-0.998933136463165,0.0461801663041115,5.8045248607641e-008,-0.998936057090759,0.0461186692118645,9.94221593941802e-008,-0.0425863228738308,-0.999092757701874,9.94714781654693e-008,-0.0438785813748837,-0.999036908149719,1.03494699033035e-007,-0.999157667160034,-0.0410360172390938,1.03496773817824e-007,-0.999155521392822,-0.0410907454788685,5.68434256370716e-014,-0.643347799777985,0.765574097633362,-1.74582737599849e-006,-0.643347799777985,0.765574038028717,-3.49171023117378e-006,-0.643338978290558,0.765581548213959,-1.74585511558689e-006,-0.643338918685913,0.765581488609314,4.8071001401695e-007,-0.643193781375885,0.765703499317169,2.40354950165056e-007,-0.64319372177124,0.765703499317169,0,-0.643195629119873,0.76570188999176,2.40355689129501e-007,-0.643195629119873,0.76570188999176,2.27783630180056e-007,-0.765651822090149,-0.643255233764648,8.88178419700125e-016,-0.765651881694794,-0.643255174160004,2.27783743866894e-007,-0.765652298927307,-0.643254816532135,4.55567487733788e-007,-0.765652239322662,-0.64325475692749,2.47989504487123e-007,-0.643341362476349,0.765579462051392,3.15390650484915e-007,-0.643341362476349,0.765579462051392,3.82791768060997e-007,-0.643341243267059,0.765579640865326,3.15390593641496e-007,-0.643341243267059,0.765579521656036,
- 0,-0.64321893453598,0.765682339668274,1.59011051437119e-007,-0.643218874931335,0.765682399272919,3.18021363909793e-007,-0.643217325210571,0.765683710575104,1.59010681954896e-007,-0.643217325210571,0.765683650970459,-2.85303343616761e-007,-0.643239676952362,0.765664875507355,-2.12733880289306e-007,-0.643239676952362,0.765664935112,-1.40164360118433e-007,-0.643240928649902,0.765663802623749,-2.12734107662982e-007,-0.643241047859192,0.765663862228394,-0.00727183371782303,0.78699654340744,0.616914689540863,-0.00671804277226329,0.765536725521088,0.64335709810257,-0.00471470504999161,0.765581965446472,0.643321216106415,-0.0029851186554879,0.794531345367432,0.607215762138367,0.00468815444037318,-0.765534520149231,-0.643377840518951,0.00570319965481758,-0.765529811382294,-0.643375098705292,0.00335916504263878,-0.765576720237732,-0.643335938453674,0.00285163498483598,-0.765577912330627,-0.643336892127991,-0.00117394246626645,0.66829115152359,-0.743898928165436,-0.00727183371782303,0.78699654340744,0.616914689540863,-0.0029851186554879,0.794531345367432,0.607215762138367,-0.000573653203900903,0.680935561656952,-0.732343196868896,3.00168174760529e-008,0.00255741574801505,0.999996781349182,5.98784950511799e-008,-0.0127466283738613,0.999918758869171,7.64402869890546e-008,-0.0374821722507477,0.999297320842743,5.2134307537699e-008,0.00255742622539401,0.999996781349182,1.27634564250911e-007,-0.0178914442658424,-0.999839961528778,1.20126443903246e-007,-0.00255059171468019,-0.999996781349182,1.34360305992232e-007,-0.00255059148184955,-0.999996840953827,8.84637998410653e-008,-0.0425863228738308,-0.999092757701874,2.73439269449227e-007,0.999996781349182,-0.00255729816854,2.73370147851892e-007,0.999996721744537,-0.00255729793570936,2.73301054676267e-007,0.999996781349182,-0.00255729816854,2.73370176273602e-007,0.999996781349182,-0.00255729816854,6.9849214412443e-008,-0.998363137245178,-0.0571936033666134,1.27634564250911e-007,-0.0178914442658424,-0.999839961528778,8.84637998410653e-008,-0.0425863228738308,-0.999092757701874,0,-0.999155521392822,-0.0410907454788685,
- 0,-0.643329799175262,0.76558917760849,0,-0.643329799175262,0.765589237213135,0,-0.643329799175262,0.76558917760849,0,-0.643329799175262,0.76558917760849,-1.86590810358211e-007,-0.765662014484406,-0.643243134021759,-3.73181649138132e-007,-0.76566207408905,-0.643243193626404,-1.86590824569066e-007,-0.76566207408905,-0.643243193626404,0,-0.76566207408905,-0.643243193626404,-1.04671258327471e-007,-0.643294095993042,0.765619277954102,-5.23356220583082e-008,-0.643294155597687,0.765619158744812,0,-0.643294095993042,0.765619158744812,-5.23356256110219e-008,-0.643294095993042,0.765619158744812,0,-0.643285512924194,0.765626490116119,0,-0.643285512924194,0.765626430511475,0,-0.643285512924194,0.765626430511475,0,-0.643285512924194,0.765626430511475,-6.50851958994281e-008,-0.643285095691681,0.765626847743988,-3.2542597949714e-008,-0.643285095691681,0.765626847743988,0,-0.643285095691681,0.765626847743988,-3.2542597949714e-008,-0.643285095691681,0.765626847743988,1.10805324027297e-007,-0.64321756362915,0.765683531761169,5.5402665566362e-008,-0.643217623233795,0.765683531761169,0,-0.64321756362915,0.765683472156525,5.54026584609346e-008,-0.64321756362915,0.765683472156525,-4.62452021565696e-007,-0.765640258789063,-0.643269121646881,-7.23494849808048e-007,-0.765640199184418,-0.643269121646881,-4.62451993143986e-007,-0.765640199184418,-0.643269121646881,-2.01409079636505e-007,-0.765640199184418,-0.643269062042236,-9.84218644362045e-008,-0.643204927444458,0.765694200992584,-7.45056709661185e-008,-0.643204927444458,0.765694081783295,-5.05895094704556e-008,-0.643204867839813,0.765694200992584,-7.45056780715458e-008,-0.643204867839813,0.765694200992584,0,-0.643187403678894,0.765708804130554,7.51322559722212e-008,-0.643187403678894,0.765708863735199,1.50264511944442e-007,-0.643187403678894,0.765708923339844,7.51322559722212e-008,-0.643187403678894,0.765708804130554,-1.99977293391385e-007,-0.643326103687286,0.765592336654663,-7.59741638489686e-008,-0.643326103687286,0.765592396259308,4.80289692461611e-008,-0.643326103687286,0.765592277050018,
- -7.59741567435412e-008,-0.643326103687286,0.765592277050018,-7.10542651056805e-015,-0.643179833889008,0.7657151222229,-2.71822102604347e-007,-0.643179833889008,0.765715181827545,-5.43644148365274e-007,-0.643179774284363,0.765715181827545,-2.71822102604347e-007,-0.643179774284363,0.765715360641479,8.44132088673177e-008,-0.765658795833588,-0.643246948719025,-1.23563211218425e-007,-0.765658795833588,-0.643246948719025,8.4413194656463e-008,-0.765658915042877,-0.643246948719025,2.92389643163915e-007,-0.765658855438232,-0.643247008323669,-1.68091119689961e-007,-0.643308162689209,0.765607357025146,-3.68329352795627e-007,-0.643308222293854,0.765607416629791,-5.68567486425309e-007,-0.643308162689209,0.765607416629791,-3.68329295952208e-007,-0.643308162689209,0.765607416629791,-6.0930140932669e-008,-0.643298387527466,0.765615701675415,-2.68646658696525e-007,-0.643298327922821,0.76561564207077,-4.76363169354954e-007,-0.643298327922821,0.76561564207077,-2.68646658696525e-007,-0.643298268318176,0.765615701675415,0,-0.643294334411621,0.765618979930878,0,-0.643294394016266,0.765618920326233,0,-0.643294334411621,0.765619039535522,0,-0.643294334411621,0.765619039535522,0.0217131283134222,0.765451431274414,0.64312732219696,0.0240071192383766,0.765410602092743,0.643094420433044,-0.00109978416003287,0.765639901161194,0.643268585205078,0.0103036407381296,0.765588939189911,0.643247485160828,-0.00260069873183966,0.62971955537796,-0.776818215847015,0.000440133677329868,0.643244445323944,-0.76566070318222,-0.000301711173960939,0.643255889415741,-0.765651166439056,-0.00216295197606087,0.603941798210144,-0.797025561332703,-0.0221543982625008,-0.679587960243225,-0.733259499073029,-0.00260069873183966,0.62971955537796,-0.776818215847015,-0.00216295197606087,0.603941798210144,-0.797025561332703,-0.00333312130533159,-0.728897511959076,-0.684614777565002,0.00139804277569056,-0.666655004024506,0.745365083217621,-0.0249446034431458,-0.788160920143127,-0.61496365070343,-0.00183187064249069,-0.79591178894043,-0.605409860610962,0.00183389324229211,-0.681512892246246,0.731803894042969,
- -0.00819066632539034,0.66444605588913,-0.747291386127472,-0.0420446880161762,0.784644603729248,0.618518471717834,-0.0143413469195366,0.796828329563141,0.604035496711731,-0.00220931274816394,0.680553376674652,-0.732695162296295,0.0255330260843039,-0.765110015869141,-0.643393278121948,0.0349470786750317,-0.764791429042816,-0.643329441547394,0.0118922954425216,-0.76555609703064,-0.643259227275848,0.00888690166175365,-0.765586316585541,-0.643271863460541,0.00389609578996897,-0.630931675434113,0.775828659534454,0.0151483286172152,-0.642858266830444,0.765835344791412,0.00250823074020445,-0.64325362443924,0.765649080276489,-0.000907364534214139,-0.603507459163666,0.797356903553009,-0.0285584703087807,0.667816758155823,0.743777692317963,0.00389609578996897,-0.630931675434113,0.775828659534454,-0.000907364534214139,-0.603507459163666,0.797356903553009,-0.0074846874922514,0.729958355426788,0.683450758457184,0,0.639681160449982,-0.768640398979187,0,0.63965106010437,-0.768665432929993,0,0.639620959758759,-0.768690466880798,0,0.63965106010437,-0.768665432929993,0,-0.768690228462219,-0.639621198177338,0,-0.768690228462219,-0.639621198177338,0,-0.768690288066864,-0.639621257781982,-0.999931991100311,-0.008899818174541,-0.00753678334876895,-0.999898374080658,-0.0108816614374518,-0.00921351183205843,-0.999812483787537,-0.0148274321109056,-0.0124589959159493,-0.999732971191406,-0.0176953636109829,-0.0148674715310335,0.996396064758301,0.0607721507549286,-0.059175007045269,0.996771454811096,-0.045777402818203,0.0659631043672562,0.996543407440186,-0.0257442314177752,0.0789843201637268,0.997101902961731,0.064835861325264,-0.039802759885788,0.0826231762766838,0.646623134613037,-0.758321821689606,-0.0011785498354584,0.642196238040924,-0.766539394855499,0.0110564865171909,0.646743178367615,-0.762627780437469,0.0599067620933056,0.6423659324646,-0.764053165912628,0.0595523342490196,-0.640852153301239,0.765350937843323,-0.00829289294779301,-0.646181881427765,0.76313841342926,0.0011056587100029,-0.641682624816895,0.766969561576843,0.0627980753779411,-0.64495861530304,0.761633098125458,
- 0.0595523342490196,-0.640852153301239,0.765350937843323,0.0627980753779411,-0.64495861530304,0.761633098125458,0.996543407440186,-0.0257442314177752,0.0789843201637268,0.996771454811096,-0.045777402818203,0.0659631043672562,0.996396064758301,0.0607721507549286,-0.059175007045269,0.997101902961731,0.064835861325264,-0.039802759885788,0.0826231762766838,0.646623134613037,-0.758321821689606,0.0599067620933056,0.6423659324646,-0.764053165912628,0.0300992578268051,0.629054546356201,-0.776778221130371,-0.00341500295326114,0.640651643276215,-0.767824113368988,0.00169719522818923,0.636463582515717,-0.771304965019226,0.00885267741978168,0.637200057506561,-0.770647644996643,0.997466206550598,0.0382932089269161,-0.0599578134715557,0.96360182762146,0.176941066980362,-0.200408607721329,0.999746680259705,-0.00899454671889544,0.0206323210150003,0.998197793960571,-0.0436089374125004,0.0412244722247124,0.998432815074921,-0.0186968166381121,0.052748765796423,0.998302936553955,0.049892470240593,-0.0300366394221783,0.997979879379272,0.0382350906729698,-0.0507378056645393,0.997772097587585,-0.0444456003606319,0.0497535094618797,0.0305085517466068,-0.646239280700684,0.762524843215942,0.0436494760215282,-0.636935591697693,0.769680261611938,0.998432815074921,-0.0186968166381121,0.052748765796423,0.997772097587585,-0.0444456003606319,0.0497535094618797,0.00161622418090701,-0.646565914154053,0.762856423854828,-0.00647889263927937,-0.641428351402283,0.767155587673187,0.0436494760215282,-0.636935591697693,0.769680261611938,0.0305085517466068,-0.646239280700684,0.762524843215942,-0.999994993209839,0.00242517562583089,0.00203736196272075,-0.999752283096313,-0.0170433484017849,-0.0143168037757277,-0.999752283096313,-0.0170420408248901,-0.0143157057464123,-0.999994575977325,0.00252184458076954,0.00211857073009014,0.0560391172766685,0.636410892009735,-0.769311845302582,0.00653598504140973,0.639295160770416,-0.768933713436127,-0.00100513140205294,0.644589066505432,-0.764528691768646,0.0338899902999401,0.643510937690735,-0.764686405658722,0.997979879379272,0.0382350906729698,-0.0507378056645393,
- 0.998302936553955,0.049892470240593,-0.0300366394221783,0.0560391172766685,0.636410892009735,-0.769311845302582,0.0338899902999401,0.643510937690735,-0.764686405658722,0.0338899902999401,0.643510937690735,-0.764686405658722,-0.00100513140205294,0.644589066505432,-0.764528691768646,-0.00797982700169086,0.633513927459717,-0.773690223693848,0.0308599825948477,0.626351058483124,-0.778930127620697,-0.999330997467041,0.0280009508132935,0.0235258974134922,-0.999994993209839,0.00242517562583089,0.00203736196272075,-0.999994575977325,0.00252184458076954,0.00211857073009014,-0.99946540594101,0.0250328071415424,0.0210321191698313,0.00660812295973301,-0.631069779396057,0.775698006153107,0.00161622418090701,-0.646565914154053,0.762856423854828,0.0305085517466068,-0.646239280700684,0.762524843215942,0.0476229041814804,-0.626768052577972,0.777749300003052,0.0476229041814804,-0.626768052577972,0.777749300003052,0.0305085517466068,-0.646239280700684,0.762524843215942,0.997772097587585,-0.0444456003606319,0.0497535094618797,0.997753322124481,-0.0609436593949795,0.027824729681015,0.997979879379272,0.0382350906729698,-0.0507378056645393,0.997839689254761,0.0163816213607788,-0.0636206343770027,0.997753322124481,-0.0609436593949795,0.027824729681015,0.997772097587585,-0.0444456003606319,0.0497535094618797,0.997839689254761,0.0163816213607788,-0.0636206343770027,0.997979879379272,0.0382350906729698,-0.0507378056645393,0.0338899902999401,0.643510937690735,-0.764686405658722,0.0308599825948477,0.626351058483124,-0.778930127620697,0.997753322124481,-0.0609436593949795,0.027824729681015,0.997839689254761,0.0163816213607788,-0.0636206343770027,0.997466206550598,0.0382932089269161,-0.0599578134715557,0.998197793960571,-0.0436089374125004,0.0412244722247124,0.0476229041814804,-0.626768052577972,0.777749300003052,0.997753322124481,-0.0609436593949795,0.027824729681015,0.998197793960571,-0.0436089374125004,0.0412244722247124,0.0356678739190102,-0.627234518527985,0.778013288974762,0.00660812295973301,-0.631069779396057,0.775698006153107,0.0476229041814804,-0.626768052577972,0.777749300003052,
- 0.0356678739190102,-0.627234518527985,0.778013288974762,0.00259344326332211,-0.643071055412292,0.765802204608917,-0.999330997467041,0.0280009508132935,0.0235258974134922,-0.99946540594101,0.0250328071415424,0.0210321191698313,-0.999843239784241,0.0135597437620163,0.0113941393792629,-0.999987125396729,-0.00389700895175338,-0.00327257951721549,0.0308599825948477,0.626351058483124,-0.778930127620697,-0.00797982700169086,0.633513927459717,-0.773690223693848,-0.00341500295326114,0.640651643276215,-0.767824113368988,0.0300992578268051,0.629054546356201,-0.776778221130371,0.997466206550598,0.0382932089269161,-0.0599578134715557,0.997839689254761,0.0163816213607788,-0.0636206343770027,0.0308599825948477,0.626351058483124,-0.778930127620697,0.0300992578268051,0.629054546356201,-0.776778221130371,-0.0575674474239349,-0.64772230386734,0.759698510169983,-0.0129372039809823,-0.648089468479156,0.761454343795776,-0.0131939146667719,-0.648364305496216,0.76121598482132,-0.0236610304564238,-0.648422658443451,0.760912835597992,-0.994938611984253,-0.0809186398983002,0.0595767609775066,-0.995749711990356,0.040187131613493,-0.0828717350959778,-0.996567249298096,0.0526181235909462,-0.0639139264822006,-0.996309757232666,-0.0550226829946041,0.0658743605017662,-0.0238716285675764,0.647172689437866,-0.76196962594986,-0.0585208609700203,0.642659306526184,-0.763913750648499,-0.996567249298096,0.0526181235909462,-0.0639139264822006,-0.995749711990356,0.040187131613493,-0.0828717350959778,0.0128317829221487,0.648094356060028,-0.76145201921463,0.00360788032412529,0.64510041475296,-0.764089286327362,-0.0585208609700203,0.642659306526184,-0.763913750648499,-0.0238716285675764,0.647172689437866,-0.76196962594986,0.999728202819824,0.0177660528570414,0.015098363161087,0.999993562698364,0.00274430797435343,0.00230567203834653,0.999993622303009,0.00274439295753837,0.00230583711527288,0.999728143215179,0.0177661944180727,0.0150988455861807,-0.0514115989208221,-0.643211245536804,0.763960838317871,-0.00360748986713588,-0.645099699497223,0.76408988237381,-0.0129372039809823,-0.648089468479156,0.761454343795776,
- -0.0575674474239349,-0.64772230386734,0.759698510169983,-0.994938611984253,-0.0809186398983002,0.0595767609775066,-0.996309757232666,-0.0550226829946041,0.0658743605017662,-0.0514115989208221,-0.643211245536804,0.763960838317871,-0.0575674474239349,-0.64772230386734,0.759698510169983,-0.996309757232666,-0.0550226829946041,0.0658743605017662,-0.996567249298096,0.0526181235909462,-0.0639139264822006,-0.997920751571655,0.0519623495638371,-0.0381336398422718,-0.998052835464478,-0.0268046520650387,0.0563214868307114,-0.0585208609700203,0.642659306526184,-0.763913750648499,-0.118615038692951,0.637347519397736,-0.761392652988434,-0.997920751571655,0.0519623495638371,-0.0381336398422718,-0.996567249298096,0.0526181235909462,-0.0639139264822006,0.00360788032412529,0.64510041475296,-0.764089286327362,-0.00916032679378986,0.640535473823547,-0.76787394285202,-0.118615038692951,0.637347519397736,-0.761392652988434,-0.0585208609700203,0.642659306526184,-0.763913750648499,0.999993562698364,0.00274430797435343,0.00230567203834653,0.999879002571106,-0.0119480974972248,-0.00996372476220131,0.999879002571106,-0.0119478292763233,-0.00996350217610598,0.999993622303009,0.00274439295753837,0.00230583711527288,-0.101714342832565,-0.635921359062195,0.765021681785584,0.00916094146668911,-0.640534937381744,0.767874479293823,-0.00360748986713588,-0.645099699497223,0.76408988237381,-0.0514115989208221,-0.643211245536804,0.763960838317871,-0.996309757232666,-0.0550226829946041,0.0658743605017662,-0.998052835464478,-0.0268046520650387,0.0563214868307114,-0.101714342832565,-0.635921359062195,0.765021681785584,-0.0514115989208221,-0.643211245536804,0.763960838317871,0.996085524559021,0.0505051501095295,-0.0725454762578011,0.995819687843323,-0.0636491701006889,0.0655136331915855,0.998064398765564,-0.0297591798007488,0.0546075105667114,0.997960805892944,0.0497744418680668,-0.039961002767086,0.043781004846096,-0.642393290996552,0.765123546123505,0.102865278720856,-0.639146506786346,0.762174844741821,0.998064398765564,-0.0297591798007488,0.0546075105667114,
- 0.995819687843323,-0.0636491701006889,0.0655136331915855,0.00396495452150702,-0.64234334230423,0.766406714916229,-0.00702512357383966,-0.643524944782257,0.765392959117889,0.102865278720856,-0.639146506786346,0.762174844741821,0.043781004846096,-0.642393290996552,0.765123546123505,-0.999927639961243,0.0092157144099474,0.00774279795587063,-0.999930441379547,-0.00902783498167992,-0.00759421894326806,-0.999930500984192,-0.00902693439275026,-0.00759346084669232,-0.999927639961243,0.00921458844095469,0.00774205988273025,0.115861773490906,0.640685141086578,-0.759011685848236,0.0070391371846199,0.644034743309021,-0.764963865280151,-0.00394036201760173,0.64283674955368,-0.765993058681488,0.0501722916960716,0.641792058944702,-0.765235722064972,0.996085524559021,0.0505051501095295,-0.0725454762578011,0.997960805892944,0.0497744418680668,-0.039961002767086,0.115861773490906,0.640685141086578,-0.759011685848236,0.0501722916960716,0.641792058944702,-0.765235722064972,0.996416807174683,0.0315863490104675,-0.078459806740284,0.996394991874695,-0.0740611702203751,0.0413765609264374,0.995819687843323,-0.0636491701006889,0.0655136331915855,0.996085524559021,0.0505051501095295,-0.0725454762578011,0.996416807174683,0.0315863490104675,-0.078459806740284,0.996085524559021,0.0505051501095295,-0.0725454762578011,0.0501722916960716,0.641792058944702,-0.765235722064972,0.0468753166496754,0.637419760227203,-0.769089579582214,-0.00394036201760173,0.64283674955368,-0.765993058681488,-0.0118384389206767,0.640711545944214,-0.767690420150757,0.0468753166496754,0.637419760227203,-0.769089579582214,0.0501722916960716,0.641792058944702,-0.765235722064972,-0.999704420566559,0.0186309348791838,0.0156251098960638,-0.999927639961243,0.0092157144099474,0.00774279795587063,-0.999927639961243,0.00921458844095469,0.00774205988273025,-0.999504208564758,0.0241269394755363,0.0202332790941,0.0150750875473022,-0.64030385017395,0.767973840236664,0.00396495452150702,-0.64234334230423,0.766406714916229,0.043781004846096,-0.642393290996552,0.765123546123505,0.0803293436765671,-0.638295829296112,0.765588462352753,
- 0.0803293436765671,-0.638295829296112,0.765588462352753,0.043781004846096,-0.642393290996552,0.765123546123505,0.995819687843323,-0.0636491701006889,0.0655136331915855,0.996394991874695,-0.0740611702203751,0.0413765609264374,0.996286153793335,0.0635497495532036,-0.0580982156097889,0.996714055538177,-0.0407748445868492,0.0699892640113831,0.996394991874695,-0.0740611702203751,0.0413765609264374,0.996416807174683,0.0315863490104675,-0.078459806740284,0.0550566017627716,-0.648729860782623,0.759024739265442,0.0803293436765671,-0.638295829296112,0.765588462352753,0.996394991874695,-0.0740611702203751,0.0413765609264374,0.996714055538177,-0.0407748445868492,0.0699892640113831,-0.017760343849659,-0.650667726993561,0.759154915809631,0.0150750875473022,-0.64030385017395,0.767973840236664,0.0803293436765671,-0.638295829296112,0.765588462352753,0.0550566017627716,-0.648729860782623,0.759024739265442,-0.999876856803894,-0.0120066441595554,-0.0101126488298178,-0.999704420566559,0.0186309348791838,0.0156251098960638,-0.999504208564758,0.0241269394755363,0.0202332790941,-0.999828219413757,-0.0141784530133009,-0.0119427060708404,0.0468753166496754,0.637419760227203,-0.769089579582214,-0.0118384389206767,0.640711545944214,-0.767690420150757,0.0127491001039743,0.650978744029999,-0.758988976478577,0.0595737025141716,0.650660157203674,-0.757028758525848,0.996286153793335,0.0635497495532036,-0.0580982156097889,0.996416807174683,0.0315863490104675,-0.078459806740284,0.0468753166496754,0.637419760227203,-0.769089579582214,0.0595737025141716,0.650660157203674,-0.757028758525848,0.995681881904602,0.0697404816746712,-0.061269111931324,0.996062278747559,-0.0461032353341579,0.0757271498441696,0.996771454811096,-0.045777402818203,0.0659631043672562,0.996396064758301,0.0607721507549286,-0.059175007045269,0.995681881904602,0.0697404816746712,-0.061269111931324,0.996396064758301,0.0607721507549286,-0.059175007045269,0.0599067620933056,0.6423659324646,-0.764053165912628,0.0642606094479561,0.645041108131409,-0.761441171169281,0.0110564865171909,0.646743178367615,-0.762627780437469,
- 0.00549325346946716,0.651177644729614,-0.758905470371246,0.0642606094479561,0.645041108131409,-0.761441171169281,0.0599067620933056,0.6423659324646,-0.764053165912628,-0.999959468841553,-0.0068387109786272,-0.00586689077317715,-0.999945461750031,-0.00792528875172138,-0.00679898774251342,-0.999898374080658,-0.0108816614374518,-0.00921351183205843,-0.999931991100311,-0.008899818174541,-0.00753678334876895,0.0251738540828228,-0.64423394203186,0.764414191246033,-0.0102230394259095,-0.649118483066559,0.760618686676025,-0.00829289294779301,-0.646181881427765,0.76313841342926,0.0595523342490196,-0.640852153301239,0.765350937843323,0.0251738540828228,-0.64423394203186,0.764414191246033,0.0595523342490196,-0.640852153301239,0.765350937843323,0.996771454811096,-0.045777402818203,0.0659631043672562,0.996062278747559,-0.0461032353341579,0.0757271498441696,0.00549325346946716,0.651177644729614,-0.758905470371246,-0.012981753796339,0.658046960830688,-0.752865016460419,-0.00309542380273342,0.648856163024902,-0.760904788970947,0.0642606094479561,0.645041108131409,-0.761441171169281,0.997101902961731,0.064835861325264,-0.039802759885788,0.996543407440186,-0.0257442314177752,0.0789843201637268,0.996714055538177,-0.0407748445868492,0.0699892640113831,0.996286153793335,0.0635497495532036,-0.0580982156097889,0.997101902961731,0.064835861325264,-0.039802759885788,0.996286153793335,0.0635497495532036,-0.0580982156097889,0.0595737025141716,0.650660157203674,-0.757028758525848,0.0826231762766838,0.646623134613037,-0.758321821689606,0.0127491001039743,0.650978744029999,-0.758988976478577,-0.0011785498354584,0.642196238040924,-0.766539394855499,0.0826231762766838,0.646623134613037,-0.758321821689606,0.0595737025141716,0.650660157203674,-0.757028758525848,-0.999812483787537,-0.0148274321109056,-0.0124589959159493,-0.999876856803894,-0.0120066441595554,-0.0101126488298178,-0.999828219413757,-0.0141784530133009,-0.0119427060708404,-0.999732971191406,-0.0176953636109829,-0.0148674715310335,0.0011056587100029,-0.641682624816895,0.766969561576843,
- -0.017760343849659,-0.650667726993561,0.759154915809631,0.0550566017627716,-0.648729860782623,0.759024739265442,0.0627980753779411,-0.64495861530304,0.761633098125458,0.0627980753779411,-0.64495861530304,0.761633098125458,0.0550566017627716,-0.648729860782623,0.759024739265442,0.996714055538177,-0.0407748445868492,0.0699892640113831,0.996543407440186,-0.0257442314177752,0.0789843201637268,-0.999611735343933,-0.0213360004127026,-0.0179221201688051,-0.999622941017151,-0.0210258439183235,-0.0176615342497826,-0.999987125396729,-0.00389700895175338,-0.00327257951721549,-0.999843239784241,0.0135597437620163,0.0113941393792629,0.0231916420161724,-0.641642272472382,0.76665335893631,-0.000382266473025084,-0.641976654529572,0.766724169254303,0.00259344326332211,-0.643071055412292,0.765802204608917,0.0356678739190102,-0.627234518527985,0.778013288974762,0.999746680259705,-0.00899454671889544,0.0206323210150003,0.0231916420161724,-0.641642272472382,0.76665335893631,0.0356678739190102,-0.627234518527985,0.778013288974762,0.998197793960571,-0.0436089374125004,0.0412244722247124,0.00885267741978168,0.637200057506561,-0.770647644996643,0.96360182762146,0.176941066980362,-0.200408607721329,0.997466206550598,0.0382932089269161,-0.0599578134715557,0.0300992578268051,0.629054546356201,-0.776778221130371,-0.926890850067139,-0.259690016508102,0.27098822593689,-0.99960994720459,-0.00875989068299532,-0.0265195295214653,-0.995749711990356,0.040187131613493,-0.0828717350959778,-0.994938611984253,-0.0809186398983002,0.0595767609775066,-0.99960994720459,-0.00875989068299532,-0.0265195295214653,-0.0101016089320183,0.647967636585236,-0.761600852012634,-0.0238716285675764,0.647172689437866,-0.76196962594986,-0.995749711990356,0.040187131613493,-0.0828717350959778,-0.0101016089320183,0.647967636585236,-0.761600852012634,0.013243930414319,0.648366749286652,-0.761212885379791,0.0128317829221487,0.648094356060028,-0.76145201921463,-0.0238716285675764,0.647172689437866,-0.76196962594986,0.999714255332947,0.0182026438415051,0.0154960425570607,0.999714314937592,0.0182020030915737,0.0154954986646771,
- 0.999728202819824,0.0177660528570414,0.015098363161087,0.999728143215179,0.0177661944180727,0.0150988455861807,-0.0236610304564238,-0.648422658443451,0.760912835597992,-0.926890850067139,-0.259690016508102,0.27098822593689,-0.994938611984253,-0.0809186398983002,0.0595767609775066,-0.0575674474239349,-0.64772230386734,0.759698510169983,0.931524872779846,0.216622292995453,-0.292123973369598,0.999423027038574,-0.0336982235312462,0.00424395082518458,0.996062278747559,-0.0461032353341579,0.0757271498441696,0.995681881904602,0.0697404816746712,-0.061269111931324,-0.00309542380273342,0.648856163024902,-0.760904788970947,0.931524872779846,0.216622292995453,-0.292123973369598,0.995681881904602,0.0697404816746712,-0.061269111931324,0.0642606094479561,0.645041108131409,-0.761441171169281,-0.999813318252563,0.0146524533629417,0.0125937461853027,-0.999814569950104,0.0146050658077002,0.0125530157238245,-0.999945461750031,-0.00792528875172138,-0.00679898774251342,-0.999959468841553,-0.0068387109786272,-0.00586689077317715,0.0480021424591541,-0.646386027336121,0.761499106884003,0.0116218803450465,-0.655187964439392,0.755376636981964,-0.0102230394259095,-0.649118483066559,0.760618686676025,0.0251738540828228,-0.64423394203186,0.764414191246033,0.999423027038574,-0.0336982235312462,0.00424395082518458,0.0480021424591541,-0.646386027336121,0.761499106884003,0.0251738540828228,-0.64423394203186,0.764414191246033,0.996062278747559,-0.0461032353341579,0.0757271498441696,-0.701012849807739,0.00765988230705261,0.713107585906982,-0.671027898788452,0.0361812859773636,0.74054878950119,-0.674332976341248,0.0326011478900909,0.737707376480103,-0.700723469257355,0.00801506731659174,0.713388025760651,0.707626163959503,-0.0648493841290474,-0.703604757785797,0.660362958908081,0.0152508020401001,-0.750791668891907,0.673539102077484,0.0315861999988556,-0.738476395606995,0.721526741981506,-0.0477724820375443,-0.690736532211304,-0.382524818181992,0.81185507774353,-0.441096633672714,-0.389955252408981,0.837705016136169,-0.382341682910919,-0.469239503145218,0.74584573507309,-0.472787946462631,
- -0.420453518629074,0.765947461128235,-0.486357092857361,0.486794948577881,-0.767033457756042,0.417959809303284,0.468949347734451,-0.747515022754669,0.470433592796326,0.3896763920784,-0.836907267570496,0.384367883205414,0.450765669345856,-0.810474634170532,0.374087184667587,0.486794948577881,-0.767033457756042,0.417959809303284,0.450765669345856,-0.810474634170532,0.374087184667587,0.707626163959503,-0.0648493841290474,-0.703604757785797,0.721526741981506,-0.0477724820375443,-0.690736532211304,0.673539102077484,0.0315861999988556,-0.738476395606995,0.660362958908081,0.0152508020401001,-0.750791668891907,-0.382524818181992,0.81185507774353,-0.441096633672714,-0.420453518629074,0.765947461128235,-0.486357092857361,-0.424695789813995,0.758229851722717,-0.494692862033844,-0.447682410478592,0.762630701065063,-0.46687775850296,-0.441341489553452,0.76844584941864,-0.463366508483887,-0.400505989789963,0.790067195892334,-0.464100211858749,0.692710220813751,0.0535497590899467,-0.719225287437439,0.7080939412117,0.0336847864091396,-0.705314338207245,0.789793610572815,-0.145388901233673,-0.595892727375031,0.742298483848572,-0.0316098779439926,-0.669323444366455,-0.420453518629074,0.765947461128235,-0.486357092857361,-0.469239503145218,0.74584573507309,-0.472787946462631,-0.447682410478592,0.762630701065063,-0.46687775850296,-0.424695789813995,0.758229851722717,-0.494692862033844,-0.724273264408112,-0.029176089912653,0.688895404338837,-0.701012849807739,0.00765988230705261,0.713107585906982,-0.700723469257355,0.00801506731659174,0.713388025760651,-0.720389366149902,-0.0243696272373199,0.693141579627991,0.471880167722702,-0.766856908798218,0.435039907693863,0.447545826435089,-0.762375175952911,0.467425584793091,0.468949347734451,-0.747515022754669,0.470433592796326,0.486794948577881,-0.767033457756042,0.417959809303284,0.471880167722702,-0.766856908798218,0.435039907693863,0.486794948577881,-0.767033457756042,0.417959809303284,0.721526741981506,-0.0477724820375443,-0.690736532211304,0.742298483848572,-0.0316098779439926,-0.669323444366455,
- 0.673539102077484,0.0315861999988556,-0.738476395606995,0.692710220813751,0.0535497590899467,-0.719225287437439,0.742298483848572,-0.0316098779439926,-0.669323444366455,0.721526741981506,-0.0477724820375443,-0.690736532211304,0.692710220813751,0.0535497590899467,-0.719225287437439,0.673539102077484,0.0315861999988556,-0.738476395606995,-0.420453518629074,0.765947461128235,-0.486357092857361,-0.424695789813995,0.758229851722717,-0.494692862033844,0.738666176795959,-0.0260807871818542,-0.673566699028015,0.696134924888611,0.0533973947167397,-0.7159224152565,0.680672883987427,0.040988028049469,-0.73143994808197,0.730483174324036,-0.0458930991590023,-0.681387007236481,0.478230863809586,-0.77464771270752,0.413782924413681,0.46267905831337,-0.796208322048187,0.389846742153168,0.738666176795959,-0.0260807871818542,-0.673566699028015,0.730483174324036,-0.0458930991590023,-0.681387007236481,0.466299116611481,-0.755276560783386,0.460567682981491,0.440655499696732,-0.779248654842377,0.445639133453369,0.46267905831337,-0.796208322048187,0.389846742153168,0.478230863809586,-0.77464771270752,0.413782924413681,-0.689228117465973,0.0217370521277189,0.724218308925629,-0.679728746414185,0.0321765430271626,0.73275750875473,-0.686350405216217,0.0245785899460316,0.726855576038361,-0.692375719547272,0.0179747045040131,0.721313238143921,-0.386053532361984,0.796112298965454,-0.46601265668869,-0.423032909631729,0.799193680286407,-0.427004218101501,-0.454320222139359,0.768835186958313,-0.449984103441238,-0.410458266735077,0.779864251613617,-0.472584217786789,0.680672883987427,0.040988028049469,-0.73143994808197,0.696134924888611,0.0533973947167397,-0.7159224152565,-0.386053532361984,0.796112298965454,-0.46601265668869,-0.410458266735077,0.779864251613617,-0.472584217786789,-0.410458266735077,0.779864251613617,-0.472584217786789,-0.454320222139359,0.768835186958313,-0.449984103441238,-0.413354456424713,0.816256165504456,-0.403564155101776,-0.440326571464539,0.76179826259613,-0.475158840417862,-0.682648003101349,0.0269057638943195,0.730251848697662,
- -0.689228117465973,0.0217370521277189,0.724218308925629,-0.692375719547272,0.0179747045040131,0.721313238143921,-0.687841415405273,0.0215569455176592,0.72554087638855,0.416677415370941,-0.813437521457672,0.405831843614578,0.466299116611481,-0.755276560783386,0.460567682981491,0.478230863809586,-0.77464771270752,0.413782924413681,0.491764008998871,-0.758540749549866,0.42753267288208,0.491764008998871,-0.758540749549866,0.42753267288208,0.478230863809586,-0.77464771270752,0.413782924413681,0.730483174324036,-0.0458930991590023,-0.681387007236481,0.712622404098511,-0.0678424313664436,-0.698259830474854,0.680672883987427,0.040988028049469,-0.73143994808197,0.657814681529999,0.0220240671187639,-0.752857863903046,0.712622404098511,-0.0678424313664436,-0.698259830474854,0.730483174324036,-0.0458930991590023,-0.681387007236481,0.657814681529999,0.0220240671187639,-0.752857863903046,0.680672883987427,0.040988028049469,-0.73143994808197,-0.410458266735077,0.779864251613617,-0.472584217786789,-0.440326571464539,0.76179826259613,-0.475158840417862,0.712622404098511,-0.0678424313664436,-0.698259830474854,0.657814681529999,0.0220240671187639,-0.752857863903046,0.660362958908081,0.0152508020401001,-0.750791668891907,0.707626163959503,-0.0648493841290474,-0.703604757785797,0.450765669345856,-0.810474634170532,0.374087184667587,0.491764008998871,-0.758540749549866,0.42753267288208,0.712622404098511,-0.0678424313664436,-0.698259830474854,0.707626163959503,-0.0648493841290474,-0.703604757785797,0.3896763920784,-0.836907267570496,0.384367883205414,0.416677415370941,-0.813437521457672,0.405831843614578,0.491764008998871,-0.758540749549866,0.42753267288208,0.450765669345856,-0.810474634170532,0.374087184667587,-0.671027898788452,0.0361812859773636,0.74054878950119,-0.682648003101349,0.0269057638943195,0.730251848697662,-0.687841415405273,0.0215569455176592,0.72554087638855,-0.674332976341248,0.0326011478900909,0.737707376480103,-0.440326571464539,0.76179826259613,-0.475158840417862,-0.413354456424713,0.816256165504456,-0.403564155101776,
- -0.389955252408981,0.837705016136169,-0.382341682910919,-0.382524818181992,0.81185507774353,-0.441096633672714,0.660362958908081,0.0152508020401001,-0.750791668891907,0.657814681529999,0.0220240671187639,-0.752857863903046,-0.440326571464539,0.76179826259613,-0.475158840417862,-0.382524818181992,0.81185507774353,-0.441096633672714,-0.712013185024261,-0.0180580783635378,0.701933860778809,-0.716506659984589,-0.0232925396412611,0.697191298007965,-0.724273264408112,-0.029176089912653,0.688895404338837,-0.720389366149902,-0.0243696272373199,0.693141579627991,0.431685239076614,-0.786183714866638,0.442225009202957,0.445475786924362,-0.761964559555054,0.470065206289291,0.447545826435089,-0.762375175952911,0.467425584793091,0.471880167722702,-0.766856908798218,0.435039907693863,0.789793610572815,-0.145388901233673,-0.595892727375031,0.431685239076614,-0.786183714866638,0.442225009202957,0.471880167722702,-0.766856908798218,0.435039907693863,0.742298483848572,-0.0316098779439926,-0.669323444366455,-0.400505989789963,0.790067195892334,-0.464100211858749,0.7080939412117,0.0336847864091396,-0.705314338207245,0.692710220813751,0.0535497590899467,-0.719225287437439,-0.424695789813995,0.758229851722717,-0.494692862033844,0,1,-7.36263336875709e-006,0,1,-4.7978541260818e-005,0,1,-0.000142532036988996,0,1,-8.39096755953506e-005,0,1,-2.10097441595281e-005,0,1,-1.20473996503279e-005,-0.000514483195729554,-0.000612354080658406,0.999999761581421,0.00890275463461876,0.0105963107198477,0.999904215335846,0.00830729678273201,0.00988757889717817,0.999916672706604,-0.000272533943643793,-0.000324378488585353,0.99999988079071,0.0392256267368793,-0.0393919162452221,-0.998453617095947,-0.0515153147280216,0.0314510688185692,-0.998176872730255,-0.0407134555280209,0.0428628250956535,-0.998251080513,0.0536292754113674,-0.0331588089466095,-0.998010277748108,-0.761526763439178,0.646829068660736,-0.041098952293396,-0.762190103530884,0.647343277931213,-0.00361232459545136,-0.767244219779968,0.641353189945221,0.00160845508798957,-0.764322102069855,0.643715918064117,-0.0379692539572716,
- 0.763887524604797,-0.644417107105255,-0.0346795469522476,0.765422344207764,-0.643523812294006,-0.00243600364774466,0.763128042221069,-0.646195530891418,0.0081976093351841,0.765143573284149,-0.64279967546463,-0.0369309894740582,0.763887524604797,-0.644417107105255,-0.0346795469522476,0.765143573284149,-0.64279967546463,-0.0369309894740582,0.0392256267368793,-0.0393919162452221,-0.998453617095947,0.0536292754113674,-0.0331588089466095,-0.998010277748108,-0.0407134555280209,0.0428628250956535,-0.998251080513,-0.0515153147280216,0.0314510688185692,-0.998176872730255,-0.761526763439178,0.646829068660736,-0.041098952293396,-0.764322102069855,0.643715918064117,-0.0379692539572716,-0.76806628704071,0.639569282531738,-0.0320207066833973,-0.766399741172791,0.642363488674164,0.000786095682997257,-0.761593520641327,0.64805281162262,-0.00168778840452433,-0.763569355010986,0.645378053188324,-0.0211940426379442,-0.0554834231734276,0.02793949842453,-0.998068690299988,-0.0278196856379509,0.0319249369204044,-0.99910306930542,0.156630471348763,-0.12330324947834,-0.979930281639099,0.0384269878268242,-0.0508640669286251,-0.997966110706329,-0.764322102069855,0.643715918064117,-0.0379692539572716,-0.767244219779968,0.641353189945221,0.00160845508798957,-0.766399741172791,0.642363488674164,0.000786095682997257,-0.76806628704071,0.639569282531738,-0.0320207066833973,0.00100230390671641,0.00117655284702778,0.999998867511749,-0.000514483195729554,-0.000612354080658406,0.999999761581421,-0.000272533943643793,-0.000324378488585353,0.99999988079071,0.000874683784786612,0.0010258830152452,0.999999165534973,0.7648965716362,-0.642993867397308,-0.038628026843071,0.764131903648376,-0.645058512687683,-0.00141553534194827,0.765422344207764,-0.643523812294006,-0.00243600364774466,0.763887524604797,-0.644417107105255,-0.0346795469522476,0.7648965716362,-0.642993867397308,-0.038628026843071,0.763887524604797,-0.644417107105255,-0.0346795469522476,0.0536292754113674,-0.0331588089466095,-0.998010277748108,0.0384269878268242,-0.0508640669286251,-0.997966110706329,
- -0.0407134555280209,0.0428628250956535,-0.998251080513,-0.0554834231734276,0.02793949842453,-0.998068690299988,0.0384269878268242,-0.0508640669286251,-0.997966110706329,0.0536292754113674,-0.0331588089466095,-0.998010277748108,-0.0554834231734276,0.02793949842453,-0.998068690299988,-0.0407134555280209,0.0428628250956535,-0.998251080513,-0.764322102069855,0.643715918064117,-0.0379692539572716,-0.76806628704071,0.639569282531738,-0.0320207066833973,0.0412667170166969,-0.0348382741212845,-0.998540639877319,-0.0415434800088406,0.0347036719322205,-0.998533844947815,-0.0506664291024208,0.0402104519307613,-0.997905910015106,0.0487474463880062,-0.0427559912204742,-0.99789559841156,0.76475715637207,-0.643530368804932,-0.0318608172237873,0.764108002185822,-0.643296301364899,-0.0480498746037483,0.0412667170166969,-0.0348382741212845,-0.998540639877319,0.0487474463880062,-0.0427559912204742,-0.99789559841156,0.765397071838379,-0.643558382987976,-0.000415462767705321,0.764793157577515,-0.644275784492493,0.000349314679624513,0.764108002185822,-0.643296301364899,-0.0480498746037483,0.76475715637207,-0.643530368804932,-0.0318608172237873,-0.00105904694646597,-0.00126063625793904,0.999998688697815,-0.00169307040050626,-0.00201550568453968,0.999996542930603,-0.00169199681840837,-0.00201422744430602,0.999996542930603,-0.00132210168521851,-0.0015737630892545,0.999997973442078,-0.765454053878784,0.641644477844238,-0.0487103015184402,-0.766621768474579,0.642098844051361,-0.000352322735125199,-0.76708984375,0.641539692878723,-0.000257323117693886,-0.766780734062195,0.641107976436615,-0.0320604257285595,-0.0506664291024208,0.0402104519307613,-0.997905910015106,-0.0415434800088406,0.0347036719322205,-0.998533844947815,-0.765454053878784,0.641644477844238,-0.0487103015184402,-0.766780734062195,0.641107976436615,-0.0320604257285595,-0.766780734062195,0.641107976436615,-0.0320604257285595,-0.76708984375,0.641539692878723,-0.000257323117693886,-0.765150487422943,0.643838286399841,0.00413573952391744,-0.763929903507233,0.644771218299866,-0.0261028148233891,
- 0.0150531390681863,0.0179163459688425,0.999726176261902,-0.00105904694646597,-0.00126063625793904,0.999998688697815,-0.00132210168521851,-0.0015737630892545,0.999997973442078,0.00654044561088085,0.00778448069468141,0.999948382377625,0.768222689628601,-0.640164613723755,-0.00482720695436001,0.765397071838379,-0.643558382987976,-0.000415462767705321,0.76475715637207,-0.643530368804932,-0.0318608172237873,0.767423570156097,-0.640376746654511,-0.0312875621020794,0.767423570156097,-0.640376746654511,-0.0312875621020794,0.76475715637207,-0.643530368804932,-0.0318608172237873,0.0487474463880062,-0.0427559912204742,-0.99789559841156,0.0435964576900005,-0.0546831041574478,-0.997551620006561,-0.0506664291024208,0.0402104519307613,-0.997905910015106,-0.0640877932310104,0.0285905413329601,-0.9975346326828,0.0435964576900005,-0.0546831041574478,-0.997551620006561,0.0487474463880062,-0.0427559912204742,-0.99789559841156,-0.0640877932310104,0.0285905413329601,-0.9975346326828,-0.0506664291024208,0.0402104519307613,-0.997905910015106,-0.766780734062195,0.641107976436615,-0.0320604257285595,-0.763929903507233,0.644771218299866,-0.0261028148233891,0.0435964576900005,-0.0546831041574478,-0.997551620006561,-0.0640877932310104,0.0285905413329601,-0.9975346326828,-0.0515153147280216,0.0314510688185692,-0.998176872730255,0.0392256267368793,-0.0393919162452221,-0.998453617095947,0.765143573284149,-0.64279967546463,-0.0369309894740582,0.767423570156097,-0.640376746654511,-0.0312875621020794,0.0435964576900005,-0.0546831041574478,-0.997551620006561,0.0392256267368793,-0.0393919162452221,-0.998453617095947,0.763128042221069,-0.646195530891418,0.0081976093351841,0.768222689628601,-0.640164613723755,-0.00482720695436001,0.767423570156097,-0.640376746654511,-0.0312875621020794,0.765143573284149,-0.64279967546463,-0.0369309894740582,0.00890275463461876,0.0105963107198477,0.999904215335846,0.0150531390681863,0.0179163459688425,0.999726176261902,0.00654044561088085,0.00778448069468141,0.999948382377625,0.00830729678273201,0.00988757889717817,0.999916672706604,
- -0.763929903507233,0.644771218299866,-0.0261028148233891,-0.765150487422943,0.643838286399841,0.00413573952391744,-0.762190103530884,0.647343277931213,-0.00361232459545136,-0.761526763439178,0.646829068660736,-0.041098952293396,-0.0515153147280216,0.0314510688185692,-0.998176872730255,-0.0640877932310104,0.0285905413329601,-0.9975346326828,-0.763929903507233,0.644771218299866,-0.0261028148233891,-0.761526763439178,0.646829068660736,-0.041098952293396,-0.00367437023669481,-0.0043355543166399,0.999983906745911,-0.00367248803377151,-0.00433334056288004,0.999983847141266,0.00100230390671641,0.00117655284702778,0.999998867511749,0.000874683784786612,0.0010258830152452,0.999999165534973,0.763344943523407,-0.645970821380615,-0.00513314083218575,0.76108992099762,-0.648643136024475,0.00211838260293007,0.764131903648376,-0.645058512687683,-0.00141553534194827,0.7648965716362,-0.642993867397308,-0.038628026843071,0.156630471348763,-0.12330324947834,-0.979930281639099,0.763344943523407,-0.645970821380615,-0.00513314083218575,0.7648965716362,-0.642993867397308,-0.038628026843071,0.0384269878268242,-0.0508640669286251,-0.997966110706329,-0.763569355010986,0.645378053188324,-0.0211940426379442,-0.0278196856379509,0.0319249369204044,-0.99910306930542,-0.0554834231734276,0.02793949842453,-0.998068690299988,-0.76806628704071,0.639569282531738,-0.0320207066833973,0.64225834608078,0.766457796096802,0.00684045674279332,0.644213199615479,0.764649212360382,-0.0173506885766983,0.64271754026413,0.764667212963104,-0.0468854755163193,0.642066538333893,0.765824556350708,0.0355435460805893,0.643139898777008,0.765748679637909,-1.16630974389409e-006,0.643137276172638,0.765751004219055,-2.18874703250549e-007,0.643136024475098,0.765751957893372,2.87384722241768e-007,0.643137753009796,0.765750527381897,-4.45807017968036e-007,0.64305192232132,0.765822649002075,-0,0.643088340759277,0.765792012214661,-0,0.643111526966095,0.765772521495819,-0,0.643091201782227,0.76578962802887,-0,-0.765679240226746,0.643115997314453,-0.0117158750072122,-0.765586972236633,0.643038511276245,0.0194485876709223,
- -0.765162885189056,0.642711997032166,0.0380401536822319,-0.765521705150604,0.643013298511505,0.0225970856845379,-0.765720546245575,0.643150627613068,-0.00542662898078561,-0.765219449996948,0.642729759216309,-0.0365762747824192,0.64283549785614,0.766004323959351,-0,0.642800807952881,0.766033351421356,-0,0.642886817455292,0.765961170196533,-0,0.642874538898468,0.765971422195435,-0,0.64514547586441,0.76352995634079,-0.0284525789320469,0.638238430023193,0.769505858421326,0.0226415991783142,0.648242235183716,0.761331737041473,-0.0124928439036012,0.642874538898468,0.765971422195435,-0,0.642886817455292,0.765961170196533,-0,0.642886698246002,0.765961408615112,-0,0.642879605293274,0.765967309474945,-0,0.647540092468262,0.759794056415558,-0.0583512708544731,0.64514547586441,0.76352995634079,-0.0284525789320469,0.648242235183716,0.761331737041473,-0.0124928439036012,0.64617908000946,0.761121213436127,-0.056099109351635,0.64313006401062,0.765756905078888,4.99345219395764e-007,0.643134653568268,0.765753149986267,-1.80060794718884e-007,0.643133938312531,0.76575380563736,7.36816105018079e-007,0.643133401870728,0.765754103660584,1.31265312575124e-006,0.643130481243134,0.765756607055664,4.29561396231293e-007,0.642879605293274,0.765967309474945,-0,0.642886698246002,0.765961408615112,-0,0.642944395542145,0.765912890434265,-0,0.642901122570038,0.765949189662933,-0,0.638667941093445,0.768507957458496,-0.0387158580124378,0.647540092468262,0.759794056415558,-0.0583512708544731,0.64617908000946,0.761121213436127,-0.056099109351635,0.640910089015961,0.766479969024658,-0.0417463220655918,0.643129944801331,0.765757143497467,4.11226352525773e-007,0.64313006401062,0.765756905078888,4.99345219395764e-007,0.643130481243134,0.765756607055664,4.29561396231293e-007,0.643129587173462,0.765757501125336,4.69971780603373e-007,0.642901122570038,0.765949189662933,-0,0.642944395542145,0.765912890434265,-0,0.643028974533081,0.765841901302338,-0,0.642973303794861,0.765888690948486,-0,0.640353083610535,0.767729222774506,-0.023233387619257,0.638667941093445,0.768507957458496,-0.0387158580124378,
- 0.640910089015961,0.766479969024658,-0.0417463220655918,0.641430199146271,0.766209244728088,-0.0386123806238174,0.643133461475372,0.765754103660584,3.13316547817522e-007,0.643129944801331,0.765757143497467,4.11226352525773e-007,0.643129587173462,0.765757501125336,4.69971780603373e-007,0.643133401870728,0.765754163265228,3.81854249553726e-007,0.642973303794861,0.765888690948486,-0,0.643028974533081,0.765841901302338,-0,0.643088340759277,0.765792012214661,-0,0.64305192232132,0.765822649002075,-0,0.644213199615479,0.764649212360382,-0.0173506885766983,0.640353083610535,0.767729222774506,-0.023233387619257,0.641430199146271,0.766209244728088,-0.0386123806238174,0.64271754026413,0.764667212963104,-0.0468854755163193,0.643137276172638,0.765751004219055,-2.18874703250549e-007,0.643133461475372,0.765754103660584,3.13316547817522e-007,0.643133401870728,0.765754163265228,3.81854249553726e-007,0.643136024475098,0.765751957893372,2.87384722241768e-007,0.640825748443604,0.764168322086334,-0.0734123438596725,0.643132388591766,0.76548820734024,-0.0202130973339081,0.642479538917542,0.766294181346893,-0.0036493563093245,0.641648471355438,0.764706492424011,-0.0592553056776524,0.636551082134247,0.769309282302856,-0.0544602274894714,0.636662781238556,0.76885324716568,-0.0593743212521076,0.643132388591766,0.76548820734024,-0.0202130973339081,0.640825748443604,0.764168322086334,-0.0734123438596725,0.642405927181244,0.764574527740479,-0.0523491874337196,0.640352725982666,0.766909837722778,-0.0423998013138771,0.636662781238556,0.76885324716568,-0.0593743212521076,0.636551082134247,0.769309282302856,-0.0544602274894714,0.649164021015167,0.760219812393188,-0.0255333073437214,0.649250209331512,0.758918762207031,-0.0501639991998672,0.640352725982666,0.766909837722778,-0.0423998013138771,0.642405927181244,0.764574527740479,-0.0523491874337196,0.642841219902039,0.762058019638062,-0.0776072442531586,0.644228875637054,0.763313770294189,-0.048179853707552,0.649250209331512,0.758918762207031,-0.0501639991998672,0.649164021015167,0.760219812393188,-0.0255333073437214,
- 0.640860915184021,0.764776110649109,-0.0664441660046577,0.640423953533173,0.76702880859375,-0.039037898182869,0.644228875637054,0.763313770294189,-0.048179853707552,0.642841219902039,0.762058019638062,-0.0776072442531586,0.642479538917542,0.766294181346893,-0.0036493563093245,0.643132388591766,0.76548820734024,-0.0202130973339081,0.644213199615479,0.764649212360382,-0.0173506885766983,0.64225834608078,0.766457796096802,0.00684045674279332,0.643132388591766,0.76548820734024,-0.0202130973339081,0.636662781238556,0.76885324716568,-0.0593743212521076,0.640353083610535,0.767729222774506,-0.023233387619257,0.644213199615479,0.764649212360382,-0.0173506885766983,0.636662781238556,0.76885324716568,-0.0593743212521076,0.640352725982666,0.766909837722778,-0.0423998013138771,0.638667941093445,0.768507957458496,-0.0387158580124378,0.640353083610535,0.767729222774506,-0.023233387619257,0.640352725982666,0.766909837722778,-0.0423998013138771,0.649250209331512,0.758918762207031,-0.0501639991998672,0.647540092468262,0.759794056415558,-0.0583512708544731,0.638667941093445,0.768507957458496,-0.0387158580124378,0.649250209331512,0.758918762207031,-0.0501639991998672,0.644228875637054,0.763313770294189,-0.048179853707552,0.64514547586441,0.76352995634079,-0.0284525789320469,0.647540092468262,0.759794056415558,-0.0583512708544731,0.644228875637054,0.763313770294189,-0.048179853707552,0.640423953533173,0.76702880859375,-0.039037898182869,0.638238430023193,0.769505858421326,0.0226415991783142,0.64514547586441,0.76352995634079,-0.0284525789320469,0.642736792564392,0.766087055206299,-0,0.642638087272644,0.766169846057892,-0,0.642800807952881,0.766033351421356,-0,0.64283549785614,0.766004323959351,-0,0.643086075782776,0.765793859958649,7.94194590980624e-007,0.643104732036591,0.765778243541718,1.07570019736158e-006,0.643017172813416,0.765851855278015,7.71956251810479e-007,0.643017172813416,0.76585179567337,7.05088837094081e-007,0.640826046466827,0.767685055732727,-0.00130443728994578,0.640989661216736,0.766836047172546,-0.0330891236662865,0.640423953533173,0.76702880859375,-0.039037898182869,
- 0.640860915184021,0.764776110649109,-0.0664441660046577,0.641263365745544,0.767194271087646,0.0139422295615077,0.644845545291901,0.764307737350464,-0.00279998756013811,0.644008755683899,0.764602243900299,-0.025224357843399,0.641729474067688,0.76623260974884,0.0327251702547073,0.642196476459503,0.764620959758759,0.0542092248797417,0.643035113811493,0.765623390674591,0.0180761758238077,0.643137276172638,0.765751004219055,7.09994765202282e-007,0.642903447151184,0.76546722650528,0.0271149910986423,-0.765651106834412,0.643149375915527,-0.0117173735052347,-0.765700876712799,0.643191158771515,0.00273297447711229,-0.765702486038208,0.643192529678345,-0.00178258051164448,-0.765701293945313,0.643191576004028,-0.00247525679878891,-0.765687108039856,0.643152236938477,-0.00886704493314028,-0.765204787254334,0.642747163772583,-0.0365767180919647,0.645993411540985,0.762598395347595,-0.0337074659764767,0.644008755683899,0.764602243900299,-0.025224357843399,0.644845545291901,0.764307737350464,-0.00279998756013811,0.6429403424263,0.764927446842194,0.0389090515673161,0.642106592655182,0.766611278057098,0.00254472205415368,0.643143892288208,0.765058696269989,0.0324216894805431,0.6429403424263,0.764927446842194,0.0389090515673161,0.641441762447357,0.766897916793823,0.0204974617809057,0.642106413841248,0.765860021114349,-0.0340283587574959,0.64046323299408,0.764357566833496,0.0745953842997551,0.642106592655182,0.766611278057098,0.00254472205415368,0.6429403424263,0.764927446842194,0.0389090515673161,0.643143892288208,0.765058696269989,0.0324216894805431,0.640081286430359,0.765197932720184,0.0690526589751244,0.64238041639328,0.766338169574738,0.00856096670031548,0.642106592655182,0.766611278057098,0.00254472205415368,0.64046323299408,0.764357566833496,0.0745953842997551,0.641441762447357,0.766897916793823,0.0204974617809057,0.6429403424263,0.764927446842194,0.0389090515673161,0.644845545291901,0.764307737350464,-0.00279998756013811,0.641263365745544,0.767194271087646,0.0139422295615077,0.633566915988922,0.771505534648895,-0.0580710172653198,
- 0.645993411540985,0.762598395347595,-0.0337074659764767,0.642106592655182,0.766611278057098,0.00254472205415368,0.64238041639328,0.766338169574738,0.00856096670031548,0.647553265094757,0.756306290626526,0.0931434333324432,0.64238041639328,0.766338169574738,0.00856096670031548,0.640081286430359,0.765197932720184,0.0690526589751244,0.641886353492737,0.757260262966156,0.120577320456505,0.643133938312531,0.76575380563736,7.36816105018079e-007,0.643104732036591,0.765778243541718,1.07570019736158e-006,0.643086075782776,0.765793859958649,7.94194590980624e-007,0.643133401870728,0.765754103660584,1.31265312575124e-006,0.642123937606812,0.766495883464813,0.0126858185976744,0.638238430023193,0.769505858421326,0.0226415991783142,0.640423953533173,0.76702880859375,-0.039037898182869,0.640989661216736,0.766836047172546,-0.0330891236662865,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.643126726150513,0.765759885311127,8.9953198312287e-007,0.643134653568268,0.765753149986267,6.00376154125115e-007,0.64313006401062,0.765756905078888,6.00373880388361e-007,0.643132269382477,0.765755176544189,9.2772836524091e-007,0.643126726150513,0.765759885311127,8.9953198312287e-007,0.64313006401062,0.765756905078888,6.00373880388361e-007,0.643129944801331,0.765757143497467,1.19869378067961e-006,0.643133521080017,0.765754044055939,6.18745104929985e-007,0.643133699893951,0.765753924846649,1.65589256084786e-007,0.643132269382477,0.765755176544189,9.2772836524091e-007,0.643129944801331,0.765757143497467,1.19869378067961e-006,0.643133461475372,0.765754103660584,5.93187678532558e-007,0.643035113811493,0.765623390674591,0.0180761758238077,0.643133521080017,0.765754044055939,6.18745104929985e-007,0.643133461475372,0.765754103660584,5.93187678532558e-007,0.643137276172638,0.765751004219055,7.09994765202282e-007,0.642815053462982,0.756471693515778,0.120579652488232,0.647553265094757,0.756306290626526,0.0931434333324432,0.641886353492737,0.757260262966156,0.120577320456505,0.0124503746628761,0.766537725925446,0.642078638076782,0.0558261200785637,0.764380216598511,0.64234447479248,
- 0.0523583628237247,0.764763176441193,0.642180681228638,-0.0355427227914333,0.765864074230194,0.642019510269165,5.08467110194033e-006,0.765746235847473,0.643142819404602,1.78961300889569e-007,0.765749394893646,0.643139183521271,3.32784838974476e-006,0.765749573707581,0.643138825893402,1.03864895208972e-005,0.765748858451843,0.643139719963074,9.39832148105779e-007,0.765754163265228,0.643133461475372,9.39833228130738e-007,0.765754640102386,0.643132865428925,5.64628692245606e-007,0.765753924846649,0.643133699893951,0.0558261200785637,0.764380216598511,0.64234447479248,0.0692012906074524,0.761871576309204,0.644020795822144,0.0564759932458401,0.76805454492569,0.637889266014099,0.0523583628237247,0.764763176441193,0.642180681228638,1.78961300889569e-007,0.765749394893646,0.643139183521271,9.39832148105779e-007,0.765754163265228,0.643133461475372,5.64628692245606e-007,0.765753924846649,0.643133699893951,3.32784838974476e-006,0.765749573707581,0.643138825893402,-0.0396817773580551,0.767089426517487,0.64031183719635,-0.0256349463015795,0.764571368694305,0.644029021263123,-0.0294142849743366,0.764353394508362,0.644126355648041,-0.0178863722831011,0.767404019832611,0.640914499759674,7.73786325680703e-007,0.765745103359222,0.643144249916077,8.80307595707563e-008,0.765749037265778,0.643139481544495,-2.87385006458862e-007,0.765749394893646,0.643139183521271,2.49546985742199e-007,0.765746235847473,0.643142819404602,0.0117175187915564,0.643157005310059,-0.765644788742065,-0.0194471627473831,0.643079519271851,-0.765552461147308,-0.0380401946604252,0.642735540866852,-0.765143096446991,-0.0225961804389954,0.643036901950836,-0.765501797199249,0.00542834121733904,0.643172800540924,-0.765701830387115,0.0365770868957043,0.642751812934875,-0.765200734138489,-0,0.76577627658844,0.643107056617737,-0,0.76580011844635,0.643078684806824,-0,0.765836715698242,0.643035054206848,-0,0.765803933143616,0.643074214458466,-0,0.765992879867554,0.642849147319794,-0,0.766061186790466,0.642767727375031,-0,0.766166210174561,0.642642498016357,-0,0.766087412834167,0.642736434936523,
- -0.043128028512001,0.756518423557281,0.652548730373383,-0.080895721912384,0.767976045608521,0.635349273681641,-0.0611054077744484,0.762330293655396,0.644297122955322,-0,0.765966832637787,0.642880141735077,-0,0.765977084636688,0.642867922782898,-0,0.766061186790466,0.642767727375031,-0,0.765992879867554,0.642849147319794,-7.50067783883424e-007,0.765754282474518,0.643133163452148,-5.86132671287487e-007,0.765776455402374,0.643106937408447,-6.6810895305025e-007,0.765766203403473,0.643119037151337,5.73800862184726e-005,0.765754342079163,0.643133342266083,-0.0357922092080116,0.760952889919281,0.647819101810455,-0.0611054077744484,0.762330293655396,0.644297122955322,-0.0680873245000839,0.76289427280426,0.642928123474121,-0.0751309767365456,0.762299239635468,0.642849266529083,-0,0.765966594219208,0.642880439758301,-0,0.765972256660461,0.642873704433441,-0,0.765977084636688,0.642867922782898,-0,0.765966832637787,0.642880141735077,8.6629661382176e-005,0.765754222869873,0.643133461475372,-5.09667188453022e-007,0.765758693218231,0.643128097057343,4.29705687565729e-005,0.765757620334625,0.643129289150238,-7.50067783883424e-007,0.765754282474518,0.643133163452148,5.73800862184726e-005,0.765754342079163,0.643133342266083,-0.032326478511095,0.768226206302643,0.639361917972565,-0.0357922092080116,0.760952889919281,0.647819101810455,-0.0751309767365456,0.762299239635468,0.642849266529083,-0.00725753325968981,0.769492745399475,0.638614356517792,-0,0.765921354293823,0.642934381961823,-0,0.765955567359924,0.642893552780151,-0,0.765972256660461,0.642873704433441,-0,0.765966594219208,0.642880439758301,-4.29071633334388e-007,0.765757143497467,0.643130004405975,4.29705687565729e-005,0.765757620334625,0.643129289150238,-5.09667188453022e-007,0.765758693218231,0.643128097057343,-4.38950962688978e-007,0.765756070613861,0.643131077289581,-0.0313956812024117,0.766956210136414,0.640931010246277,-0.032326478511095,0.768226206302643,0.639361917972565,-0.00725753325968981,0.769492745399475,0.638614356517792,-0.0544287636876106,0.764216303825378,0.642659366130829,
- -0,0.765853762626648,0.643014848232269,-0,0.765898048877716,0.642961978912354,-0,0.765955567359924,0.642893552780151,-0,0.765921354293823,0.642934381961823,-3.13316547817522e-007,0.765754163265228,0.643133461475372,-4.29071633334388e-007,0.765757143497467,0.643130004405975,-4.38950962688978e-007,0.765756070613861,0.643131077289581,-4.04475144932803e-007,0.765754640102386,0.643132865428925,-3.58319908855265e-007,0.765754163265228,0.643133461475372,-0.0256349463015795,0.764571368694305,0.644029021263123,-0.0313956812024117,0.766956210136414,0.640931010246277,-0.0544287636876106,0.764216303825378,0.642659366130829,-0.0294142849743366,0.764353394508362,0.644126355648041,-0,0.765803933143616,0.643074214458466,-0,0.765836715698242,0.643035054206848,-0,0.765898048877716,0.642961978912354,-0,0.765853762626648,0.643014848232269,8.80307595707563e-008,0.765749037265778,0.643139481544495,-3.13316547817522e-007,0.765754163265228,0.643133461475372,-3.58319908855265e-007,0.765754163265228,0.643133461475372,-2.87385006458862e-007,0.765749394893646,0.643139183521271,-0.0324219428002834,0.765380084514618,0.642761468887329,-0.0415641106665134,0.765039443969727,0.642640829086304,-0.0204974226653576,0.766897797584534,0.641441762447357,0.0340283624827862,0.765896320343018,0.642063081264496,-0.0746016651391983,0.766716659069061,0.637636423110962,-0.0310763046145439,0.770269572734833,0.636960804462433,-0.0415641106665134,0.765039443969727,0.642640829086304,-0.0324219428002834,0.765380084514618,0.642761468887329,-0.0204974226653576,0.766897797584534,0.641441762447357,-0.0415641106665134,0.765039443969727,0.642640829086304,-0.0256349463015795,0.764571368694305,0.644029021263123,-0.0396817773580551,0.767089426517487,0.64031183719635,-0.0415641106665134,0.765039443969727,0.642640829086304,-0.0310763046145439,0.770269572734833,0.636960804462433,-0.0313956812024117,0.766956210136414,0.640931010246277,-0.0256349463015795,0.764571368694305,0.644029021263123,-0.0310763046145439,0.770269572734833,0.636960804462433,-0.0265685096383095,0.768157184123993,0.639709889888763,
- -0.032326478511095,0.768226206302643,0.639361917972565,-0.0313956812024117,0.766956210136414,0.640931010246277,-0.0265685096383095,0.768157184123993,0.639709889888763,-0.0294370036572218,0.756656110286713,0.653150141239166,-0.0357922092080116,0.760952889919281,0.647819101810455,-0.032326478511095,0.768226206302643,0.639361917972565,-0.043128028512001,0.756518423557281,0.652548730373383,-0.0611054077744484,0.762330293655396,0.644297122955322,-0.0357922092080116,0.760952889919281,0.647819101810455,-0.0294370036572218,0.756656110286713,0.653150141239166,0.012277090921998,0.643101572990417,-0.765682399272919,0.0315233580768108,0.642830371856689,-0.76535975933075,-0.00449898419901729,0.643143534660339,-0.765732407569885,-0.0380411259829998,0.642716825008392,-0.765158891677856,-0.0225101392716169,0.643019378185272,-0.765519022941589,0.0692012906074524,0.761871576309204,0.644020795822144,0.0563238486647606,0.775326371192932,0.62904417514801,0.0564759932458401,0.76805454492569,0.637889266014099,-0.020903218537569,0.766783773899078,0.641565024852753,0.0558261200785637,0.764380216598511,0.64234447479248,0.0124503746628761,0.766537725925446,0.642078638076782,-0.0919703096151352,0.772305369377136,0.628558576107025,-0.0459541976451874,0.771101236343384,0.63505220413208,-0.0265685096383095,0.768157184123993,0.639709889888763,-0.0310763046145439,0.770269572734833,0.636960804462433,-0.0746016651391983,0.766716659069061,0.637636423110962,-0.0459541976451874,0.771101236343384,0.63505220413208,-0.0294370036572218,0.756656110286713,0.653150141239166,-0.0265685096383095,0.768157184123993,0.639709889888763,-0.080895721912384,0.767976045608521,0.635349273681641,-0.100826509296894,0.762866258621216,0.638646364212036,-0.100762233138084,0.765717625617981,0.635235130786896,-5.86185819884122e-007,0.765851736068726,0.64301723241806,-6.6810895305025e-007,0.765766203403473,0.643119037151337,-5.86132671287487e-007,0.765776455402374,0.643106937408447,-0.0611054077744484,0.762330293655396,0.644297122955322,-0.080895721912384,0.767976045608521,0.635349273681641,
- -0.100762233138084,0.765717625617981,0.635235130786896,-0.0680873245000839,0.76289427280426,0.642928123474121,0.276856929063797,0.946490228176117,-0.165851265192032,0.597841739654541,0.757306516170502,-0.262815773487091,0.590758144855499,0.690486252307892,0.417412936687469,0.53052943944931,0.7301926612854,0.430531352758408,0.597841739654541,0.757306516170502,-0.262815773487091,0.855886280536652,0.480117976665497,-0.192212253808975,0.636302351951599,0.636300086975098,0.436166971921921,0.590758144855499,0.690486252307892,0.417412936687469,0.855886280536652,0.480117976665497,-0.192212253808975,0.981488525867462,0.189580649137497,0.0271958038210869,0.655074715614319,0.582056045532227,0.481755077838898,0.636302351951599,0.636300086975098,0.436166971921921,0.981488525867462,0.189580649137497,0.0271958038210869,0.941050231456757,-0.0364319793879986,0.336299389600754,0.641984224319458,0.542405247688293,0.541897416114807,0.655074715614319,0.582056045532227,0.481755077838898,0.941050231456757,-0.0364319793879986,0.336299389600754,0.745654761791229,-0.137816324830055,0.651924610137939,0.600549161434174,0.527886748313904,0.60056334733963,0.641984224319458,0.542405247688293,0.541897416114807,0.745654761791229,-0.137816324830055,0.651924610137939,0.447289943695068,-0.0871829837560654,0.890129685401917,0.541885733604431,0.542420566082001,0.64198112487793,0.600549161434174,0.527886748313904,0.60056334733963,0.447289943695068,-0.0871829837560654,0.890129685401917,0.126192420721054,0.102175287902355,0.986729860305786,0.481758326292038,0.582071423530579,0.655058622360229,0.541885733604431,0.542420566082001,0.64198112487793,0.126192420721054,0.102175287902355,0.986729860305786,-0.131556510925293,0.378898739814758,0.916039645671844,0.436196118593216,0.63627564907074,0.636306703090668,0.481758326292038,0.582071423530579,0.655058622360229,-0.131556510925293,0.378898739814758,0.916039645671844,-0.257193028926849,0.66955029964447,0.69681715965271,0.417427390813828,0.690510988235474,0.590719044208527,0.436196118593216,0.63627564907074,0.636306703090668,
- -0.257193028926849,0.66955029964447,0.69681715965271,-0.216908007860184,0.895755112171173,0.388038218021393,0.430520445108414,0.730180025100708,0.530555725097656,0.417427390813828,0.690510988235474,0.590719044208527,-0.216908007860184,0.895755112171173,0.388038218021393,-0.112852819263935,0.980169653892517,0.162885531783104,0.44483008980751,0.744159936904907,0.498349517583847,0.430520445108414,0.730180025100708,0.530555725097656,0.163039997220039,0.980128109455109,-0.112990573048592,0.276856929063797,0.946490228176117,-0.165851265192032,0.53052943944931,0.7301926612854,0.430531352758408,0.498333275318146,0.744160950183868,0.444846659898758,-0.454464018344879,0.766067862510681,-0.454535722732544,-0.454510897397995,0.766067862510681,-0.454488843679428,-0.454517275094986,0.766067802906036,-0.45448249578476,-0.454494625329971,0.766067802906036,-0.454505056142807,-0.454497158527374,0.766067802906036,-0.454502463340759,-0.454541087150574,0.766067862510681,-0.454458713531494,-0.454472452402115,0.766067802906036,-0.454527229070663,-0.454477906227112,0.766067743301392,-0.454521805047989,-0.45450422167778,0.766067743301392,-0.454495429992676,-0.454386532306671,0.766067802906036,-0.45461305975914,-0.454456448554993,0.766067802906036,-0.45454329252243,-0.454510897397995,0.766067743301392,-0.454488813877106,0.544495940208435,0.63803243637085,0.544461965560913,0.54192978143692,0.638664603233337,0.54627799987793,0.40622341632843,0.897598206996918,-0.171173110604286,0.10482033342123,0.99437016248703,0.0155175775289536,0.546262681484222,0.638646304607391,0.541966795921326,0.544495940208435,0.63803243637085,0.544461965560913,0.10482033342123,0.99437016248703,0.0155175775289536,-0.12244188785553,0.94596791267395,0.300254553556442,0.546849846839905,0.640403389930725,0.539294719696045,0.546262681484222,0.638646304607391,0.541966795921326,-0.12244188785553,0.94596791267395,0.300254553556442,-0.214703440666199,0.765419840812683,0.606658935546875,0.546011984348297,0.642717778682709,0.537387013435364,0.546849846839905,0.640403389930725,0.539294719696045,
- -0.214703440666199,0.765419840812683,0.606658935546875,-0.147211194038391,0.500999927520752,0.852835297584534,0.544002413749695,0.645142316818237,0.536519229412079,0.546011984348297,0.642717778682709,0.537387013435364,-0.147211194038391,0.500999927520752,0.852835297584534,0.0618752166628838,0.223781079053879,0.972673416137695,0.541455149650574,0.64682137966156,0.537074148654938,0.544002413749695,0.645142316818237,0.536519229412079,0.0618752166628838,0.223781079053879,0.972673416137695,0.356779456138611,0.00783056020736694,0.934155821800232,0.540029883384705,0.647460401058197,0.537738621234894,0.541455149650574,0.64682137966156,0.537074148654938,0.356779456138611,0.00783056020736694,0.934155821800232,0.560046195983887,-0.0875917002558708,0.823818027973175,0.537079036235809,0.646833777427673,0.541435420513153,0.537746667861938,0.647460401058197,0.540021777153015,0.823786437511444,-0.087605819106102,0.560090482234955,0.885512113571167,-0.0406859554350376,0.462831616401672,0.536511540412903,0.645108103752136,0.544050514698029,0.537079036235809,0.646833777427673,0.541435420513153,0.885512113571167,-0.0406859554350376,0.462831616401672,0.977709770202637,0.140053361654282,0.156424537301064,0.537335276603699,0.6427321434021,0.546046078205109,0.536511540412903,0.645108103752136,0.544050514698029,0.977709770202637,0.140053361654282,0.156424537301064,0.910172581672668,0.404431462287903,-0.0895605012774467,0.539296507835388,0.640391528606415,0.546861886978149,0.537335276603699,0.6427321434021,0.546046078205109,0.910172581672668,0.404431462287903,-0.0895605012774467,0.701012015342712,0.681689441204071,-0.2094796448946,0.54192978143692,0.638664603233337,0.54627799987793,0.539296507835388,0.640391528606415,0.546861886978149,0.701012015342712,0.681689441204071,-0.2094796448946,0.40622341632843,0.897598206996918,-0.171173110604286,0.600549161434174,0.527886748313904,0.60056334733963,0.541885733604431,0.542420566082001,0.64198112487793,0.54192978143692,0.638664603233337,0.54627799987793,0.544495940208435,0.63803243637085,0.544461965560913,
- 0.641984224319458,0.542405247688293,0.541897416114807,0.600549161434174,0.527886748313904,0.60056334733963,0.544495940208435,0.63803243637085,0.544461965560913,0.546262681484222,0.638646304607391,0.541966795921326,0.655074715614319,0.582056045532227,0.481755077838898,0.641984224319458,0.542405247688293,0.541897416114807,0.546262681484222,0.638646304607391,0.541966795921326,0.546849846839905,0.640403389930725,0.539294719696045,0.636302351951599,0.636300086975098,0.436166971921921,0.655074715614319,0.582056045532227,0.481755077838898,0.546849846839905,0.640403389930725,0.539294719696045,0.546011984348297,0.642717778682709,0.537387013435364,0.590758144855499,0.690486252307892,0.417412936687469,0.636302351951599,0.636300086975098,0.436166971921921,0.546011984348297,0.642717778682709,0.537387013435364,0.544002413749695,0.645142316818237,0.536519229412079,0.53052943944931,0.7301926612854,0.430531352758408,0.590758144855499,0.690486252307892,0.417412936687469,0.544002413749695,0.645142316818237,0.536519229412079,0.541455149650574,0.64682137966156,0.537074148654938,0.498333275318146,0.744160950183868,0.444846659898758,0.53052943944931,0.7301926612854,0.430531352758408,0.541455149650574,0.64682137966156,0.537074148654938,0.540029883384705,0.647460401058197,0.537738621234894,0.430520445108414,0.730180025100708,0.530555725097656,0.44483008980751,0.744159936904907,0.498349517583847,0.537746667861938,0.647460401058197,0.540021777153015,0.537079036235809,0.646833777427673,0.541435420513153,0.417427390813828,0.690510988235474,0.590719044208527,0.430520445108414,0.730180025100708,0.530555725097656,0.537079036235809,0.646833777427673,0.541435420513153,0.536511540412903,0.645108103752136,0.544050514698029,0.436196118593216,0.63627564907074,0.636306703090668,0.417427390813828,0.690510988235474,0.590719044208527,0.536511540412903,0.645108103752136,0.544050514698029,0.537335276603699,0.6427321434021,0.546046078205109,0.481758326292038,0.582071423530579,0.655058622360229,0.436196118593216,0.63627564907074,0.636306703090668,0.537335276603699,0.6427321434021,0.546046078205109,
- 0.539296507835388,0.640391528606415,0.546861886978149,0.541885733604431,0.542420566082001,0.64198112487793,0.481758326292038,0.582071423530579,0.655058622360229,0.539296507835388,0.640391528606415,0.546861886978149,0.54192978143692,0.638664603233337,0.54627799987793,0.530947804450989,0.695349216461182,0.484338700771332,0.641620635986328,0.601442813873291,0.476014137268066,0.627535998821259,0.554347157478333,0.546715557575226,0.541868925094604,0.639365613460541,0.545517861843109,0.641620635986328,0.601442813873291,0.476014137268066,0.696793556213379,0.407320559024811,0.59039717912674,0.618711769580841,0.474980652332306,0.625770926475525,0.627535998821259,0.554347157478333,0.546715557575226,0.696793556213379,0.407320559024811,0.59039717912674,0.597963988780975,0.436399221420288,0.672305643558502,0.535788297653198,0.513535976409912,0.670232594013214,0.618711769580841,0.474980652332306,0.625770926475525,0.597963988780975,0.436399221420288,0.672305643558502,0.533168435096741,0.524069607257843,0.664140403270721,0.504109978675842,0.612196087837219,0.609170854091644,0.535788297653198,0.513535976409912,0.670232594013214,0.533168435096741,0.524069607257843,0.664140403270721,0.580436170101166,0.580886542797089,0.570670366287231,0.53930675983429,0.646658360958099,0.539426803588867,0.504109978675842,0.612196087837219,0.609170854091644,0.580436170101166,0.580886542797089,0.570670366287231,0.549027144908905,0.586227893829346,0.595739901065826,0.54149454832077,0.646126210689545,0.537870466709137,0.53930675983429,0.646658360958099,0.539426803588867,0.549027144908905,0.586227893829346,0.595739901065826,0.515178740024567,0.606161177158356,0.605936944484711,0.54370129108429,0.644656956195831,0.537407159805298,0.54149454832077,0.646126210689545,0.537870466709137,0.515178740024567,0.606161177158356,0.605936944484711,0.487916648387909,0.63543176651001,0.598468005657196,0.545263290405273,0.64278781414032,0.538062989711761,0.54370129108429,0.644656956195831,0.537407159805298,0.487916648387909,0.63543176651001,0.598468005657196,0.474667191505432,0.666145026683807,0.575275599956512,
- 0.545962035655975,0.640803873538971,0.539718270301819,0.545263290405273,0.64278781414032,0.538062989711761,0.474667191505432,0.666145026683807,0.575275599956512,0.478914380073547,0.689956665039063,0.542771458625793,0.545497894287109,0.639369189739227,0.54188483953476,0.545962035655975,0.640803873538971,0.539718270301819,0.478914380073547,0.689956665039063,0.542771458625793,0.489579319953918,0.700523197650909,0.519210398197174,0.54496568441391,0.63884037733078,0.543042838573456,0.545497894287109,0.639369189739227,0.54188483953476,0.519216597080231,0.700522422790527,0.489573746919632,0.530947804450989,0.695349216461182,0.484338700771332,0.541868925094604,0.639365613460541,0.545517861843109,0.542966067790985,0.638840317726135,0.545042216777802,0.53930675983429,0.646658360958099,0.539426803588867,0.54149454832077,0.646126210689545,0.537870466709137,0.365139812231064,0.89078164100647,-0.270520180463791,0.0331649854779243,0.997327327728271,-0.0651033520698547,0.504109978675842,0.612196087837219,0.609170854091644,0.53930675983429,0.646658360958099,0.539426803588867,0.0331649854779243,0.997327327728271,-0.0651033520698547,-0.245269611477852,0.918839454650879,0.309155166149139,0.535788297653198,0.513535976409912,0.670232594013214,0.504109978675842,0.612196087837219,0.609170854091644,-0.245269611477852,0.918839454650879,0.309155166149139,-0.307844519615173,0.600561678409576,0.737941324710846,0.618711769580841,0.474980652332306,0.625770926475525,0.535788297653198,0.513535976409912,0.670232594013214,-0.307844519615173,0.600561678409576,0.737941324710846,-0.139309763908386,0.276740700006485,0.950793027877808,0.627535998821259,0.554347157478333,0.546715557575226,0.618711769580841,0.474980652332306,0.625770926475525,-0.139309763908386,0.276740700006485,0.950793027877808,0.112875565886498,0.0358678735792637,0.992961585521698,0.541868925094604,0.639365613460541,0.545517861843109,0.627535998821259,0.554347157478333,0.546715557575226,0.112875565886498,0.0358678735792637,0.992961585521698,0.310738921165466,-0.0890160650014877,0.946317851543427,
- 0.542966067790985,0.638840317726135,0.545042216777802,0.541868925094604,0.639365613460541,0.545517861843109,0.310738921165466,-0.0890160650014877,0.946317851543427,0.533913969993591,-0.191840350627899,0.823488473892212,0.545497894287109,0.639369189739227,0.54188483953476,0.54496568441391,0.63884037733078,0.543042838573456,0.823406755924225,-0.191826939582825,0.534044802188873,0.89277970790863,-0.142153292894363,0.427477478981018,0.545962035655975,0.640803873538971,0.539718270301819,0.545497894287109,0.639369189739227,0.54188483953476,0.89277970790863,-0.142153292894363,0.427477478981018,0.994310975074768,0.056783452630043,0.0901192501187325,0.545263290405273,0.64278781414032,0.538062989711761,0.545962035655975,0.640803873538971,0.539718270301819,0.994310975074768,0.056783452630043,0.0901192501187325,0.919983386993408,0.347761064767838,-0.180811583995819,0.54370129108429,0.644656956195831,0.537407159805298,0.545263290405273,0.64278781414032,0.538062989711761,0.919983386993408,0.347761064767838,-0.180811583995819,0.689689159393311,0.653053462505341,-0.312810033559799,0.54149454832077,0.646126210689545,0.537870466709137,0.54370129108429,0.644656956195831,0.537407159805298,0.689689159393311,0.653053462505341,-0.312810033559799,0.365139812231064,0.89078164100647,-0.270520180463791,0.535060226917267,0.770310640335083,0.346889227628708,0.627755343914032,0.698137879371643,0.344277083873749,0.559193015098572,0.667142033576965,0.492163211107254,0.53270947933197,0.688264727592468,0.492455333471298,0.627755343914032,0.698137879371643,0.344277083873749,0.683956623077393,0.6148282289505,0.392669916152954,0.570716679096222,0.645120441913605,0.508037447929382,0.559193015098572,0.667142033576965,0.492163211107254,0.683956623077393,0.6148282289505,0.392669916152954,0.693251311779022,0.546020865440369,0.470386922359467,0.567303478717804,0.632485449314117,0.52737945318222,0.570716679096222,0.645120441913605,0.508037447929382,0.693251311779022,0.546020865440369,0.470386922359467,0.661876499652863,0.505500316619873,0.553524255752563,0.558011949062347,0.629381597042084,0.540834128856659,
- 0.567303478717804,0.632485449314117,0.52737945318222,0.661876499652863,0.505500316619873,0.553524255752563,0.61377078294754,0.496492654085159,0.613824605941772,0.54998242855072,0.629269421100616,0.549125969409943,0.558011949062347,0.629381597042084,0.540834128856659,0.61377078294754,0.496492654085159,0.613824605941772,0.553521633148193,0.505483508110046,0.661891400814056,0.542418003082275,0.62862241268158,0.557329952716827,0.54998242855072,0.629269421100616,0.549125969409943,0.553521633148193,0.505483508110046,0.661891400814056,0.470503628253937,0.545950651168823,0.693227410316467,0.529543101787567,0.630567371845245,0.567423164844513,0.542418003082275,0.62862241268158,0.557329952716827,0.470503628253937,0.545950651168823,0.693227410316467,0.392728388309479,0.614789664745331,0.683957636356354,0.50981593132019,0.642079830169678,0.572556793689728,0.529543101787567,0.630567371845245,0.567423164844513,0.392728388309479,0.614789664745331,0.683957636356354,0.344306945800781,0.698232233524323,0.627634108066559,0.492358982563019,0.66383957862854,0.562938451766968,0.50981593132019,0.642079830169678,0.572556793689728,0.344306945800781,0.698232233524323,0.627634108066559,0.346919357776642,0.770357608795166,0.534973084926605,0.490095138549805,0.686003029346466,0.537779331207275,0.492358982563019,0.66383957862854,0.562938451766968,0.346919357776642,0.770357608795166,0.534973084926605,0.374977171421051,0.802786111831665,0.463601797819138,0.494531035423279,0.695354282855988,0.521460890769959,0.490095138549805,0.686003029346466,0.537779331207275,0.46351957321167,0.802791893482208,0.375066578388214,0.535060226917267,0.770310640335083,0.346889227628708,0.53270947933197,0.688264727592468,0.492455333471298,0.521338880062103,0.695356369018555,0.494656801223755,0.54998242855072,0.629269421100616,0.549125969409943,0.542418003082275,0.62862241268158,0.557329952716827,0.311601430177689,0.869626581668854,-0.382954716682434,-0.0511075407266617,0.986035585403442,-0.158498734235764,0.558011949062347,0.629381597042084,0.540834128856659,0.54998242855072,0.629269421100616,0.549125969409943,
- -0.0511075407266617,0.986035585403442,-0.158498734235764,-0.324578881263733,0.927789032459259,0.184000298380852,0.567303478717804,0.632485449314117,0.52737945318222,0.558011949062347,0.629381597042084,0.540834128856659,-0.324578881263733,0.927789032459259,0.184000298380852,-0.435427844524384,0.71065217256546,0.552608489990234,0.570716679096222,0.645120441913605,0.508037447929382,0.567303478717804,0.632485449314117,0.52737945318222,-0.435427844524384,0.71065217256546,0.552608489990234,-0.354102432727814,0.392617851495743,0.848800778388977,0.559193015098572,0.667142033576965,0.492163211107254,0.570716679096222,0.645120441913605,0.508037447929382,-0.354102432727814,0.392617851495743,0.848800778388977,-0.102535024285316,0.0590682476758957,0.992974102497101,0.53270947933197,0.688264727592468,0.492455333471298,0.559193015098572,0.667142033576965,0.492163211107254,-0.102535024285316,0.0590682476758957,0.992974102497101,0.252118229866028,-0.200813919305801,0.946630954742432,0.521338880062103,0.695356369018555,0.494656801223755,0.53270947933197,0.688264727592468,0.492455333471298,0.252118229866028,-0.200813919305801,0.946630954742432,0.495926082134247,-0.310102880001068,0.811106443405151,0.490095138549805,0.686003029346466,0.537779331207275,0.494531035423279,0.695354282855988,0.521460890769959,0.811060309410095,-0.310080945491791,0.496015280485153,0.888121068477631,-0.25889179110527,0.379757821559906,0.492358982563019,0.66383957862854,0.562938451766968,0.490095138549805,0.686003029346466,0.537779331207275,0.888121068477631,-0.25889179110527,0.379757821559906,0.999070823192596,-0.0416341871023178,0.011143097653985,0.50981593132019,0.642079830169678,0.572556793689728,0.492358982563019,0.66383957862854,0.562938451766968,0.999070823192596,-0.0416341871023178,0.011143097653985,0.917859435081482,0.276256084442139,-0.28498563170433,0.529543101787567,0.630567371845245,0.567423164844513,0.50981593132019,0.642079830169678,0.572556793689728,0.917859435081482,0.276256084442139,-0.28498563170433,0.666173875331879,0.609927177429199,-0.429186820983887,
- 0.542418003082275,0.62862241268158,0.557329952716827,0.529543101787567,0.630567371845245,0.567423164844513,0.666173875331879,0.609927177429199,-0.429186820983887,0.311601430177689,0.869626581668854,-0.382954716682434,0.540439903736115,0.720200598239899,0.435012519359589,0.59360271692276,0.677991092205048,0.433548033237457,0.544045627117157,0.645884692668915,0.535581409931183,0.540811896324158,0.653748035430908,0.529278814792633,0.59360271692276,0.677991092205048,0.433548033237457,0.619218409061432,0.631575584411621,0.466562837362289,0.535604178905487,0.642095029354095,0.548490941524506,0.544045627117157,0.645884692668915,0.535581409931183,0.619218409061432,0.631575584411621,0.466562837362289,0.615274488925934,0.600385129451752,0.510857224464417,0.520566165447235,0.650641620159149,0.552880167961121,0.535604178905487,0.642095029354095,0.548490941524506,0.615274488925934,0.600385129451752,0.510857224464417,0.594728529453278,0.58735454082489,0.548919558525085,0.512496948242188,0.665506541728973,0.542630612850189,0.520566165447235,0.650641620159149,0.552880167961121,0.594728529453278,0.58735454082489,0.548919558525085,0.57295435667038,0.586045920848846,0.57295161485672,0.521393299102783,0.673779726028442,0.523612439632416,0.512496948242188,0.665506541728973,0.542630612850189,0.57295435667038,0.586045920848846,0.57295161485672,0.548878073692322,0.5873664021492,0.594755053520203,0.539831399917603,0.666788876056671,0.51378470659256,0.521393299102783,0.673779726028442,0.523612439632416,0.548878073692322,0.5873664021492,0.594755053520203,0.510913491249084,0.60036301612854,0.615249276161194,0.55121785402298,0.652149319648743,0.520442247390747,0.539831399917603,0.666788876056671,0.51378470659256,0.510913491249084,0.60036301612854,0.615249276161194,0.466590255498886,0.63160628080368,0.619166553020477,0.548140048980713,0.642723083496094,0.535209953784943,0.55121785402298,0.652149319648743,0.520442247390747,0.466590255498886,0.63160628080368,0.619166553020477,0.433580279350281,0.678014039993286,0.593553066253662,0.535625219345093,0.645580053329468,0.544363856315613,
- 0.548140048980713,0.642723083496094,0.535209953784943,0.433580279350281,0.678014039993286,0.593553066253662,0.434982478618622,0.720183193683624,0.540487229824066,0.529267549514771,0.653754472732544,0.54081517457962,0.535625219345093,0.645580053329468,0.544363856315613,0.434982478618622,0.720183193683624,0.540487229824066,0.451529979705811,0.737908065319061,0.501609742641449,0.528113961219788,0.658559024333954,0.536093056201935,0.529267549514771,0.653754472732544,0.54081517457962,0.50160539150238,0.737907648086548,0.451535642147064,0.540439903736115,0.720200598239899,0.435012519359589,0.540811896324158,0.653748035430908,0.529278814792633,0.536069273948669,0.658559083938599,0.528138041496277,0.521393299102783,0.673779726028442,0.523612439632416,0.539831399917603,0.666788876056671,0.51378470659256,0.423569440841675,0.897247612476349,-0.124643132090569,0.137329384684563,0.989129424095154,0.0525701381266117,0.512496948242188,0.665506541728973,0.542630612850189,0.521393299102783,0.673779726028442,0.523612439632416,0.137329384684563,0.989129424095154,0.0525701381266117,-0.0783979445695877,0.943194270133972,0.322859883308411,0.520566165447235,0.650641620159149,0.552880167961121,0.512496948242188,0.665506541728973,0.542630612850189,-0.0783979445695877,0.943194270133972,0.322859883308411,-0.166035443544388,0.771706581115723,0.613922774791718,0.535604178905487,0.642095029354095,0.548490941524506,0.520566165447235,0.650641620159149,0.552880167961121,-0.166035443544388,0.771706581115723,0.613922774791718,-0.101913049817085,0.520632684230804,0.847676515579224,0.544045627117157,0.645884692668915,0.535581409931183,0.535604178905487,0.642095029354095,0.548490941524506,-0.101913049817085,0.520632684230804,0.847676515579224,0.150141000747681,0.219973936676979,0.963882327079773,0.540811896324158,0.653748035430908,0.529278814792633,0.544045627117157,0.645884692668915,0.535581409931183,0.150141000747681,0.219973936676979,0.963882327079773,0.486317455768585,0.038595512509346,0.872929394245148,0.536069273948669,0.658559083938599,0.528138041496277,
- 0.540811896324158,0.653748035430908,0.529278814792633,0.486317455768585,0.038595512509346,0.872929394245148,0.578016519546509,0.00717743206769228,0.815993547439575,0.529267549514771,0.653754472732544,0.54081517457962,0.528113961219788,0.658559024333954,0.536093056201935,0.815930306911469,0.00717346649616957,0.578105807304382,0.872920453548431,0.0385688133537769,0.486335784196854,0.535625219345093,0.645580053329468,0.544363856315613,0.529267549514771,0.653754472732544,0.54081517457962,0.872920453548431,0.0385688133537769,0.486335784196854,0.964132308959961,0.179206490516663,0.195790693163872,0.548140048980713,0.642723083496094,0.535209953784943,0.535625219345093,0.645580053329468,0.544363856315613,0.964132308959961,0.179206490516663,0.195790693163872,0.902116596698761,0.428895264863968,-0.047271803021431,0.55121785402298,0.652149319648743,0.520442247390747,0.548140048980713,0.642723083496094,0.535209953784943,0.902116596698761,0.428895264863968,-0.047271803021431,0.70356410741806,0.692127645015717,-0.161111742258072,0.539831399917603,0.666788876056671,0.51378470659256,0.55121785402298,0.652149319648743,0.520442247390747,0.70356410741806,0.692127645015717,-0.161111742258072,0.423569440841675,0.897247612476349,-0.124643132090569,0.532564759254456,0.688970029354095,0.491625159978867,0.567253232002258,0.678706347942352,0.466456234455109,0.543132543563843,0.644348442554474,0.53835129737854,0.542166829109192,0.633872866630554,0.551598012447357,0.567253232002258,0.678706347942352,0.466456234455109,0.612848877906799,0.646324276924133,0.454622209072113,0.560829699039459,0.642496526241302,0.522176563739777,0.543132543563843,0.644348442554474,0.53835129737854,0.612848877906799,0.646324276924133,0.454622209072113,0.65109521150589,0.592210233211517,0.474723279476166,0.583413541316986,0.622584223747253,0.521553039550781,0.560829699039459,0.642496526241302,0.522176563739777,0.65109521150589,0.592210233211517,0.474723279476166,0.656495213508606,0.537096738815308,0.529661297798157,0.590726494789124,0.596664130687714,0.543170511722565,
- 0.583413541316986,0.622584223747253,0.521553039550781,0.656495213508606,0.537096738815308,0.529661297798157,0.608233392238617,0.510005533695221,0.608232259750366,0.576367437839508,0.58480566740036,0.57079142332077,0.590726494789124,0.596664130687714,0.543170511722565,0.608233392238617,0.510005533695221,0.608232259750366,0.529626607894897,0.537100195884705,0.656520485877991,0.548157572746277,0.594387590885162,0.588410317897797,0.576367437839508,0.58480566740036,0.57079142332077,0.529626607894897,0.537100195884705,0.656520485877991,0.474748373031616,0.592193305492401,0.651092290878296,0.524902582168579,0.619628548622131,0.583556175231934,0.548157572746277,0.594387590885162,0.588410317897797,0.474748373031616,0.592193305492401,0.651092290878296,0.454646706581116,0.646283745765686,0.612873315811157,0.5232914686203,0.640588343143463,0.561972141265869,0.524902582168579,0.619628548622131,0.583556175231934,0.454646706581116,0.646283745765686,0.612873315811157,0.466458082199097,0.678736805915833,0.567215442657471,0.538378000259399,0.644087851047516,0.543415248394012,0.5232914686203,0.640588343143463,0.561972141265869,0.466458082199097,0.678736805915833,0.567215442657471,0.491621285676956,0.68897408246994,0.532563030719757,0.552052974700928,0.634326457977295,0.54117226600647,0.538378000259399,0.644087851047516,0.543415248394012,0.491621285676956,0.68897408246994,0.532563030719757,0.500746548175812,0.688739418983459,0.524300456047058,0.554209530353546,0.627559781074524,0.546827733516693,0.552052974700928,0.634326457977295,0.54117226600647,0.5242879986763,0.688739538192749,0.500759422779083,0.532564759254456,0.688970029354095,0.491625159978867,0.542166829109192,0.633872866630554,0.551598012447357,0.546819984912872,0.627559781074524,0.554217219352722,0.576367437839508,0.58480566740036,0.57079142332077,0.548157572746277,0.594387590885162,0.588410317897797,0.406242102384567,0.897616684436798,-0.171031162142754,0.104883074760437,0.994361996650696,0.0156161654740572,0.590726494789124,0.596664130687714,0.543170511722565,0.576367437839508,0.58480566740036,0.57079142332077,
- 0.104883074760437,0.994361996650696,0.0156161654740572,-0.122326634824276,0.945967793464661,0.300301790237427,0.583413541316986,0.622584223747253,0.521553039550781,0.590726494789124,0.596664130687714,0.543170511722565,-0.122326634824276,0.945967793464661,0.300301790237427,-0.214690312743187,0.765426695346832,0.60665488243103,0.560829699039459,0.642496526241302,0.522176563739777,0.583413541316986,0.622584223747253,0.521553039550781,-0.214690312743187,0.765426695346832,0.60665488243103,-0.147207215428352,0.500989079475403,0.852842330932617,0.543132543563843,0.644348442554474,0.53835129737854,0.560829699039459,0.642496526241302,0.522176563739777,-0.147207215428352,0.500989079475403,0.852842330932617,0.0619669929146767,0.223860815167427,0.972649157047272,0.542166829109192,0.633872866630554,0.551598012447357,0.543132543563843,0.644348442554474,0.53835129737854,0.0619669929146767,0.223860815167427,0.972649157047272,0.356890946626663,0.00798405706882477,0.934111952781677,0.546819984912872,0.627559781074524,0.554217219352722,0.542166829109192,0.633872866630554,0.551598012447357,0.356890946626663,0.00798405706882477,0.934111952781677,0.560097455978394,-0.087427131831646,0.823800623416901,0.552052974700928,0.634326457977295,0.54117226600647,0.554209530353546,0.627559781074524,0.546827733516693,0.823788046836853,-0.0874275639653206,0.56011575460434,0.885465383529663,-0.0405387878417969,0.46293380856514,0.538378000259399,0.644087851047516,0.543415248394012,0.552052974700928,0.634326457977295,0.54117226600647,0.885465383529663,-0.0405387878417969,0.46293380856514,0.977685689926147,0.140122517943382,0.156513601541519,0.5232914686203,0.640588343143463,0.561972141265869,0.538378000259399,0.644087851047516,0.543415248394012,0.977685689926147,0.140122517943382,0.156513601541519,0.910159111022949,0.404480248689651,-0.0894776806235313,0.524902582168579,0.619628548622131,0.583556175231934,0.5232914686203,0.640588343143463,0.561972141265869,0.910159111022949,0.404480248689651,-0.0894776806235313,0.701027691364288,0.681693553924561,-0.209413573145866,
- 0.548157572746277,0.594387590885162,0.588410317897797,0.524902582168579,0.619628548622131,0.583556175231934,0.701027691364288,0.681693553924561,-0.209413573145866,0.406242102384567,0.897616684436798,-0.171031162142754,0.511265993118286,0.759823739528656,0.401590675115585,0.590864717960358,0.712946832180023,0.377605319023132,0.548319280147552,0.649393975734711,0.526909470558167,0.540878415107727,0.654284119606018,0.528547823429108,0.590864717960358,0.712946832180023,0.377605319023132,0.654775440692902,0.644332826137543,0.395100444555283,0.553963661193848,0.64266836643219,0.529246270656586,0.548319280147552,0.649393975734711,0.526909470558167,0.654775440692902,0.644332826137543,0.395100444555283,0.685902833938599,0.572300314903259,0.449455052614212,0.556309521198273,0.635932862758636,0.534891664981842,0.553963661193848,0.64266836643219,0.529246270656586,0.685902833938599,0.572300314903259,0.449455052614212,0.675854384899139,0.516231834888458,0.526047110557556,0.554661571979523,0.631036698818207,0.542349755764008,0.556309521198273,0.635932862758636,0.534891664981842,0.675854384899139,0.516231834888458,0.526047110557556,0.627438068389893,0.491118907928467,0.60425478219986,0.549565672874451,0.629239022731781,0.54957789182663,0.554661571979523,0.631036698818207,0.542349755764008,0.627438068389893,0.491118907928467,0.60425478219986,0.553530216217041,0.5036860704422,0.663253128528595,0.542332053184509,0.63102775812149,0.554688990116119,0.549565672874451,0.629239022731781,0.54957789182663,0.553530216217041,0.5036860704422,0.663253128528595,0.474047124385834,0.550522983074188,0.687170922756195,0.534935474395752,0.635898053646088,0.556307315826416,0.542332053184509,0.63102775812149,0.554688990116119,0.474047124385834,0.550522983074188,0.687170922756195,0.410109788179398,0.619166135787964,0.669659197330475,0.529240667819977,0.642677903175354,0.553957939147949,0.534935474395752,0.635898053646088,0.556307315826416,0.410109788179398,0.619166135787964,0.669659197330475,0.378964513540268,0.691276550292969,0.615242004394531,0.526908397674561,0.649420976638794,0.548288285732269,
- 0.529240667819977,0.642677903175354,0.553957939147949,0.378964513540268,0.691276550292969,0.615242004394531,0.388929843902588,0.747248888015747,0.538843989372253,0.528514802455902,0.654288232326508,0.540905892848969,0.526908397674561,0.649420976638794,0.548288285732269,0.388929843902588,0.747248888015747,0.538843989372253,0.413741022348404,0.771547794342041,0.483251959085464,0.530323684215546,0.656071484088898,0.536960899829865,0.528514802455902,0.654288232326508,0.540905892848969,0.483277589082718,0.771546125411987,0.413714110851288,0.511265993118286,0.759823739528656,0.401590675115585,0.540878415107727,0.654284119606018,0.528547823429108,0.536969065666199,0.656071484088898,0.530315518379211,0.549565672874451,0.629239022731781,0.54957789182663,0.542332053184509,0.63102775812149,0.554688990116119,0.352664619684219,0.886940658092499,-0.298268258571625,0.0128134898841381,0.996049582958221,-0.0878695547580719,0.554661571979523,0.631036698818207,0.542349755764008,0.549565672874451,0.629239022731781,0.54957789182663,0.0128134898841381,0.996049582958221,-0.0878695547580719,-0.243407785892487,0.941479921340942,0.233169913291931,0.556309521198273,0.635932862758636,0.534891664981842,0.554661571979523,0.631036698818207,0.542349755764008,-0.243407785892487,0.941479921340942,0.233169913291931,-0.347508132457733,0.7379150390625,0.578549563884735,0.553963661193848,0.64266836643219,0.529246270656586,0.556309521198273,0.635932862758636,0.534891664981842,-0.347508132457733,0.7379150390625,0.578549563884735,-0.271489560604095,0.439765453338623,0.856095790863037,0.548319280147552,0.649393975734711,0.526909470558167,0.553963661193848,0.64266836643219,0.529246270656586,-0.271489560604095,0.439765453338623,0.856095790863037,-0.0355587042868137,0.127212479710579,0.991237938404083,0.540878415107727,0.654284119606018,0.528547823429108,0.548319280147552,0.649393975734711,0.526909470558167,-0.0355587042868137,0.127212479710579,0.991237938404083,0.296932846307755,-0.116163372993469,0.947806477546692,0.536969065666199,0.656071484088898,0.530315518379211,
- 0.540878415107727,0.654284119606018,0.528547823429108,0.296932846307755,-0.116163372993469,0.947806477546692,0.525488913059235,-0.220843479037285,0.821638405323029,0.528514802455902,0.654288232326508,0.540905892848969,0.530323684215546,0.656071484088898,0.536960899829865,0.821596920490265,-0.220848083496094,0.525551676750183,0.892960071563721,-0.170749455690384,0.416493773460388,0.526908397674561,0.649420976638794,0.548288285732269,0.528514802455902,0.654288232326508,0.540905892848969,0.892960071563721,-0.170749455690384,0.416493773460388,0.996935427188873,0.0328592397272587,0.0709937810897827,0.529240667819977,0.642677903175354,0.553957939147949,0.526908397674561,0.649420976638794,0.548288285732269,0.996935427188873,0.0328592397272587,0.0709937810897827,0.920820116996765,0.330799251794815,-0.206547990441322,0.534935474395752,0.635898053646088,0.556307315826416,0.529240667819977,0.642677903175354,0.553957939147949,0.920820116996765,0.330799251794815,-0.206547990441322,0.684958755970001,0.643516063690186,-0.34164109826088,0.542332053184509,0.63102775812149,0.554688990116119,0.534935474395752,0.635898053646088,0.556307315826416,0.684958755970001,0.643516063690186,-0.34164109826088,0.352664619684219,0.886940658092499,-0.298268258571625,0.538695812225342,0.671729385852814,0.508514106273651,0.637391209602356,0.58635413646698,0.499921232461929,0.647056221961975,0.533103764057159,0.545085966587067,0.541327953338623,0.638427257537842,0.547151446342468,0.637391209602356,0.58635413646698,0.499921232461929,0.700088620185852,0.395052790641785,0.594818770885468,0.621196746826172,0.483952343463898,0.616364121437073,0.647056221961975,0.533103764057159,0.545085966587067,0.700088620185852,0.395052790641785,0.594818770885468,0.61554366350174,0.418724209070206,0.667664706707001,0.551095962524414,0.508392810821533,0.661687254905701,0.621196746826172,0.483952343463898,0.616364121437073,0.61554366350174,0.418724209070206,0.667664706707001,0.560120224952698,0.49249991774559,0.666115045547485,0.534765243530273,0.604786038398743,0.59013557434082,
- 0.551095962524414,0.508392810821533,0.661687254905701,0.560120224952698,0.49249991774559,0.666115045547485,0.59466564655304,0.541058778762817,0.594666421413422,0.552872955799103,0.623416543006897,0.552886307239532,0.534765243530273,0.604786038398743,0.59013557434082,0.59466564655304,0.541058778762817,0.594666421413422,0.533672153949738,0.563116669654846,0.630946576595306,0.544124782085419,0.62702351808548,0.557467401027679,0.552872955799103,0.623416543006897,0.552886307239532,0.533672153949738,0.563116669654846,0.630946576595306,0.493568122386932,0.606850564479828,0.622995138168335,0.53679496049881,0.635976076126099,0.554423630237579,0.544124782085419,0.62702351808548,0.557467401027679,0.493568122386932,0.606850564479828,0.622995138168335,0.48399755358696,0.646042048931122,0.590233981609344,0.537811636924744,0.642315626144409,0.546067118644714,0.53679496049881,0.635976076126099,0.554423630237579,0.48399755358696,0.646042048931122,0.590233981609344,0.499040424823761,0.664000928401947,0.55683171749115,0.543904542922974,0.641933083534241,0.540453433990479,0.537811636924744,0.642315626144409,0.546067118644714,0.499040424823761,0.664000928401947,0.55683171749115,0.50827693939209,0.671451449394226,0.539265811443329,0.547018587589264,0.638266384601593,0.541651785373688,0.543904542922974,0.641933083534241,0.540453433990479,0.50827693939209,0.671451449394226,0.539265811443329,0.502212643623352,0.682110726833344,0.531514286994934,0.540996670722961,0.643396377563477,0.541630625724792,0.547018587589264,0.638266384601593,0.541651785373688,0.526925444602966,0.682188749313354,0.506920337677002,0.538695812225342,0.671729385852814,0.508514106273651,0.541327953338623,0.638427257537842,0.547151446342468,0.541572153568268,0.643396437168121,0.541055083274841,0.552872955799103,0.623416543006897,0.552886307239532,0.544124782085419,0.62702351808548,0.557467401027679,0.337223708629608,0.881506145000458,-0.330495268106461,-0.080067865550518,0.993572175502777,-0.0800218507647514,0.534765243530273,0.604786038398743,0.59013557434082,0.552872955799103,0.623416543006897,0.552886307239532,
- -0.080067865550518,0.993572175502777,-0.0800218507647514,-0.375613152980804,0.811801254749298,0.447094410657883,0.551095962524414,0.508392810821533,0.661687254905701,0.534765243530273,0.604786038398743,0.59013557434082,-0.375613152980804,0.811801254749298,0.447094410657883,-0.285937786102295,0.504991054534912,0.814385414123535,0.621196746826172,0.483952343463898,0.616364121437073,0.551095962524414,0.508392810821533,0.661687254905701,-0.285937786102295,0.504991054534912,0.814385414123535,0.0208952128887177,0.252771019935608,0.967300534248352,0.647056221961975,0.533103764057159,0.545085966587067,0.621196746826172,0.483952343463898,0.616364121437073,0.0208952128887177,0.252771019935608,0.967300534248352,0.306394964456558,0.212681949138641,0.927840828895569,0.541327953338623,0.638427257537842,0.547151446342468,0.647056221961975,0.533103764057159,0.545085966587067,0.306394964456558,0.212681949138641,0.927840828895569,0.460411161184311,0.123220205307007,0.879112303256989,0.541572153568268,0.643396437168121,0.541055083274841,0.541327953338623,0.638427257537842,0.547151446342468,0.460411161184311,0.123220205307007,0.879112303256989,0.509328246116638,-0.0174335818737745,0.860395729541779,0.547018587589264,0.638266384601593,0.541651785373688,0.540996670722961,0.643396377563477,0.541630625724792,0.860350787639618,-0.0174350701272488,0.509404301643372,0.879125237464905,0.123082123696804,0.460423171520233,0.543904542922974,0.641933083534241,0.540453433990479,0.547018587589264,0.638266384601593,0.541651785373688,0.879125237464905,0.123082123696804,0.460423171520233,0.932023644447327,0.261651128530502,0.25074028968811,0.537811636924744,0.642315626144409,0.546067118644714,0.543904542922974,0.641933083534241,0.540453433990479,0.932023644447327,0.261651128530502,0.25074028968811,0.907435357570648,0.413101971149445,-0.0768621116876602,0.53679496049881,0.635976076126099,0.554423630237579,0.537811636924744,0.642315626144409,0.546067118644714,0.907435357570648,0.413101971149445,-0.0768621116876602,0.689819395542145,0.655059278011322,-0.308296263217926,
- 0.544124782085419,0.62702351808548,0.557467401027679,0.53679496049881,0.635976076126099,0.554423630237579,0.689819395542145,0.655059278011322,-0.308296263217926,0.337223708629608,0.881506145000458,-0.330495268106461,0.540906608104706,0.727515876293182,0.422067224979401,0.600671231746674,0.682429194450378,0.41651463508606,0.545112013816834,0.646236419677734,0.534070551395416,0.540360867977142,0.660959362983704,0.520713865756989,0.600671231746674,0.682429194450378,0.41651463508606,0.640612840652466,0.626859843730927,0.443465858697891,0.53072315454483,0.642663419246674,0.552554786205292,0.545112013816834,0.646236419677734,0.534070551395416,0.640612840652466,0.626859843730927,0.443465858697891,0.651134490966797,0.576696217060089,0.493401914834976,0.508684039115906,0.657121777534485,0.556265830993652,0.53072315454483,0.642663419246674,0.552554786205292,0.651134490966797,0.576696217060089,0.493401914834976,0.631717562675476,0.544096529483795,0.552170217037201,0.49941211938858,0.678568303585052,0.538639724254608,0.508684039115906,0.657121777534485,0.556265830993652,0.631717562675476,0.544096529483795,0.552170217037201,0.597018420696259,0.535860121250153,0.597011804580688,0.512734353542328,0.688625454902649,0.512736201286316,0.49941211938858,0.678568303585052,0.538639724254608,0.597018420696259,0.535860121250153,0.597011804580688,0.552139759063721,0.544119477272034,0.631724417209625,0.538630306720734,0.678577661514282,0.499409526586533,0.512734353542328,0.688625454902649,0.512736201286316,0.552139759063721,0.544119477272034,0.631724417209625,0.493465840816498,0.576674699783325,0.651105105876923,0.556279420852661,0.657149076461792,0.50863379240036,0.538630306720734,0.678577661514282,0.499409526586533,0.493465840816498,0.576674699783325,0.651105105876923,0.443469852209091,0.626920163631439,0.640551090240479,0.552564382553101,0.642696738243103,0.53067284822464,0.556279420852661,0.657149076461792,0.50863379240036,0.443469852209091,0.626920163631439,0.640551090240479,0.416544049978256,0.682426035404205,0.600654542446136,0.534121572971344,0.646168053150177,0.545143127441406,
- 0.552564382553101,0.642696738243103,0.53067284822464,0.416544049978256,0.682426035404205,0.600654542446136,0.422056317329407,0.727494895458221,0.540943324565887,0.52072411775589,0.660957157611847,0.540353715419769,0.534121572971344,0.646168053150177,0.545143127441406,0.422056317329407,0.727494895458221,0.540943324565887,0.441109299659729,0.74756133556366,0.496562987565994,0.518835425376892,0.669093668460846,0.532093524932861,0.52072411775589,0.660957157611847,0.540353715419769,0.496568113565445,0.747560918331146,0.441104203462601,0.540906608104706,0.727515876293182,0.422067224979401,0.540360867977142,0.660959362983704,0.520713865756989,0.532094299793243,0.669093668460846,0.51883465051651,0.512734353542328,0.688625454902649,0.512736201286316,0.538630306720734,0.678577661514282,0.499409526586533,0.28959858417511,0.858049213886261,-0.424127608537674,-0.148983463644981,0.977553367614746,-0.148974716663361,0.49941211938858,0.678568303585052,0.538639724254608,0.512734353542328,0.688625454902649,0.512736201286316,-0.148983463644981,0.977553367614746,-0.148974716663361,-0.424114912748337,0.858048021793365,0.289620846509933,0.508684039115906,0.657121777534485,0.556265830993652,0.49941211938858,0.678568303585052,0.538639724254608,-0.424114912748337,0.858048021793365,0.289620846509933,-0.433544546365738,0.608257710933685,0.664877235889435,0.53072315454483,0.642663419246674,0.552554786205292,0.508684039115906,0.657121777534485,0.556265830993652,-0.433544546365738,0.608257710933685,0.664877235889435,-0.232965022325516,0.313686698675156,0.920504212379456,0.545112013816834,0.646236419677734,0.534070551395416,0.53072315454483,0.642663419246674,0.552554786205292,-0.232965022325516,0.313686698675156,0.920504212379456,0.10180190205574,0.0724763199687004,0.99216103553772,0.540360867977142,0.660959362983704,0.520713865756989,0.545112013816834,0.646236419677734,0.534070551395416,0.10180190205574,0.0724763199687004,0.99216103553772,0.456475585699081,-0.0588547363877296,0.887787342071533,0.532094299793243,0.669093668460846,0.51883465051651,
- 0.540360867977142,0.660959362983704,0.520713865756989,0.456475585699081,-0.0588547363877296,0.887787342071533,0.561496734619141,-0.0811684802174568,0.823488473892212,0.52072411775589,0.660957157611847,0.540353715419769,0.518835425376892,0.669093668460846,0.532093524932861,0.823473691940308,-0.0811687782406807,0.561518371105194,0.887782692909241,-0.0588777214288712,0.456481516361237,0.534121572971344,0.646168053150177,0.545143127441406,0.52072411775589,0.660957157611847,0.540353715419769,0.887782692909241,-0.0588777214288712,0.456481516361237,0.992170810699463,0.0724340230226517,0.101737797260284,0.552564382553101,0.642696738243103,0.53067284822464,0.534121572971344,0.646168053150177,0.545143127441406,0.992170810699463,0.0724340230226517,0.101737797260284,0.920514702796936,0.313661813735962,-0.232957482337952,0.556279420852661,0.657149076461792,0.50863379240036,0.552564382553101,0.642696738243103,0.53067284822464,0.920514702796936,0.313661813735962,-0.232957482337952,0.664868831634521,0.608248472213745,-0.433570325374603,0.538630306720734,0.678577661514282,0.499409526586533,0.556279420852661,0.657149076461792,0.50863379240036,0.664868831634521,0.608248472213745,-0.433570325374603,0.28959858417511,0.858049213886261,-0.424127608537674,0.526373684406281,0.713273406028748,0.46278715133667,0.572449803352356,0.686130046844482,0.448917508125305,0.552844285964966,0.653893709182739,0.516513645648956,0.540234267711639,0.662193655967712,0.519275009632111,0.572449803352356,0.686130046844482,0.448917508125305,0.609465777873993,0.646378099918365,0.459071666002274,0.562448143959045,0.642436861991882,0.520506501197815,0.552844285964966,0.653893709182739,0.516513645648956,0.609465777873993,0.646378099918365,0.459071666002274,0.627517104148865,0.604623198509216,0.490564197301865,0.566392064094543,0.631082773208618,0.530032694339752,0.562448143959045,0.642436861991882,0.520506501197815,0.627517104148865,0.604623198509216,0.490564197301865,0.621730804443359,0.572169780731201,0.534857511520386,0.563640594482422,0.622768104076386,0.54265022277832,
- 0.566392064094543,0.631082773208618,0.530032694339752,0.621730804443359,0.572169780731201,0.534857511520386,0.593662142753601,0.557592332363129,0.580220758914948,0.554953873157501,0.619708597660065,0.554966270923615,0.563640594482422,0.622768104076386,0.54265022277832,0.593662142753601,0.557592332363129,0.580220758914948,0.550809383392334,0.564887464046478,0.614419400691986,0.542634069919586,0.622766435146332,0.563657939434052,0.554953873157501,0.619708597660065,0.554966270923615,0.550809383392334,0.564887464046478,0.614419400691986,0.504718005657196,0.592050909996033,0.628279805183411,0.530009627342224,0.631089568138123,0.566405951976776,0.542634069919586,0.622766435146332,0.563657939434052,0.504718005657196,0.592050909996033,0.628279805183411,0.467704892158508,0.631798148155212,0.618128836154938,0.520462810993195,0.642429649829865,0.562496840953827,0.530009627342224,0.631089568138123,0.566405951976776,0.467704892158508,0.631798148155212,0.618128836154938,0.449672877788544,0.673507571220398,0.586670219898224,0.516503393650055,0.653871893882751,0.552879571914673,0.520462810993195,0.642429649829865,0.562496840953827,0.449672877788544,0.673507571220398,0.586670219898224,0.455458223819733,0.70599490404129,0.542336702346802,0.519256711006165,0.662189304828644,0.540257096290588,0.516503393650055,0.653871893882751,0.552879571914673,0.455458223819733,0.70599490404129,0.542336702346802,0.469916194677353,0.720303952693939,0.510236322879791,0.522337555885315,0.665222644805908,0.53351879119873,0.519256711006165,0.662189304828644,0.540257096290588,0.510302305221558,0.720301926136017,0.469847649335861,0.526373684406281,0.713273406028748,0.46278715133667,0.540234267711639,0.662193655967712,0.519275009632111,0.533555030822754,0.665222346782684,0.522300958633423,0.554953873157501,0.619708597660065,0.554966270923615,0.542634069919586,0.622766435146332,0.563657939434052,0.406276166439056,0.897605895996094,-0.171007364988327,0.1048603951931,0.994365215301514,0.0155660677701235,0.563640594482422,0.622768104076386,0.54265022277832,0.554953873157501,0.619708597660065,0.554966270923615,
- 0.1048603951931,0.994365215301514,0.0155660677701235,-0.122381187975407,0.945959210395813,0.300306469202042,0.566392064094543,0.631082773208618,0.530032694339752,0.563640594482422,0.622768104076386,0.54265022277832,-0.122381187975407,0.945959210395813,0.300306469202042,-0.214669644832611,0.765446245670319,0.606637597084045,0.562448143959045,0.642436861991882,0.520506501197815,0.566392064094543,0.631082773208618,0.530032694339752,-0.214669644832611,0.765446245670319,0.606637597084045,-0.14715912938118,0.500987350940704,0.852851688861847,0.552844285964966,0.653893709182739,0.516513645648956,0.562448143959045,0.642436861991882,0.520506501197815,-0.14715912938118,0.500987350940704,0.852851688861847,0.0619426369667053,0.223839834332466,0.972655653953552,0.540234267711639,0.662193655967712,0.519275009632111,0.552844285964966,0.653893709182739,0.516513645648956,0.0619426369667053,0.223839834332466,0.972655653953552,0.356845140457153,0.00794076174497604,0.93412983417511,0.533555030822754,0.665222346782684,0.522300958633423,0.540234267711639,0.662193655967712,0.519275009632111,0.356845140457153,0.00794076174497604,0.93412983417511,0.560015499591827,-0.0874477401375771,0.823854088783264,0.519256711006165,0.662189304828644,0.540257096290588,0.522337555885315,0.665222644805908,0.53351879119873,0.823815941810608,-0.0874491930007935,0.560071408748627,0.885505080223084,-0.040490135550499,0.462862104177475,0.516503393650055,0.653871893882751,0.552879571914673,0.519256711006165,0.662189304828644,0.540257096290588,0.885505080223084,-0.040490135550499,0.462862104177475,0.977690100669861,0.140112787485123,0.156494572758675,0.520462810993195,0.642429649829865,0.562496840953827,0.516503393650055,0.653871893882751,0.552879571914673,0.977690100669861,0.140112787485123,0.156494572758675,0.910177767276764,0.404426544904709,-0.0895308181643486,0.530009627342224,0.631089568138123,0.566405951976776,0.520462810993195,0.642429649829865,0.562496840953827,0.910177767276764,0.404426544904709,-0.0895308181643486,0.70101934671402,0.68170952796936,-0.209389626979828,
- 0.542634069919586,0.622766435146332,0.563657939434052,0.530009627342224,0.631089568138123,0.566405951976776,0.70101934671402,0.68170952796936,-0.209389626979828,0.406276166439056,0.897605895996094,-0.171007364988327,0.526644647121429,0.712064206600189,0.46433824300766,0.572847187519073,0.686683535575867,0.447562217712402,0.54468035697937,0.645776271820068,0.535066664218903,0.541458070278168,0.645833671092987,0.538258373737335,0.572847187519073,0.686683535575867,0.447562217712402,0.613263189792633,0.646355986595154,0.45401793718338,0.550332188606262,0.642695665359497,0.532988548278809,0.54468035697937,0.645776271820068,0.535066664218903,0.613263189792633,0.646355986595154,0.45401793718338,0.636004984378815,0.600258052349091,0.484961926937103,0.555627346038818,0.63625031709671,0.535223245620728,0.550332188606262,0.642695665359497,0.532988548278809,0.636004984378815,0.600258052349091,0.484961926937103,0.632055401802063,0.562021434307098,0.533514797687531,0.556433320045471,0.62943971157074,0.542390704154968,0.555627346038818,0.63625031709671,0.535223245620728,0.632055401802063,0.562021434307098,0.533514797687531,0.593108952045441,0.544473469257355,0.593102276325226,0.551932394504547,0.62648206949234,0.550355315208435,0.556433320045471,0.62943971157074,0.542390704154968,0.593108952045441,0.544473469257355,0.593102276325226,0.53345137834549,0.562054991722107,0.632079064846039,0.543866217136383,0.628765285015106,0.555755257606506,0.551932394504547,0.62648206949234,0.550355315208435,0.53345137834549,0.562054991722107,0.632079064846039,0.48505163192749,0.600218713283539,0.635973632335663,0.536335170269012,0.635272562503815,0.555673897266388,0.543866217136383,0.628765285015106,0.555755257606506,0.48505163192749,0.600218713283539,0.635973632335663,0.454054296016693,0.646373629570007,0.613217711448669,0.533509373664856,0.641814887523651,0.550855159759521,0.536335170269012,0.635272562503815,0.555673897266388,0.454054296016693,0.646373629570007,0.613217711448669,0.447597980499268,0.686700880527496,0.572798430919647,0.53510457277298,0.64534068107605,0.545159161090851,
- 0.533509373664856,0.641814887523651,0.550855159759521,0.447597980499268,0.686700880527496,0.572798430919647,0.464317977428436,0.71204000711441,0.526695191860199,0.538080275058746,0.645658612251282,0.541843712329865,0.53510457277298,0.64534068107605,0.545159161090851,0.464317977428436,0.71204000711441,0.526695191860199,0.472237765789032,0.718060851097107,0.511253476142883,0.539495348930359,0.645394444465637,0.54075014591217,0.538080275058746,0.645658612251282,0.541843712329865,0.511258542537689,0.718060791492462,0.472232341766357,0.526644647121429,0.712064206600189,0.46433824300766,0.541458070278168,0.645833671092987,0.538258373737335,0.54075676202774,0.645394504070282,0.539488792419434,0.551932394504547,0.62648206949234,0.550355315208435,0.543866217136383,0.628765285015106,0.555755257606506,0.352636367082596,0.886966407299042,-0.298225045204163,0.0128141287714243,0.996051669120789,-0.0878462120890617,0.556433320045471,0.62943971157074,0.542390704154968,0.551932394504547,0.62648206949234,0.550355315208435,0.0128141287714243,0.996051669120789,-0.0878462120890617,-0.243394702672958,0.941488742828369,0.233147993683815,0.555627346038818,0.63625031709671,0.535223245620728,0.556433320045471,0.62943971157074,0.542390704154968,-0.243394702672958,0.941488742828369,0.233147993683815,-0.347463309764862,0.737935841083527,0.578549921512604,0.550332188606262,0.642695665359497,0.532988548278809,0.555627346038818,0.63625031709671,0.535223245620728,-0.347463309764862,0.737935841083527,0.578549921512604,-0.271450936794281,0.439764529466629,0.856108427047729,0.54468035697937,0.645776271820068,0.535066664218903,0.550332188606262,0.642695665359497,0.532988548278809,-0.271450936794281,0.439764529466629,0.856108427047729,-0.0355322249233723,0.127226635813713,0.991237044334412,0.541458070278168,0.645833671092987,0.538258373737335,0.54468035697937,0.645776271820068,0.535066664218903,-0.0355322249233723,0.127226635813713,0.991237044334412,0.296901404857636,-0.116176187992096,0.947814702987671,0.54075676202774,0.645394504070282,0.539488792419434,
- 0.541458070278168,0.645833671092987,0.538258373737335,0.296901404857636,-0.116176187992096,0.947814702987671,0.525433361530304,-0.220895633101463,0.821659803390503,0.538080275058746,0.645658612251282,0.541843712329865,0.539495348930359,0.645394444465637,0.54075014591217,0.821628749370575,-0.220898240804672,0.52548086643219,0.892969965934753,-0.170763581991196,0.416466623544693,0.53510457277298,0.64534068107605,0.545159161090851,0.538080275058746,0.645658612251282,0.541843712329865,0.892969965934753,-0.170763581991196,0.416466623544693,0.99693238735199,0.0328675657510757,0.0710328221321106,0.533509373664856,0.641814887523651,0.550855159759521,0.53510457277298,0.64534068107605,0.545159161090851,0.99693238735199,0.0328675657510757,0.0710328221321106,0.920823872089386,0.330837160348892,-0.206470489501953,0.536335170269012,0.635272562503815,0.555673897266388,0.533509373664856,0.641814887523651,0.550855159759521,0.920823872089386,0.330837160348892,-0.206470489501953,0.684972286224365,0.643546998500824,-0.341555833816528,0.543866217136383,0.628765285015106,0.555755257606506,0.536335170269012,0.635272562503815,0.555673897266388,0.684972286224365,0.643546998500824,-0.341555833816528,0.352636367082596,0.886966407299042,-0.298225045204163,0.527443110942841,0.70915025472641,0.467877984046936,0.570749044418335,0.683650970458984,0.454826235771179,0.535009562969208,0.636168718338013,0.555926442146301,0.542283117771149,0.631337523460388,0.554384291172028,0.570749044418335,0.683650970458984,0.454826235771179,0.605464160442352,0.646374464035034,0.464341700077057,0.529543280601501,0.642651677131653,0.553699254989624,0.535009562969208,0.636168718338013,0.555926442146301,0.605464160442352,0.646374464035034,0.464341700077057,0.622391641139984,0.607210099697113,0.493887275457382,0.527300477027893,0.649186253547668,0.548189163208008,0.529543280601501,0.642651677131653,0.553699254989624,0.622391641139984,0.607210099697113,0.493887275457382,0.616921126842499,0.576733112335205,0.535525262355804,0.528830528259277,0.653980314731598,0.540969610214233,
- 0.527300477027893,0.649186253547668,0.548189163208008,0.616921126842499,0.576733112335205,0.535525262355804,0.590608716011047,0.563101410865784,0.57801216840744,0.53386515378952,0.655744969844818,0.533841252326965,0.528830528259277,0.653980314731598,0.540969610214233,0.590608716011047,0.563101410865784,0.57801216840744,0.550462067127228,0.569915473461151,0.610072076320648,0.540919899940491,0.654000103473663,0.528856933116913,0.53386515378952,0.655744969844818,0.533841252326965,0.550462067127228,0.569915473461151,0.610072076320648,0.507230758666992,0.595389604568481,0.623079597949982,0.548214793205261,0.649196147918701,0.527261674404144,0.540919899940491,0.654000103473663,0.528856933116913,0.507230758666992,0.595389604568481,0.623079597949982,0.472498446702957,0.632688939571381,0.613555252552032,0.553714156150818,0.642648339271545,0.52953177690506,0.548214793205261,0.649196147918701,0.527261674404144,0.472498446702957,0.632688939571381,0.613555252552032,0.455563724040985,0.671851992607117,0.584017753601074,0.55596524477005,0.636147022247314,0.534995019435883,0.553714156150818,0.642648339271545,0.52953177690506,0.455563724040985,0.671851992607117,0.584017753601074,0.46099928021431,0.702317655086517,0.542429447174072,0.554380118846893,0.631340205669403,0.542284429073334,0.55596524477005,0.636147022247314,0.534995019435883,0.46099928021431,0.702317655086517,0.542429447174072,0.474600434303284,0.71572470664978,0.512340247631073,0.552596032619476,0.629571080207825,0.546148300170898,0.554380118846893,0.631340205669403,0.542284429073334,0.51232248544693,0.715725123882294,0.474619120359421,0.527443110942841,0.70915025472641,0.467877984046936,0.542283117771149,0.631337523460388,0.554384291172028,0.546118676662445,0.629570960998535,0.552625358104706,0.53386515378952,0.655744969844818,0.533841252326965,0.540919899940491,0.654000103473663,0.528856933116913,0.340762078762054,0.882691860198975,-0.323629915714264,-0.006084312684834,0.994038343429565,-0.108861595392227,0.528830528259277,0.653980314731598,0.540969610214233,0.53386515378952,0.655744969844818,0.533841252326965,
- -0.006084312684834,0.994038343429565,-0.108861595392227,-0.267589300870895,0.938353300094604,0.218835666775703,0.527300477027893,0.649186253547668,0.548189163208008,0.528830528259277,0.653980314731598,0.540969610214233,-0.267589300870895,0.938353300094604,0.218835666775703,-0.373761266469955,0.7305988073349,0.571426272392273,0.529543280601501,0.642651677131653,0.553699254989624,0.527300477027893,0.649186253547668,0.548189163208008,-0.373761266469955,0.7305988073349,0.571426272392273,-0.29605171084404,0.426263302564621,0.854782462120056,0.535009562969208,0.636168718338013,0.555926442146301,0.529543280601501,0.642651677131653,0.553699254989624,-0.29605171084404,0.426263302564621,0.854782462120056,-0.0553971379995346,0.107216402888298,0.992691218852997,0.542283117771149,0.631337523460388,0.554384291172028,0.535009562969208,0.636168718338013,0.555926442146301,-0.0553971379995346,0.107216402888298,0.992691218852997,0.283963441848755,-0.1413304656744,0.948361992835999,0.546118676662445,0.629570960998535,0.552625358104706,0.542283117771149,0.631337523460388,0.554384291172028,0.283963441848755,-0.1413304656744,0.948361992835999,0.517209470272064,-0.247580409049988,0.81926703453064,0.554380118846893,0.631340205669403,0.542284429073334,0.552596032619476,0.629571080207825,0.546148300170898,0.819246768951416,-0.247582376003265,0.517240583896637,0.892350792884827,-0.197146534919739,0.406009078025818,0.55596524477005,0.636147022247314,0.534995019435883,0.554380118846893,0.631340205669403,0.542284429073334,0.892350792884827,-0.197146534919739,0.406009078025818,0.998523473739624,0.0107593191787601,0.0532468482851982,0.553714156150818,0.642648339271545,0.52953177690506,0.55596524477005,0.636147022247314,0.534995019435883,0.998523473739624,0.0107593191787601,0.0532468482851982,0.920810580253601,0.31502503156662,-0.229928553104401,0.548214793205261,0.649196147918701,0.527261674404144,0.553714156150818,0.642648339271545,0.52953177690506,0.920810580253601,0.31502503156662,-0.229928553104401,0.68009227514267,0.634130716323853,-0.367903262376785,
- 0.540919899940491,0.654000103473663,0.528856933116913,0.548214793205261,0.649196147918701,0.527261674404144,0.68009227514267,0.634130716323853,-0.367903262376785,0.340762078762054,0.882691860198975,-0.323629915714264,0.523911774158478,0.721868216991425,0.452131390571594,0.636029779911041,0.651110887527466,0.41415074467659,0.613039195537567,0.590018093585968,0.52541571855545,0.541756629943848,0.64124196767807,0.543422937393188,0.636029779911041,0.651110887527466,0.41415074467659,0.729991793632507,0.492439985275269,0.473935604095459,0.640051603317261,0.519112825393677,0.566441416740417,0.613039195537567,0.590018093585968,0.52541571855545,0.729991793632507,0.492439985275269,0.473935604095459,0.710407912731171,0.443358331918716,0.546583950519562,0.611035883426666,0.51455956697464,0.601551055908203,0.640051603317261,0.519112825393677,0.566441416740417,0.710407912731171,0.443358331918716,0.546583950519562,0.673043549060822,0.429358631372452,0.602215647697449,0.594630420207977,0.541785478591919,0.594039797782898,0.611035883426666,0.51455956697464,0.601551055908203,0.673043549060822,0.429358631372452,0.602215647697449,0.638674020767212,0.429163336753845,0.638681769371033,0.595755815505981,0.548291504383087,0.586899936199188,0.594630420207977,0.541785478591919,0.594039797782898,0.638674020767212,0.429163336753845,0.638681769371033,0.517029881477356,0.470900774002075,0.714795470237732,0.550965845584869,0.562750816345215,0.616237163543701,0.595755815505981,0.548291504383087,0.586899936199188,0.517029881477356,0.470900774002075,0.714795470237732,0.430899918079376,0.557014405727386,0.709972023963928,0.512174844741821,0.602238118648529,0.612361252307892,0.550965845584869,0.562750816345215,0.616237163543701,0.430899918079376,0.557014405727386,0.709972023963928,0.396893382072449,0.644325613975525,0.653697311878204,0.504678547382355,0.638060331344604,0.581531286239624,0.512174844741821,0.602238118648529,0.612361252307892,0.396893382072449,0.644325613975525,0.653697311878204,0.412590563297272,0.700445950031281,0.582361102104187,0.523285746574402,0.649753332138062,0.551355242729187,
- 0.504678547382355,0.638060331344604,0.581531286239624,0.412590563297272,0.700445950031281,0.582361102104187,0.452075332403183,0.721864581108093,0.523965179920197,0.543462753295898,0.641332864761353,0.541609108448029,0.523285746574402,0.649753332138062,0.551355242729187,0.452075332403183,0.721864581108093,0.523965179920197,0.466870039701462,0.72325199842453,0.50886058807373,0.548854649066925,0.634140074253082,0.544632911682129,0.543462753295898,0.641332864761353,0.541609108448029,0.50886082649231,0.723251342773438,0.466870605945587,0.523911774158478,0.721868216991425,0.452131390571594,0.541756629943848,0.64124196767807,0.543422937393188,0.544623553752899,0.634140074253082,0.54886382818222,0.595755815505981,0.548291504383087,0.586899936199188,0.550965845584869,0.562750816345215,0.616237163543701,0.406271696090698,0.897605955600739,-0.171017721295357,0.104878172278404,0.994362652301788,0.0156028922647238,0.594630420207977,0.541785478591919,0.594039797782898,0.595755815505981,0.548291504383087,0.586899936199188,0.104878172278404,0.994362652301788,0.0156028922647238,-0.146380662918091,0.924151659011841,0.35286882519722,0.611035883426666,0.51455956697464,0.601551055908203,0.594630420207977,0.541785478591919,0.594039797782898,-0.146380662918091,0.924151659011841,0.35286882519722,-0.206154853105545,0.640887081623077,0.739434957504272,0.640051603317261,0.519112825393677,0.566441416740417,0.611035883426666,0.51455956697464,0.601551055908203,-0.206154853105545,0.640887081623077,0.739434957504272,-0.0569965615868568,0.347455590963364,0.935962617397308,0.613039195537567,0.590018093585968,0.52541571855545,0.640051603317261,0.519112825393677,0.566441416740417,-0.0569965615868568,0.347455590963364,0.935962617397308,0.172723039984703,0.125179722905159,0.976983547210693,0.541756629943848,0.64124196767807,0.543422937393188,0.613039195537567,0.590018093585968,0.52541571855545,0.172723039984703,0.125179722905159,0.976983547210693,0.356893688440323,0.00797101110219955,0.934110999107361,0.544623553752899,0.634140074253082,0.54886382818222,
- 0.541756629943848,0.64124196767807,0.543422937393188,0.356893688440323,0.00797101110219955,0.934110999107361,0.560044467449188,-0.0874562934041023,0.823833405971527,0.543462753295898,0.641332864761353,0.541609108448029,0.548854649066925,0.634140074253082,0.544632911682129,0.823823034763336,-0.087454542517662,0.560060083866119,0.885467827320099,-0.0405357740819454,0.462929517030716,0.523285746574402,0.649753332138062,0.551355242729187,0.543462753295898,0.641332864761353,0.541609108448029,0.885467827320099,-0.0405357740819454,0.462929517030716,0.977685570716858,0.14013084769249,0.156507045030594,0.504678547382355,0.638060331344604,0.581531286239624,0.523285746574402,0.649753332138062,0.551355242729187,0.977685570716858,0.14013084769249,0.156507045030594,0.910152971744537,0.404490619897842,-0.0894936770200729,0.512174844741821,0.602238118648529,0.612361252307892,0.504678547382355,0.638060331344604,0.581531286239624,0.910152971744537,0.404490619897842,-0.0894936770200729,0.701014041900635,0.681713461875916,-0.209394693374634,0.550965845584869,0.562750816345215,0.616237163543701,0.512174844741821,0.602238118648529,0.612361252307892,0.701014041900635,0.681713461875916,-0.209394693374634,0.406271696090698,0.897605955600739,-0.171017721295357,0.541751027107239,0.715863227844238,0.440506160259247,0.590216100215912,0.675849914550781,0.441443026065826,0.553600907325745,0.659500122070313,0.508513331413269,0.535677075386047,0.674741446971893,0.507714509963989,0.590216100215912,0.675849914550781,0.441443026065826,0.616376519203186,0.632160723209381,0.469524145126343,0.560064673423767,0.644368946552277,0.520688354969025,0.553600907325745,0.659500122070313,0.508513331413269,0.616376519203186,0.632160723209381,0.469524145126343,0.617088079452515,0.599250972270966,0.510000586509705,0.555699944496155,0.637212097644806,0.534002304077148,0.560064673423767,0.644368946552277,0.520688354969025,0.617088079452515,0.599250972270966,0.510000586509705,0.599360823631287,0.582123875617981,0.549452841281891,0.54846054315567,0.637220919132233,0.541424512863159,
- 0.555699944496155,0.637212097644806,0.534002304077148,0.599360823631287,0.582123875617981,0.549452841281891,0.5765300989151,0.578989148139954,0.576528131961823,0.544460713863373,0.638340771198273,0.544135689735413,0.54846054315567,0.637220919132233,0.541424512863159,0.5765300989151,0.578989148139954,0.576528131961823,0.549423813819885,0.582132935523987,0.59937858581543,0.542012453079224,0.636947572231293,0.548197448253632,0.544460713863373,0.638340771198273,0.544135689735413,0.549423813819885,0.582132935523987,0.59937858581543,0.510050535202026,0.599234282970428,0.617062985897064,0.535174012184143,0.636192142963409,0.555741369724274,0.542012453079224,0.636947572231293,0.548197448253632,0.510050535202026,0.599234282970428,0.617062985897064,0.469543427228928,0.632178008556366,0.616344034671783,0.521802663803101,0.642503917217255,0.56116908788681,0.535174012184143,0.636192142963409,0.555741369724274,0.469543427228928,0.632178008556366,0.616344034671783,0.441463142633438,0.675885260105133,0.590160489082336,0.50867360830307,0.657164514064789,0.556224703788757,0.521802663803101,0.642503917217255,0.56116908788681,0.441463142633438,0.675885260105133,0.590160489082336,0.440484702587128,0.715844631195068,0.54179310798645,0.506096303462982,0.673154771327972,0.539193153381348,0.50867360830307,0.657164514064789,0.556224703788757,0.440484702587128,0.715844631195068,0.54179310798645,0.455093771219254,0.734601020812988,0.503240525722504,0.508912146091461,0.680041193962097,0.527780771255493,0.506096303462982,0.673154771327972,0.539193153381348,0.503233671188354,0.734600841999054,0.455101817846298,0.541751027107239,0.715863227844238,0.440506160259247,0.535677075386047,0.674741446971893,0.507714509963989,0.527730047702789,0.680041670799255,0.508964061737061,0.544460713863373,0.638340771198273,0.544135689735413,0.542012453079224,0.636947572231293,0.548197448253632,0.378209859132767,0.893966794013977,-0.240376234054565,0.0552821308374405,0.997654318809509,-0.0403701327741146,0.54846054315567,0.637220919132233,0.541424512863159,0.544460713863373,0.638340771198273,0.544135689735413,
- 0.0552821308374405,0.997654318809509,-0.0403701327741146,-0.188158690929413,0.94579404592514,0.264707267284393,0.555699944496155,0.637212097644806,0.534002304077148,0.54846054315567,0.637220919132233,0.541424512863159,-0.188158690929413,0.94579404592514,0.264707267284393,-0.2870072722435,0.752393364906311,0.592900693416595,0.560064673423767,0.644368946552277,0.520688354969025,0.555699944496155,0.637212097644806,0.534002304077148,-0.2870072722435,0.752393364906311,0.592900693416595,-0.214664831757545,0.469086289405823,0.856666326522827,0.553600907325745,0.659500122070313,0.508513331413269,0.560064673423767,0.644368946552277,0.520688354969025,-0.214664831757545,0.469086289405823,0.856666326522827,0.00933703128248453,0.172141715884209,0.985028028488159,0.535677075386047,0.674741446971893,0.507714509963989,0.553600907325745,0.659500122070313,0.508513331413269,0.00933703128248453,0.172141715884209,0.985028028488159,0.325235456228256,-0.0592404380440712,0.943775713443756,0.527730047702789,0.680041670799255,0.508964061737061,0.535677075386047,0.674741446971893,0.507714509963989,0.325235456228256,-0.0592404380440712,0.943775713443756,0.542616546154022,-0.160049706697464,0.824591636657715,0.506096303462982,0.673154771327972,0.539193153381348,0.508912146091461,0.680041193962097,0.527780771255493,0.824511528015137,-0.160053789615631,0.542737007141113,0.89166522026062,-0.111184343695641,0.438829451799393,0.50867360830307,0.657164514064789,0.556224703788757,0.506096303462982,0.673154771327972,0.539193153381348,0.89166522026062,-0.111184343695641,0.438829451799393,0.990455985069275,0.0823645442724228,0.11051344871521,0.521802663803101,0.642503917217255,0.56116908788681,0.50867360830307,0.657164514064789,0.556224703788757,0.990455985069275,0.0823645442724228,0.11051344871521,0.918110430240631,0.365562468767166,-0.153092905879021,0.535174012184143,0.636192142963409,0.555741369724274,0.521802663803101,0.642503917217255,0.56116908788681,0.918110430240631,0.365562468767166,-0.153092905879021,0.694037854671478,0.662613689899445,-0.281522154808044,
- 0.542012453079224,0.636947572231293,0.548197448253632,0.535174012184143,0.636192142963409,0.555741369724274,0.694037854671478,0.662613689899445,-0.281522154808044,0.378209859132767,0.893966794013977,-0.240376234054565,0.525480628013611,0.716212928295136,0.459248423576355,0.573693931102753,0.687826037406921,0.444714188575745,0.530621886253357,0.631716847419739,0.565132021903992,0.542585253715515,0.623786628246307,0.562575817108154,0.573693931102753,0.687826037406921,0.444714188575745,0.612300574779511,0.646392941474915,0.455262809991837,0.52152818441391,0.642497599124908,0.561431407928467,0.530621886253357,0.631716847419739,0.565132021903992,0.612300574779511,0.646392941474915,0.455262809991837,0.63114196062088,0.602772831916809,0.488185286521912,0.517826616764069,0.653293013572693,0.552325844764709,0.52152818441391,0.642497599124908,0.561431407928467,0.63114196062088,0.602772831916809,0.488185286521912,0.625069320201874,0.568915128707886,0.534438014030457,0.520362138748169,0.661228060722351,0.540370941162109,0.517826616764069,0.653293013572693,0.552325844764709,0.625069320201874,0.568915128707886,0.534438014030457,0.595715761184692,0.553723692893982,0.581818580627441,0.528618395328522,0.664110124111176,0.528696775436401,0.520362138748169,0.661228060722351,0.540370941162109,0.595715761184692,0.553723692893982,0.581818580627441,0.551099538803101,0.561288714408875,0.617449879646301,0.540351450443268,0.661215424537659,0.520398437976837,0.528618395328522,0.664110124111176,0.528696775436401,0.551099538803101,0.561288714408875,0.617449879646301,0.503011107444763,0.589600682258606,0.63194215297699,0.55234158039093,0.653283536434174,0.517821848392487,0.540351450443268,0.661215424537659,0.520398437976837,0.503011107444763,0.589600682258606,0.63194215297699,0.46430778503418,0.631156384944916,0.621337234973907,0.561384618282318,0.642497420310974,0.521578848361969,0.55234158039093,0.653283536434174,0.517821848392487,0.46430778503418,0.631156384944916,0.621337234973907,0.445490300655365,0.674755752086639,0.588424205780029,0.56512850522995,0.631734013557434,0.530605316162109,
- 0.561384618282318,0.642497420310974,0.521578848361969,0.445490300655365,0.674755752086639,0.588424205780029,0.451552748680115,0.708598792552948,0.542206466197968,0.562538027763367,0.623789429664612,0.542621314525604,0.56512850522995,0.631734013557434,0.530605316162109,0.451552748680115,0.708598792552948,0.542206466197968,0.46664422750473,0.723489344120026,0.508730232715607,0.55962461233139,0.620887875556946,0.54892498254776,0.562538027763367,0.623789429664612,0.542621314525604,0.5086949467659,0.723490118980408,0.466681510210037,0.525480628013611,0.716212928295136,0.459248423576355,0.542585253715515,0.623786628246307,0.562575817108154,0.548865079879761,0.620887637138367,0.559683620929718,0.528618395328522,0.664110124111176,0.528696775436401,0.540351450443268,0.661215424537659,0.520398437976837,0.406219512224197,0.897608637809753,-0.171127155423164,0.104792788624763,0.994373321533203,0.0155012868344784,0.520362138748169,0.661228060722351,0.540370941162109,0.528618395328522,0.664110124111176,0.528696775436401,0.104792788624763,0.994373321533203,0.0155012868344784,-0.122497007250786,0.945959031581879,0.300260066986084,0.517826616764069,0.653293013572693,0.552325844764709,0.520362138748169,0.661228060722351,0.540370941162109,-0.122497007250786,0.945959031581879,0.300260066986084,-0.214710831642151,0.765456914901733,0.606609404087067,0.52152818441391,0.642497599124908,0.561431407928467,0.517826616764069,0.653293013572693,0.552325844764709,-0.214710831642151,0.765456914901733,0.606609404087067,-0.147160425782204,0.501003265380859,0.852842152118683,0.530621886253357,0.631716847419739,0.565132021903992,0.52152818441391,0.642497599124908,0.561431407928467,-0.147160425782204,0.501003265380859,0.852842152118683,0.0619484558701515,0.223860174417496,0.972650527954102,0.542585253715515,0.623786628246307,0.562575817108154,0.530621886253357,0.631716847419739,0.565132021903992,0.0619484558701515,0.223860174417496,0.972650527954102,0.356860965490341,0.00786104705184698,0.934124410152435,0.548865079879761,0.620887637138367,0.559683620929718,
- 0.542585253715515,0.623786628246307,0.562575817108154,0.356860965490341,0.00786104705184698,0.934124410152435,0.55997896194458,-0.0875454694032669,0.823868572711945,0.562538027763367,0.623789429664612,0.542621314525604,0.55962461233139,0.620887875556946,0.54892498254776,0.823826313018799,-0.0875329673290253,0.560043036937714,0.88548731803894,-0.0405496805906296,0.462891042232513,0.56512850522995,0.631734013557434,0.530605316162109,0.562538027763367,0.623789429664612,0.542621314525604,0.88548731803894,-0.0405496805906296,0.462891042232513,0.97768759727478,0.140114590525627,0.156508579850197,0.561384618282318,0.642497420310974,0.521578848361969,0.56512850522995,0.631734013557434,0.530605316162109,0.97768759727478,0.140114590525627,0.156508579850197,0.910166144371033,0.404458910226822,-0.0895027965307236,0.55234158039093,0.653283536434174,0.517821848392487,0.561384618282318,0.642497420310974,0.521578848361969,0.910166144371033,0.404458910226822,-0.0895027965307236,0.70101273059845,0.681688368320465,-0.209480985999107,0.540351450443268,0.661215424537659,0.520398437976837,0.55234158039093,0.653283536434174,0.517821848392487,0.70101273059845,0.681688368320465,-0.209480985999107,0.406219512224197,0.897608637809753,-0.171127155423164,0.529402017593384,0.701562166213989,0.477015852928162,0.567581653594971,0.67907589673996,0.465517967939377,0.54495096206665,0.646017372608185,0.534499704837799,0.541319370269775,0.648396015167236,0.535309195518494,0.567581653594971,0.67907589673996,0.465517967939377,0.598115682601929,0.64628678560257,0.473889350891113,0.547711193561554,0.642699778079987,0.535676717758179,0.54495096206665,0.646017372608185,0.534499704837799,0.598115682601929,0.64628678560257,0.473889350891113,0.613025009632111,0.611779510974884,0.499926298856735,0.548848867416382,0.639468491077423,0.538372576236725,0.547711193561554,0.642699778079987,0.535676717758179,0.613025009632111,0.611779510974884,0.499926298856735,0.608238101005554,0.584997713565826,0.53649240732193,0.548037767410278,0.637084722518921,0.542012751102448,
- 0.548848867416382,0.639468491077423,0.538372576236725,0.608238101005554,0.584997713565826,0.53649240732193,0.585022807121277,0.572964429855347,0.573986172676086,0.545538425445557,0.636187791824341,0.545575857162476,0.548037767410278,0.637084722518921,0.542012751102448,0.585022807121277,0.572964429855347,0.573986172676086,0.549698412418365,0.578968524932861,0.602185368537903,0.542001008987427,0.637080848217011,0.548053741455078,0.545538425445557,0.636187791824341,0.545575857162476,0.549698412418365,0.578968524932861,0.602185368537903,0.51162976026535,0.601407468318939,0.613631844520569,0.53838062286377,0.639468729496002,0.548840641975403,0.542001008987427,0.637080848217011,0.548053741455078,0.51162976026535,0.601407468318939,0.613631844520569,0.481066882610321,0.634234368801117,0.605244994163513,0.535663247108459,0.642709672451019,0.547712743282318,0.53838062286377,0.639468729496002,0.548840641975403,0.481066882610321,0.634234368801117,0.605244994163513,0.466161042451859,0.668723702430725,0.579225778579712,0.53450870513916,0.645995199680328,0.544968545436859,0.535663247108459,0.642709672451019,0.547712743282318,0.466161042451859,0.668723702430725,0.579225778579712,0.470919668674469,0.695505440235138,0.542684972286224,0.53529566526413,0.648394048213959,0.541335165500641,0.53450870513916,0.645995199680328,0.544968545436859,0.470919668674469,0.695505440235138,0.542684972286224,0.482959121465683,0.707364916801453,0.516125321388245,0.536217331886292,0.649281203746796,0.539356112480164,0.53529566526413,0.648394048213959,0.541335165500641,0.516157686710358,0.707364439964294,0.482925444841385,0.529402017593384,0.701562166213989,0.477015852928162,0.541319370269775,0.648396015167236,0.535309195518494,0.53935444355011,0.649281203746796,0.536219000816345,0.545538425445557,0.636187791824341,0.545575857162476,0.542001008987427,0.637080848217011,0.548053741455078,0.40621554851532,0.897607088088989,-0.171144887804985,0.104772873222828,0.994376063346863,0.0154580380767584,0.548037767410278,0.637084722518921,0.542012751102448,0.545538425445557,0.636187791824341,0.545575857162476,
- 0.104772873222828,0.994376063346863,0.0154580380767584,-0.122523561120033,0.945959150791168,0.300248861312866,0.548848867416382,0.639468491077423,0.538372576236725,0.548037767410278,0.637084722518921,0.542012751102448,-0.122523561120033,0.945959150791168,0.300248861312866,-0.214715346693993,0.765467643737793,0.606594443321228,0.547711193561554,0.642699778079987,0.535676717758179,0.548848867416382,0.639468491077423,0.538372576236725,-0.214715346693993,0.765467643737793,0.606594443321228,-0.147132024168968,0.500982344150543,0.852859258651733,0.54495096206665,0.646017372608185,0.534499704837799,0.547711193561554,0.642699778079987,0.535676717758179,-0.147132024168968,0.500982344150543,0.852859258651733,0.0619308948516846,0.223816007375717,0.972661793231964,0.541319370269775,0.648396015167236,0.535309195518494,0.54495096206665,0.646017372608185,0.534499704837799,0.0619308948516846,0.223816007375717,0.972661793231964,0.356773495674133,0.00779300183057785,0.934158444404602,0.53935444355011,0.649281203746796,0.536219000816345,0.541319370269775,0.648396015167236,0.535309195518494,0.356773495674133,0.00779300183057785,0.934158444404602,0.56000280380249,-0.0876530408859253,0.823840856552124,0.53529566526413,0.648394048213959,0.541335165500641,0.536217331886292,0.649281203746796,0.539356112480164,0.823788464069366,-0.0876565724611282,0.560079336166382,0.885521531105042,-0.0407140962779522,0.462811082601547,0.53450870513916,0.645995199680328,0.544968545436859,0.53529566526413,0.648394048213959,0.541335165500641,0.885521531105042,-0.0407140962779522,0.462811082601547,0.977708697319031,0.140041336417198,0.156441926956177,0.535663247108459,0.642709672451019,0.547712743282318,0.53450870513916,0.645995199680328,0.544968545436859,0.977708697319031,0.140041336417198,0.156441926956177,0.91016411781311,0.404457330703735,-0.089530423283577,0.53838062286377,0.639468729496002,0.548840641975403,0.535663247108459,0.642709672451019,0.547712743282318,0.91016411781311,0.404457330703735,-0.089530423283577,0.701020658016205,0.681696891784668,-0.209426581859589,
- 0.542001008987427,0.637080848217011,0.548053741455078,0.53838062286377,0.639468729496002,0.548840641975403,0.701020658016205,0.681696891784668,-0.209426581859589,0.40621554851532,0.897607088088989,-0.171144887804985,-0.454502493143082,0.766064524650574,-0.454502493143082,-0.454502552747726,0.766064643859863,-0.454502493143082,-0.454499781131744,0.766064643859863,-0.454505294561386,-0.454477339982986,0.766064643859863,-0.454527765512466,-0.454508006572723,0.766064584255219,-0.45449697971344,-0.454487055540085,0.766064643859863,-0.454517871141434,-0.454521000385284,0.766064643859863,-0.454484105110168,-0.454466998577118,0.766064643859863,-0.454538136720657,-0.454655528068542,0.766064643859863,-0.45434957742691,-0.455017030239105,0.766064405441284,-0.453987747430801,-0.454569876194,0.766064584255219,-0.454435139894485,-0.454490780830383,0.766064643859863,-0.454514384269714,0.276914447546005,0.946492433547974,-0.165742263197899,0.597820937633514,0.757362723350525,-0.262701094150543,0.590745449066162,0.69049209356308,0.417421191930771,0.530485153198242,0.730216443538666,0.430545628070831,0.597820937633514,0.757362723350525,-0.262701094150543,0.855904638767242,0.480134218931198,-0.192089468240738,0.636303424835205,0.636285364627838,0.436186879873276,0.590745449066162,0.69049209356308,0.417421191930771,0.855904638767242,0.480134218931198,-0.192089468240738,0.981469511985779,0.189670354127884,0.0272578038275242,0.655059933662415,0.582054376602173,0.481777131557465,0.636303424835205,0.636285364627838,0.436186879873276,0.981469511985779,0.189670354127884,0.0272578038275242,0.941040873527527,-0.0363197699189186,0.336337596178055,0.641968369483948,0.542413651943207,0.541907787322998,0.655059933662415,0.582054376602173,0.481777131557465,0.941040873527527,-0.0363197699189186,0.336337596178055,0.745639264583588,-0.137758284807205,0.651954531669617,0.600545227527618,0.527888000011444,0.600566208362579,0.641968369483948,0.542413651943207,0.541907787322998,0.745639264583588,-0.137758284807205,0.651954531669617,0.44728296995163,-0.0871547609567642,0.890136003494263,
- 0.54190993309021,0.542406260967255,0.641972780227661,0.600545227527618,0.527888000011444,0.600566208362579,0.44728296995163,-0.0871547609567642,0.890136003494263,0.126213550567627,0.102186948060989,0.986725986003876,0.481750279664993,0.582081496715546,0.655055642127991,0.54190993309021,0.542406260967255,0.641972780227661,0.126213550567627,0.102186948060989,0.986725986003876,-0.131552338600159,0.37892073392868,0.916031181812286,0.43619829416275,0.63627964258194,0.636301338672638,0.481750279664993,0.582081496715546,0.655055642127991,-0.131552338600159,0.37892073392868,0.916031181812286,-0.257114112377167,0.669567108154297,0.696830213069916,0.417426824569702,0.690491080284119,0.590742647647858,0.43619829416275,0.63627964258194,0.636301338672638,-0.257114112377167,0.669567108154297,0.696830213069916,-0.216981559991837,0.895733296871185,0.388047575950623,0.430523574352264,0.730189383029938,0.530540227890015,0.417426824569702,0.690491080284119,0.590742647647858,-0.216981559991837,0.895733296871185,0.388047575950623,-0.112876869738102,0.980170667171478,0.162862792611122,0.444841355085373,0.744163513183594,0.498333990573883,0.430523574352264,0.730189383029938,0.530540227890015,0.163080021739006,0.980113744735718,-0.113057129085064,0.276914447546005,0.946492433547974,-0.165742263197899,0.530485153198242,0.730216443538666,0.430545628070831,0.498360246419907,0.744162917137146,0.444813102483749,-0.454441547393799,0.766069412231445,-0.45455539226532,-0.454546004533768,0.766069412231445,-0.454450964927673,-0.454538345336914,0.766069412231445,-0.454458594322205,-0.45448225736618,0.766069352626801,-0.454514682292938,-0.454460471868515,0.766069412231445,-0.454536557197571,-0.454491913318634,0.766069412231445,-0.454504996538162,-0.45452007651329,0.766069412231445,-0.454476863145828,-0.454503059387207,0.766069412231445,-0.454493969678879,-0.454497754573822,0.766069352626801,-0.454499244689941,-0.454500645399094,0.766069412231445,-0.454496264457703,-0.454572916030884,0.766069412231445,-0.454424142837524,-0.454504787921906,0.766069412231445,-0.454492181539536,
- 0.544507443904877,0.638029813766479,0.544453501701355,0.541920483112335,0.638661801815033,0.546290576457977,0.406250894069672,0.897586107254028,-0.171170696616173,0.104827918112278,0.994368433952332,0.0155795831233263,0.546262741088867,0.638643562793732,0.541969895362854,0.544507443904877,0.638029813766479,0.544453501701355,0.104827918112278,0.994368433952332,0.0155795831233263,-0.122367426753044,0.94597065448761,0.300276100635529,0.546843469142914,0.640410959720612,0.539292335510254,0.546262741088867,0.638643562793732,0.541969895362854,-0.122367426753044,0.94597065448761,0.300276100635529,-0.214606732130051,0.765420973300934,0.606691598892212,0.546024084091187,0.64270281791687,0.537392735481262,0.546843469142914,0.640410959720612,0.539292335510254,-0.214606732130051,0.765420973300934,0.606691598892212,-0.147116884589195,0.501035511493683,0.852830648422241,0.54401034116745,0.645134150981903,0.536521017551422,0.546024084091187,0.64270281791687,0.537392735481262,-0.147116884589195,0.501035511493683,0.852830648422241,0.0619470924139023,0.223794490098953,0.972665786743164,0.541441202163696,0.646832048892975,0.537075161933899,0.54401034116745,0.645134150981903,0.536521017551422,0.0619470924139023,0.223794490098953,0.972665786743164,0.356791317462921,0.007849863730371,0.934151113033295,0.54002583026886,0.647458493709564,0.53774493932724,0.541441202163696,0.646832048892975,0.537075161933899,0.356791317462921,0.007849863730371,0.934151113033295,0.560046434402466,-0.0875711739063263,0.823819875717163,0.537085592746735,0.646827936172485,0.541435837745667,0.537764012813568,0.647458553314209,0.540006756782532,0.823800027370453,-0.0875829607248306,0.560073852539063,0.885512948036194,-0.0406455919146538,0.462833404541016,0.536505401134491,0.645111739635468,0.544052183628082,0.537085592746735,0.646827936172485,0.541435837745667,0.885512948036194,-0.0406455919146538,0.462833404541016,0.977696359157562,0.140090733766556,0.156475484371185,0.537342488765717,0.642728745937347,0.54604297876358,0.536505401134491,0.645111739635468,0.544052183628082,
- 0.977696359157562,0.140090733766556,0.156475484371185,0.910158097743988,0.404473900794983,-0.0895163640379906,0.539310157299042,0.640385866165161,0.546855211257935,0.537342488765717,0.642728745937347,0.54604297876358,0.910158097743988,0.404473900794983,-0.0895163640379906,0.70104455947876,0.681658983230591,-0.20946991443634,0.541920483112335,0.638661801815033,0.546290576457977,0.539310157299042,0.640385866165161,0.546855211257935,0.70104455947876,0.681658983230591,-0.20946991443634,0.406250894069672,0.897586107254028,-0.171170696616173,0.600545227527618,0.527888000011444,0.600566208362579,0.54190993309021,0.542406260967255,0.641972780227661,0.541920483112335,0.638661801815033,0.546290576457977,0.544507443904877,0.638029813766479,0.544453501701355,0.641968369483948,0.542413651943207,0.541907787322998,0.600545227527618,0.527888000011444,0.600566208362579,0.544507443904877,0.638029813766479,0.544453501701355,0.546262741088867,0.638643562793732,0.541969895362854,0.655059933662415,0.582054376602173,0.481777131557465,0.641968369483948,0.542413651943207,0.541907787322998,0.546262741088867,0.638643562793732,0.541969895362854,0.546843469142914,0.640410959720612,0.539292335510254,0.636303424835205,0.636285364627838,0.436186879873276,0.655059933662415,0.582054376602173,0.481777131557465,0.546843469142914,0.640410959720612,0.539292335510254,0.546024084091187,0.64270281791687,0.537392735481262,0.590745449066162,0.69049209356308,0.417421191930771,0.636303424835205,0.636285364627838,0.436186879873276,0.546024084091187,0.64270281791687,0.537392735481262,0.54401034116745,0.645134150981903,0.536521017551422,0.530485153198242,0.730216443538666,0.430545628070831,0.590745449066162,0.69049209356308,0.417421191930771,0.54401034116745,0.645134150981903,0.536521017551422,0.541441202163696,0.646832048892975,0.537075161933899,0.498360246419907,0.744162917137146,0.444813102483749,0.530485153198242,0.730216443538666,0.430545628070831,0.541441202163696,0.646832048892975,0.537075161933899,0.54002583026886,0.647458493709564,0.53774493932724,0.430523574352264,0.730189383029938,0.530540227890015,
- 0.444841355085373,0.744163513183594,0.498333990573883,0.537764012813568,0.647458553314209,0.540006756782532,0.537085592746735,0.646827936172485,0.541435837745667,0.417426824569702,0.690491080284119,0.590742647647858,0.430523574352264,0.730189383029938,0.530540227890015,0.537085592746735,0.646827936172485,0.541435837745667,0.536505401134491,0.645111739635468,0.544052183628082,0.43619829416275,0.63627964258194,0.636301338672638,0.417426824569702,0.690491080284119,0.590742647647858,0.536505401134491,0.645111739635468,0.544052183628082,0.537342488765717,0.642728745937347,0.54604297876358,0.481750279664993,0.582081496715546,0.655055642127991,0.43619829416275,0.63627964258194,0.636301338672638,0.537342488765717,0.642728745937347,0.54604297876358,0.539310157299042,0.640385866165161,0.546855211257935,0.54190993309021,0.542406260967255,0.641972780227661,0.481750279664993,0.582081496715546,0.655055642127991,0.539310157299042,0.640385866165161,0.546855211257935,0.541920483112335,0.638661801815033,0.546290576457977,0.530958890914917,0.695346117019653,0.484331071376801,0.641617774963379,0.601438641548157,0.476023435592651,0.627525806427002,0.554351985454559,0.546722412109375,0.54186224937439,0.639375507831573,0.545512974262238,0.641617774963379,0.601438641548157,0.476023435592651,0.696793377399445,0.407288402318954,0.590419590473175,0.618723392486572,0.474948137998581,0.625783979892731,0.627525806427002,0.554351985454559,0.546722412109375,0.696793377399445,0.407288402318954,0.590419590473175,0.597959518432617,0.436406522989273,0.672304928302765,0.535789668560028,0.513528108596802,0.67023754119873,0.618723392486572,0.474948137998581,0.625783979892731,0.597959518432617,0.436406522989273,0.672304928302765,0.533172428607941,0.524082183837891,0.664127230644226,0.504113137722015,0.612201392650604,0.609162926673889,0.535789668560028,0.513528108596802,0.67023754119873,0.533172428607941,0.524082183837891,0.664127230644226,0.580437242984772,0.580889821052551,0.570665955543518,0.539317309856415,0.646661639213562,0.539412200450897,0.504113137722015,0.612201392650604,0.609162926673889,
- 0.580437242984772,0.580889821052551,0.570665955543518,0.549030721187592,0.586225807666779,0.595738768577576,0.541509866714478,0.646121978759766,0.537860035896301,0.539317309856415,0.646661639213562,0.539412200450897,0.549030721187592,0.586225807666779,0.595738768577576,0.515191495418549,0.606145024299622,0.605942249298096,0.543694913387299,0.644657552242279,0.537412822246552,0.541509866714478,0.646121978759766,0.537860035896301,0.515191495418549,0.606145024299622,0.605942249298096,0.487914443016052,0.635428607463837,0.598473131656647,0.545261383056641,0.642783582210541,0.538070142269135,0.543694913387299,0.644657552242279,0.537412822246552,0.487914443016052,0.635428607463837,0.598473131656647,0.474668711423874,0.666123747825623,0.57529878616333,0.545966923236847,0.640784561634064,0.539736390113831,0.545261383056641,0.642783582210541,0.538070142269135,0.474668711423874,0.666123747825623,0.57529878616333,0.478921294212341,0.689963102340698,0.542757153511047,0.545511066913605,0.639384567737579,0.541853487491608,0.545966923236847,0.640784561634064,0.539736390113831,0.478921294212341,0.689963102340698,0.542757153511047,0.489577025175095,0.700528681278229,0.519205093383789,0.544951915740967,0.638845145702362,0.54305100440979,0.545511066913605,0.639384567737579,0.541853487491608,0.519213914871216,0.700528860092163,0.489567548036575,0.530958890914917,0.695346117019653,0.484331071376801,0.54186224937439,0.639375507831573,0.545512974262238,0.542974352836609,0.638845026493073,0.545028448104858,0.539317309856415,0.646661639213562,0.539412200450897,0.541509866714478,0.646121978759766,0.537860035896301,0.365136653184891,0.890767872333527,-0.270569562911987,0.0331484451889992,0.99732494354248,-0.0651474148035049,0.504113137722015,0.612201392650604,0.609162926673889,0.539317309856415,0.646661639213562,0.539412200450897,0.0331484451889992,0.99732494354248,-0.0651474148035049,-0.245247930288315,0.918835997581482,0.309182941913605,0.535789668560028,0.513528108596802,0.67023754119873,0.504113137722015,0.612201392650604,0.609162926673889,
- -0.245247930288315,0.918835997581482,0.309182941913605,-0.307780534029007,0.600576221942902,0.73795622587204,0.618723392486572,0.474948137998581,0.625783979892731,0.535789668560028,0.513528108596802,0.67023754119873,-0.307780534029007,0.600576221942902,0.73795622587204,-0.139275804162025,0.276786416769028,0.950784742832184,0.627525806427002,0.554351985454559,0.546722412109375,0.618723392486572,0.474948137998581,0.625783979892731,-0.139275804162025,0.276786416769028,0.950784742832184,0.112871661782265,0.0358774438500404,0.992961704730988,0.54186224937439,0.639375507831573,0.545512974262238,0.627525806427002,0.554351985454559,0.546722412109375,0.112871661782265,0.0358774438500404,0.992961704730988,0.310709774494171,-0.0890172272920609,0.946327269077301,0.542974352836609,0.638845026493073,0.545028448104858,0.54186224937439,0.639375507831573,0.545512974262238,0.310709774494171,-0.0890172272920609,0.946327269077301,0.533948421478271,-0.191863790154457,0.823460698127747,0.545511066913605,0.639384567737579,0.541853487491608,0.544951915740967,0.638845145702362,0.54305100440979,0.823375761508942,-0.191851764917374,0.534083724021912,0.892803430557251,-0.142109677195549,0.427442312240601,0.545966923236847,0.640784561634064,0.539736390113831,0.545511066913605,0.639384567737579,0.541853487491608,0.892803430557251,-0.142109677195549,0.427442312240601,0.994309067726135,0.0568037740886211,0.090127095580101,0.545261383056641,0.642783582210541,0.538070142269135,0.545966923236847,0.640784561634064,0.539736390113831,0.994309067726135,0.0568037740886211,0.090127095580101,0.919991850852966,0.347760885953903,-0.1807691603899,0.543694913387299,0.644657552242279,0.537412822246552,0.545261383056641,0.642783582210541,0.538070142269135,0.919991850852966,0.347760885953903,-0.1807691603899,0.689678907394409,0.653070628643036,-0.312796622514725,0.541509866714478,0.646121978759766,0.537860035896301,0.543694913387299,0.644657552242279,0.537412822246552,0.689678907394409,0.653070628643036,-0.312796622514725,0.365136653184891,0.890767872333527,-0.270569562911987,
- 0.535041272640228,0.770312786102295,0.346913874149323,0.62775069475174,0.698134005069733,0.344293534755707,0.559171259403229,0.667155206203461,0.492170095443726,0.532704949378967,0.688261806964874,0.492464333772659,0.62775069475174,0.698134005069733,0.344293534755707,0.683950245380402,0.614827990531921,0.392681419849396,0.570724487304688,0.645112812519073,0.508038341999054,0.559171259403229,0.667155206203461,0.492170095443726,0.683950245380402,0.614827990531921,0.392681419849396,0.693244814872742,0.54600328207016,0.470416843891144,0.567294657230377,0.632485091686249,0.527389287948608,0.570724487304688,0.645112812519073,0.508038341999054,0.693244814872742,0.54600328207016,0.470416843891144,0.661880135536194,0.505494952201843,0.553524672985077,0.558013916015625,0.629353940486908,0.540864288806915,0.567294657230377,0.632485091686249,0.527389287948608,0.661880135536194,0.505494952201843,0.553524672985077,0.6137815117836,0.496494442224503,0.613812386989594,0.550002694129944,0.629256248474121,0.549120724201202,0.558013916015625,0.629353940486908,0.540864288806915,0.6137815117836,0.496494442224503,0.613812386989594,0.553560972213745,0.505479633808136,0.661861598491669,0.542457044124603,0.628604292869568,0.557312309741974,0.550002694129944,0.629256248474121,0.549120724201202,0.553560972213745,0.505479633808136,0.661861598491669,0.470518290996552,0.545957922935486,0.693211793899536,0.529542446136475,0.630577683448792,0.567412316799164,0.542457044124603,0.628604292869568,0.557312309741974,0.470518290996552,0.545957922935486,0.693211793899536,0.392738282680511,0.614773809909821,0.683966279029846,0.509817957878113,0.642075657844543,0.572559595108032,0.529542446136475,0.630577683448792,0.567412316799164,0.392738282680511,0.614773809909821,0.683966279029846,0.344306737184525,0.698247313499451,0.627617418766022,0.492345184087753,0.663859367370605,0.562927186489105,0.509817957878113,0.642075657844543,0.572559595108032,0.344306737184525,0.698247313499451,0.627617418766022,0.34692457318306,0.770358622074127,0.534968256950378,0.490105867385864,0.685995817184448,0.537778913974762,
- 0.492345184087753,0.663859367370605,0.562927186489105,0.34692457318306,0.770358622074127,0.534968256950378,0.375015199184418,0.802780628204346,0.463580518960953,0.494572669267654,0.695350050926209,0.52142721414566,0.490105867385864,0.685995817184448,0.537778913974762,0.463535279035568,0.80278354883194,0.37506490945816,0.535041272640228,0.770312786102295,0.346913874149323,0.532704949378967,0.688261806964874,0.492464333772659,0.521329164505005,0.695351600646973,0.494673758745193,0.550002694129944,0.629256248474121,0.549120724201202,0.542457044124603,0.628604292869568,0.557312309741974,0.311632841825485,0.869636416435242,-0.382906675338745,-0.0510593540966511,0.986044049263,-0.158461928367615,0.558013916015625,0.629353940486908,0.540864288806915,0.550002694129944,0.629256248474121,0.549120724201202,-0.0510593540966511,0.986044049263,-0.158461928367615,-0.324514031410217,0.927798867225647,0.184065222740173,0.567294657230377,0.632485091686249,0.527389287948608,0.558013916015625,0.629353940486908,0.540864288806915,-0.324514031410217,0.927798867225647,0.184065222740173,-0.435375392436981,0.710646867752075,0.552656531333923,0.570724487304688,0.645112812519073,0.508038341999054,0.567294657230377,0.632485091686249,0.527389287948608,-0.435375392436981,0.710646867752075,0.552656531333923,-0.354094624519348,0.39266836643219,0.848780632019043,0.559171259403229,0.667155206203461,0.492170095443726,0.570724487304688,0.645112812519073,0.508038341999054,-0.354094624519348,0.39266836643219,0.848780632019043,-0.102497920393944,0.059079147875309,0.992977261543274,0.532704949378967,0.688261806964874,0.492464333772659,0.559171259403229,0.667155206203461,0.492170095443726,-0.102497920393944,0.059079147875309,0.992977261543274,0.252156615257263,-0.200790554285049,0.946625769138336,0.521329164505005,0.695351600646973,0.494673758745193,0.532704949378967,0.688261806964874,0.492464333772659,0.252156615257263,-0.200790554285049,0.946625769138336,0.495903521776199,-0.310117661952972,0.811114609241486,0.490105867385864,0.685995817184448,0.537778913974762,
- 0.494572669267654,0.695350050926209,0.52142721414566,0.811028063297272,-0.310110628604889,0.49604919552803,0.888106107711792,-0.258979290723801,0.37973341345787,0.492345184087753,0.663859367370605,0.562927186489105,0.490105867385864,0.685995817184448,0.537778913974762,0.888106107711792,-0.258979290723801,0.37973341345787,0.999069213867188,-0.041685976088047,0.0110944602638483,0.509817957878113,0.642075657844543,0.572559595108032,0.492345184087753,0.663859367370605,0.562927186489105,0.999069213867188,-0.041685976088047,0.0110944602638483,0.917854309082031,0.276226133108139,-0.285031020641327,0.529542446136475,0.630577683448792,0.567412316799164,0.509817957878113,0.642075657844543,0.572559595108032,0.917854309082031,0.276226133108139,-0.285031020641327,0.666184365749359,0.609937012195587,-0.429156601428986,0.542457044124603,0.628604292869568,0.557312309741974,0.529542446136475,0.630577683448792,0.567412316799164,0.666184365749359,0.609937012195587,-0.429156601428986,0.311632841825485,0.869636416435242,-0.382906675338745,0.540405213832855,0.720219433307648,0.435024410486221,0.593598663806915,0.677989184856415,0.433556735515594,0.544017970561981,0.645902872085571,0.535587549209595,0.540813088417053,0.653758227825165,0.52926504611969,0.593598663806915,0.677989184856415,0.433556735515594,0.619204103946686,0.631587564945221,0.466565608978271,0.535596787929535,0.642100214958191,0.548491954803467,0.544017970561981,0.645902872085571,0.535587549209595,0.619204103946686,0.631587564945221,0.466565608978271,0.615267932415009,0.600380837917328,0.510870099067688,0.520563542842865,0.650644719600677,0.552878856658936,0.535596787929535,0.642100214958191,0.548491954803467,0.615267932415009,0.600380837917328,0.510870099067688,0.594707787036896,0.587347030639648,0.54895007610321,0.512490808963776,0.665488004684448,0.542659223079681,0.520563542842865,0.650644719600677,0.552878856658936,0.594707787036896,0.587347030639648,0.54895007610321,0.572958946228027,0.586056888103485,0.572935879230499,0.521404147148132,0.673779010772705,0.523602485656738,
- 0.512490808963776,0.665488004684448,0.542659223079681,0.572958946228027,0.586056888103485,0.572935879230499,0.548898637294769,0.587372362613678,0.594730138778687,0.539819657802582,0.66680121421814,0.513781070709229,0.521404147148132,0.673779010772705,0.523602485656738,0.548898637294769,0.587372362613678,0.594730138778687,0.510905385017395,0.600378513336182,0.61524099111557,0.551213502883911,0.652154505252838,0.520440459251404,0.539819657802582,0.66680121421814,0.513781070709229,0.510905385017395,0.600378513336182,0.61524099111557,0.466569244861603,0.631636798381805,0.61915123462677,0.548125267028809,0.642730295658112,0.535216271877289,0.551213502883911,0.652154505252838,0.520440459251404,0.466569244861603,0.631636798381805,0.61915123462677,0.433583587408066,0.67801034450531,0.593554794788361,0.535624921321869,0.645577907562256,0.544366717338562,0.548125267028809,0.642730295658112,0.535216271877289,0.433583587408066,0.67801034450531,0.593554794788361,0.434979498386383,0.720176458358765,0.540498614311218,0.529256105422974,0.653746426105499,0.540836095809937,0.535624921321869,0.645577907562256,0.544366717338562,0.434979498386383,0.720176458358765,0.540498614311218,0.451509326696396,0.737913906574249,0.501619696617126,0.528102099895477,0.658563137054443,0.536099553108215,0.529256105422974,0.653746426105499,0.540836095809937,0.501621186733246,0.73791378736496,0.451508104801178,0.540405213832855,0.720219433307648,0.435024410486221,0.540813088417053,0.653758227825165,0.52926504611969,0.536101222038269,0.658563077449799,0.528100490570068,0.521404147148132,0.673779010772705,0.523602485656738,0.539819657802582,0.66680121421814,0.513781070709229,0.423592031002045,0.89724737405777,-0.124567747116089,0.137377500534058,0.9891197681427,0.0526263862848282,0.512490808963776,0.665488004684448,0.542659223079681,0.521404147148132,0.673779010772705,0.523602485656738,0.137377500534058,0.9891197681427,0.0526263862848282,-0.0783526599407196,0.943180203437805,0.32291179895401,0.520563542842865,0.650644719600677,0.552878856658936,0.512490808963776,0.665488004684448,0.542659223079681,
- -0.0783526599407196,0.943180203437805,0.32291179895401,-0.166014865040779,0.771694779396057,0.613943159580231,0.535596787929535,0.642100214958191,0.548491954803467,0.520563542842865,0.650644719600677,0.552878856658936,-0.166014865040779,0.771694779396057,0.613943159580231,-0.101911388337612,0.520643949508667,0.847669780254364,0.544017970561981,0.645902872085571,0.535587549209595,0.535596787929535,0.642100214958191,0.548491954803467,-0.101911388337612,0.520643949508667,0.847669780254364,0.150129362940788,0.220003187656403,0.963877439498901,0.540813088417053,0.653758227825165,0.52926504611969,0.544017970561981,0.645902872085571,0.535587549209595,0.150129362940788,0.220003187656403,0.963877439498901,0.486360877752304,0.0386056192219257,0.872904777526855,0.536101222038269,0.658563077449799,0.528100490570068,0.540813088417053,0.653758227825165,0.52926504611969,0.486360877752304,0.0386056192219257,0.872904777526855,0.578078210353851,0.00721493829041719,0.815949559211731,0.529256105422974,0.653746426105499,0.540836095809937,0.528102099895477,0.658563137054443,0.536099553108215,0.815902829170227,0.00721030123531818,0.578144192695618,0.872889280319214,0.0385890156030655,0.486390084028244,0.535624921321869,0.645577907562256,0.544366717338562,0.529256105422974,0.653746426105499,0.540836095809937,0.872889280319214,0.0385890156030655,0.486390084028244,0.96411144733429,0.179240792989731,0.195861756801605,0.548125267028809,0.642730295658112,0.535216271877289,0.535624921321869,0.645577907562256,0.544366717338562,0.96411144733429,0.179240792989731,0.195861756801605,0.902093708515167,0.428952127695084,-0.0471921488642693,0.551213502883911,0.652154505252838,0.520440459251404,0.548125267028809,0.642730295658112,0.535216271877289,0.902093708515167,0.428952127695084,-0.0471921488642693,0.703556299209595,0.692155241966248,-0.161026909947395,0.539819657802582,0.66680121421814,0.513781070709229,0.551213502883911,0.652154505252838,0.520440459251404,0.703556299209595,0.692155241966248,-0.161026909947395,0.423592031002045,0.89724737405777,-0.124567747116089,
- 0.532591998577118,0.688962340354919,0.491606324911118,0.567261159420013,0.678703248500824,0.466451227664948,0.543115198612213,0.64436000585556,0.538354933261871,0.542197465896606,0.633858263492584,0.551584661006927,0.567261159420013,0.678703248500824,0.466451227664948,0.61284476518631,0.646332502365112,0.454615950584412,0.560845792293549,0.642470002174377,0.522191941738129,0.543115198612213,0.64436000585556,0.538354933261871,0.61284476518631,0.646332502365112,0.454615950584412,0.651085793972015,0.592208445072174,0.474738299846649,0.583403408527374,0.622615218162537,0.521527349948883,0.560845792293549,0.642470002174377,0.522191941738129,0.651085793972015,0.592208445072174,0.474738299846649,0.656484723091125,0.537121772766113,0.529648959636688,0.590712130069733,0.596672832965851,0.543176531791687,0.583403408527374,0.622615218162537,0.521527349948883,0.656484723091125,0.537121772766113,0.529648959636688,0.608238995075226,0.510024189949036,0.608210980892181,0.57638418674469,0.584817886352539,0.570762157440186,0.590712130069733,0.596672832965851,0.543176531791687,0.608238995075226,0.510024189949036,0.608210980892181,0.529631972312927,0.537115871906281,0.656503319740295,0.548149764537811,0.594402253627777,0.5884028673172,0.57638418674469,0.584817886352539,0.570762157440186,0.529631972312927,0.537115871906281,0.656503319740295,0.474766761064529,0.592190504074097,0.651081383228302,0.524906516075134,0.619632482528687,0.583548486232758,0.548149764537811,0.594402253627777,0.5884028673172,0.474766761064529,0.592190504074097,0.651081383228302,0.454647481441498,0.646295011043549,0.612860977649689,0.523305177688599,0.640573680400848,0.56197601556778,0.524906516075134,0.619632482528687,0.583548486232758,0.454647481441498,0.646295011043549,0.612860977649689,0.466474592685699,0.678732514381409,0.567206978797913,0.538389623165131,0.644095361232758,0.543394804000854,0.523305177688599,0.640573680400848,0.56197601556778,0.466474592685699,0.678732514381409,0.567206978797913,0.491616159677505,0.688965618610382,0.532578647136688,0.552052736282349,0.634324431419373,0.541174948215485,
- 0.538389623165131,0.644095361232758,0.543394804000854,0.491616159677505,0.688965618610382,0.532578647136688,0.500746130943298,0.688747107982636,0.524290800094604,0.554198384284973,0.627566754817963,0.546831071376801,0.552052736282349,0.634324431419373,0.541174948215485,0.524296462535858,0.68874716758728,0.500740110874176,0.532591998577118,0.688962340354919,0.491606324911118,0.542197465896606,0.633858263492584,0.551584661006927,0.546833336353302,0.627566576004028,0.554196357727051,0.57638418674469,0.584817886352539,0.570762157440186,0.548149764537811,0.594402253627777,0.5884028673172,0.406200170516968,0.897627711296082,-0.171072751283646,0.104873441159725,0.994363248348236,0.0156037397682667,0.590712130069733,0.596672832965851,0.543176531791687,0.57638418674469,0.584817886352539,0.570762157440186,0.104873441159725,0.994363248348236,0.0156037397682667,-0.122235745191574,0.945961177349091,0.300359755754471,0.583403408527374,0.622615218162537,0.521527349948883,0.590712130069733,0.596672832965851,0.543176531791687,-0.122235745191574,0.945961177349091,0.300359755754471,-0.214545965194702,0.765457153320313,0.606667459011078,0.560845792293549,0.642470002174377,0.522191941738129,0.583403408527374,0.622615218162537,0.521527349948883,-0.214545965194702,0.765457153320313,0.606667459011078,-0.147077232599258,0.501030623912811,0.852840304374695,0.543115198612213,0.64436000585556,0.538354933261871,0.560845792293549,0.642470002174377,0.522191941738129,-0.147077232599258,0.501030623912811,0.852840304374695,0.0619770362973213,0.223890006542206,0.972641944885254,0.542197465896606,0.633858263492584,0.551584661006927,0.543115198612213,0.64436000585556,0.538354933261871,0.0619770362973213,0.223890006542206,0.972641944885254,0.356855064630508,0.00798224657773972,0.934125661849976,0.546833336353302,0.627566576004028,0.554196357727051,0.542197465896606,0.633858263492584,0.551584661006927,0.356855064630508,0.00798224657773972,0.934125661849976,0.560126304626465,-0.0874831080436707,0.823775053024292,0.552052736282349,0.634324431419373,0.541174948215485,
- 0.554198384284973,0.627566754817963,0.546831071376801,0.823726415634155,-0.0874963849782944,0.560195744037628,0.885467946529388,-0.0405998639762402,0.462923407554626,0.538389623165131,0.644095361232758,0.543394804000854,0.552052736282349,0.634324431419373,0.541174948215485,0.885467946529388,-0.0405998639762402,0.462923407554626,0.977694034576416,0.1401097625494,0.156472906470299,0.523305177688599,0.640573680400848,0.56197601556778,0.538389623165131,0.644095361232758,0.543394804000854,0.977694034576416,0.1401097625494,0.156472906470299,0.910171151161194,0.404448419809341,-0.0894993171095848,0.524906516075134,0.619632482528687,0.583548486232758,0.523305177688599,0.640573680400848,0.56197601556778,0.910171151161194,0.404448419809341,-0.0894993171095848,0.701021730899811,0.68168830871582,-0.209450840950012,0.548149764537811,0.594402253627777,0.5884028673172,0.524906516075134,0.619632482528687,0.583548486232758,0.701021730899811,0.68168830871582,-0.209450840950012,0.406200170516968,0.897627711296082,-0.171072751283646,0.511223495006561,0.759843647480011,0.401606947183609,0.590866684913635,0.712948322296143,0.3775994181633,0.548351228237152,0.649371027946472,0.526904404163361,0.540833592414856,0.654301941394806,0.528571665287018,0.590866684913635,0.712948322296143,0.3775994181633,0.654772818088531,0.644340515136719,0.395092397928238,0.553961455821991,0.642687201499939,0.529225766658783,0.548351228237152,0.649371027946472,0.526904404163361,0.654772818088531,0.644340515136719,0.395092397928238,0.68589973449707,0.572285413742065,0.449478596448898,0.556317031383514,0.635899424552917,0.534923613071442,0.553961455821991,0.642687201499939,0.529225766658783,0.68589973449707,0.572285413742065,0.449478596448898,0.675840616226196,0.516217350959778,0.526079058647156,0.554675579071045,0.631044745445251,0.542326092720032,0.556317031383514,0.635899424552917,0.534923613071442,0.675840616226196,0.516217350959778,0.526079058647156,0.62744402885437,0.491116762161255,0.604250192642212,0.549564182758331,0.629236161708832,0.549582600593567,0.554675579071045,0.631044745445251,0.542326092720032,
- 0.62744402885437,0.491116762161255,0.604250192642212,0.553509056568146,0.503691852092743,0.66326630115509,0.542316436767578,0.63102775812149,0.554704368114471,0.549564182758331,0.629236161708832,0.549582600593567,0.553509056568146,0.503691852092743,0.66326630115509,0.474083989858627,0.550497829914093,0.687165677547455,0.534959316253662,0.635867059230804,0.556319653987885,0.542316436767578,0.63102775812149,0.554704368114471,0.474083989858627,0.550497829914093,0.687165677547455,0.410136252641678,0.619151294231415,0.66965663433075,0.529227912425995,0.642694354057312,0.553951144218445,0.534959316253662,0.635867059230804,0.556319653987885,0.410136252641678,0.619151294231415,0.66965663433075,0.378982275724411,0.691312491893768,0.615190625190735,0.526902794837952,0.649425327777863,0.548288524150848,0.529227912425995,0.642694354057312,0.553951144218445,0.378982275724411,0.691312491893768,0.615190625190735,0.388925015926361,0.747236251831055,0.538864850997925,0.528514087200165,0.654285550117493,0.540909647941589,0.526902794837952,0.649425327777863,0.548288524150848,0.388925015926361,0.747236251831055,0.538864850997925,0.413729161024094,0.771546959877014,0.483263283967972,0.530342102050781,0.656070113182068,0.536944448947906,0.528514087200165,0.654285550117493,0.540909647941589,0.483324646949768,0.771542906761169,0.413665145635605,0.511223495006561,0.759843647480011,0.401606947183609,0.540833592414856,0.654301941394806,0.528571665287018,0.536976158618927,0.656069993972778,0.530310094356537,0.549564182758331,0.629236161708832,0.549582600593567,0.542316436767578,0.63102775812149,0.554704368114471,0.352686077356339,0.886944532394409,-0.298231571912766,0.012845465913415,0.996053755283356,-0.0878185629844666,0.554675579071045,0.631044745445251,0.542326092720032,0.549564182758331,0.629236161708832,0.549582600593567,0.012845465913415,0.996053755283356,-0.0878185629844666,-0.243332326412201,0.941495954990387,0.233184337615967,0.556317031383514,0.635899424552917,0.534923613071442,0.554675579071045,0.631044745445251,0.542326092720032,
- -0.243332326412201,0.941495954990387,0.233184337615967,-0.347419530153275,0.737926304340363,0.578588366508484,0.553961455821991,0.642687201499939,0.529225766658783,0.556317031383514,0.635899424552917,0.534923613071442,-0.347419530153275,0.737926304340363,0.578588366508484,-0.271437972784042,0.439805686473846,0.856091380119324,0.548351228237152,0.649371027946472,0.526904404163361,0.553961455821991,0.642687201499939,0.529225766658783,-0.271437972784042,0.439805686473846,0.856091380119324,-0.035539548844099,0.127219468355179,0.991237759590149,0.540833592414856,0.654301941394806,0.528571665287018,0.548351228237152,0.649371027946472,0.526904404163361,-0.035539548844099,0.127219468355179,0.991237759590149,0.296917229890823,-0.11617236584425,0.947810173034668,0.536976158618927,0.656069993972778,0.530310094356537,0.540833592414856,0.654301941394806,0.528571665287018,0.296917229890823,-0.11617236584425,0.947810173034668,0.525456070899963,-0.220856755971909,0.821655869483948,0.528514087200165,0.654285550117493,0.540909647941589,0.530342102050781,0.656070113182068,0.536944448947906,0.821608781814575,-0.22086638212204,0.525525629520416,0.892976999282837,-0.170744985342026,0.416459381580353,0.526902794837952,0.649425327777863,0.548288524150848,0.528514087200165,0.654285550117493,0.540909647941589,0.892976999282837,-0.170744985342026,0.416459381580353,0.996932804584503,0.0329018272459507,0.071011021733284,0.529227912425995,0.642694354057312,0.553951144218445,0.526902794837952,0.649425327777863,0.548288524150848,0.996932804584503,0.0329018272459507,0.071011021733284,0.920819044113159,0.330822110176086,-0.20651663839817,0.534959316253662,0.635867059230804,0.556319653987885,0.529227912425995,0.642694354057312,0.553951144218445,0.920819044113159,0.330822110176086,-0.20651663839817,0.684978842735291,0.643512666225433,-0.341607093811035,0.542316436767578,0.63102775812149,0.554704368114471,0.534959316253662,0.635867059230804,0.556319653987885,0.684978842735291,0.643512666225433,-0.341607093811035,0.352686077356339,0.886944532394409,-0.298231571912766,
- 0.538693308830261,0.67172634601593,0.508520722389221,0.637387573719025,0.586349070072174,0.499931931495667,0.64704692363739,0.53310614824295,0.545094609260559,0.541350305080414,0.638414919376373,0.547143757343292,0.637387573719025,0.586349070072174,0.499931931495667,0.700079500675201,0.395053625106812,0.59482878446579,0.621190369129181,0.483954578638077,0.61636883020401,0.64704692363739,0.53310614824295,0.545094609260559,0.700079500675201,0.395053625106812,0.59482878446579,0.615540325641632,0.418730735778809,0.66766369342804,0.551090836524963,0.508410334587097,0.661678075790405,0.621190369129181,0.483954578638077,0.61636883020401,0.615540325641632,0.418730735778809,0.66766369342804,0.560134053230286,0.492506086826324,0.666098892688751,0.534765243530273,0.604787588119507,0.590134084224701,0.551090836524963,0.508410334587097,0.661678075790405,0.560134053230286,0.492506086826324,0.666098892688751,0.594666838645935,0.541054546833038,0.594669103622437,0.552881062030792,0.623415470123291,0.552879512310028,0.534765243530273,0.604787588119507,0.590134084224701,0.594666838645935,0.541054546833038,0.594669103622437,0.533637404441834,0.563133060932159,0.6309614777565,0.544109165668488,0.627035439014435,0.557469189167023,0.552881062030792,0.623415470123291,0.552879512310028,0.533637404441834,0.563133060932159,0.6309614777565,0.49357545375824,0.606849372386932,0.622990489006042,0.536788940429688,0.635980844497681,0.554424107074738,0.544109165668488,0.627035439014435,0.557469189167023,0.49357545375824,0.606849372386932,0.622990489006042,0.484004318714142,0.646036744117737,0.590234220027924,0.537817776203156,0.642310321331024,0.546067357063293,0.536788940429688,0.635980844497681,0.554424107074738,0.484004318714142,0.646036744117737,0.590234220027924,0.499050796031952,0.663991630077362,0.556833565235138,0.543906033039093,0.641927242279053,0.540458858013153,0.537817776203156,0.642310321331024,0.546067357063293,0.499050796031952,0.663991630077362,0.556833565235138,0.508302330970764,0.67145574092865,0.539236545562744,0.547024428844452,0.638266146183014,0.541646182537079,
- 0.543906033039093,0.641927242279053,0.540458858013153,0.508302330970764,0.67145574092865,0.539236545562744,0.502229452133179,0.682102918624878,0.531508564949036,0.541000247001648,0.643393039703369,0.541631042957306,0.547024428844452,0.638266146183014,0.541646182537079,0.526877224445343,0.682181477546692,0.506980121135712,0.538693308830261,0.67172634601593,0.508520722389221,0.541350305080414,0.638414919376373,0.547143757343292,0.541564643383026,0.643393099308014,0.541066706180573,0.552881062030792,0.623415470123291,0.552879512310028,0.544109165668488,0.627035439014435,0.557469189167023,0.337226569652557,0.881515860557556,-0.330466389656067,-0.0800532102584839,0.993574857711792,-0.0800037160515785,0.534765243530273,0.604787588119507,0.590134084224701,0.552881062030792,0.623415470123291,0.552879512310028,-0.0800532102584839,0.993574857711792,-0.0800037160515785,-0.375596582889557,0.811790943145752,0.447127372026443,0.551090836524963,0.508410334587097,0.661678075790405,0.534765243530273,0.604787588119507,0.590134084224701,-0.375596582889557,0.811790943145752,0.447127372026443,-0.285887271165848,0.505019128322601,0.814385771751404,0.621190369129181,0.483954578638077,0.61636883020401,0.551090836524963,0.508410334587097,0.661678075790405,-0.285887271165848,0.505019128322601,0.814385771751404,0.0209384188055992,0.252787470817566,0.967295229434967,0.64704692363739,0.53310614824295,0.545094609260559,0.621190369129181,0.483954578638077,0.61636883020401,0.0209384188055992,0.252787470817566,0.967295229434967,0.306417226791382,0.212695315480232,0.927830457687378,0.541350305080414,0.638414919376373,0.547143757343292,0.64704692363739,0.53310614824295,0.545094609260559,0.306417226791382,0.212695315480232,0.927830457687378,0.460457980632782,0.123254776000977,0.879082918167114,0.541564643383026,0.643393099308014,0.541066706180573,0.541350305080414,0.638414919376373,0.547143757343292,0.460457980632782,0.123254776000977,0.879082918167114,0.509373545646667,-0.0173098500818014,0.86037141084671,0.547024428844452,0.638266146183014,0.541646182537079,
- 0.541000247001648,0.643393039703369,0.541631042957306,0.860326826572418,-0.0173140093684196,0.509448885917664,0.879081606864929,0.123240329325199,0.460464209318161,0.543906033039093,0.641927242279053,0.540458858013153,0.547024428844452,0.638266146183014,0.541646182537079,0.879081606864929,0.123240329325199,0.460464209318161,0.931980848312378,0.261741638183594,0.250804871320724,0.537817776203156,0.642310321331024,0.546067357063293,0.543906033039093,0.641927242279053,0.540458858013153,0.931980848312378,0.261741638183594,0.250804871320724,0.907438993453979,0.413101047277451,-0.0768252089619637,0.536788940429688,0.635980844497681,0.554424107074738,0.537817776203156,0.642310321331024,0.546067357063293,0.907438993453979,0.413101047277451,-0.0768252089619637,0.6898393034935,0.655047297477722,-0.308277249336243,0.544109165668488,0.627035439014435,0.557469189167023,0.536788940429688,0.635980844497681,0.554424107074738,0.6898393034935,0.655047297477722,-0.308277249336243,0.337226569652557,0.881515860557556,-0.330466389656067,0.540925621986389,0.72751259803772,0.422048538923264,0.60067892074585,0.682417452335358,0.416522800922394,0.545112609863281,0.646229863166809,0.534077882766724,0.540349304676056,0.660972952842712,0.520708560943604,0.60067892074585,0.682417452335358,0.416522800922394,0.640600085258484,0.62687075138092,0.443468809127808,0.530722498893738,0.642664730548859,0.55255389213562,0.545112609863281,0.646229863166809,0.534077882766724,0.640600085258484,0.62687075138092,0.443468809127808,0.651124596595764,0.576721906661987,0.493384838104248,0.508676528930664,0.657126188278198,0.556267440319061,0.530722498893738,0.642664730548859,0.55255389213562,0.651124596595764,0.576721906661987,0.493384838104248,0.631709456443787,0.544111013412476,0.55216521024704,0.499408096075058,0.678575813770294,0.53863388299942,0.508676528930664,0.657126188278198,0.556267440319061,0.631709456443787,0.544111013412476,0.55216521024704,0.597014904022217,0.535869777202606,0.597006559371948,0.512737452983856,0.688620388507843,0.512739956378937,0.499408096075058,0.678575813770294,0.53863388299942,
- 0.597014904022217,0.535869777202606,0.597006559371948,0.552127718925476,0.544130980968475,0.631725013256073,0.538611888885498,0.678596258163452,0.499403923749924,0.512737452983856,0.688620388507843,0.512739956378937,0.552127718925476,0.544130980968475,0.631725013256073,0.493444412946701,0.576690971851349,0.651106953620911,0.556292176246643,0.657128691673279,0.508646190166473,0.538611888885498,0.678596258163452,0.499403923749924,0.493444412946701,0.576690971851349,0.651106953620911,0.443482011556625,0.626886069774628,0.640576004981995,0.552576065063477,0.642687797546387,0.530671298503876,0.556292176246643,0.657128691673279,0.508646190166473,0.443482011556625,0.626886069774628,0.640576004981995,0.416539579629898,0.682440280914307,0.600641429424286,0.534117937088013,0.646190822124481,0.545119762420654,0.552576065063477,0.642687797546387,0.530671298503876,0.416539579629898,0.682440280914307,0.600641429424286,0.422043174505234,0.727498948574066,0.540948092937469,0.520718455314636,0.660962641239166,0.540352523326874,0.534117937088013,0.646190822124481,0.545119762420654,0.422043174505234,0.727498948574066,0.540948092937469,0.441070199012756,0.747572064399719,0.496581524610519,0.51881355047226,0.669100522994995,0.532106161117554,0.520718455314636,0.660962641239166,0.540352523326874,0.496579766273499,0.747571885585785,0.441072553396225,0.540925621986389,0.72751259803772,0.422048538923264,0.540349304676056,0.660972952842712,0.520708560943604,0.53210723400116,0.66910058259964,0.518812537193298,0.512737452983856,0.688620388507843,0.512739956378937,0.538611888885498,0.678596258163452,0.499403923749924,0.289607554674149,0.858070969581604,-0.42407751083374,-0.148955404758453,0.977566838264465,-0.148914501070976,0.499408096075058,0.678575813770294,0.53863388299942,0.512737452983856,0.688620388507843,0.512739956378937,-0.148955404758453,0.977566838264465,-0.148914501070976,-0.424064487218857,0.85806405544281,0.289647430181503,0.508676528930664,0.657126188278198,0.556267440319061,0.499408096075058,0.678575813770294,0.53863388299942,
- -0.424064487218857,0.85806405544281,0.289647430181503,-0.433500289916992,0.608284592628479,0.664881527423859,0.530722498893738,0.642664730548859,0.55255389213562,0.508676528930664,0.657126188278198,0.556267440319061,-0.433500289916992,0.608284592628479,0.664881527423859,-0.232906624674797,0.313713520765305,0.920509815216064,0.545112609863281,0.646229863166809,0.534077882766724,0.530722498893738,0.642664730548859,0.55255389213562,-0.232906624674797,0.313713520765305,0.920509815216064,0.101815670728683,0.0725356787443161,0.992155313491821,0.540349304676056,0.660972952842712,0.520708560943604,0.545112609863281,0.646229863166809,0.534077882766724,0.101815670728683,0.0725356787443161,0.992155313491821,0.456495463848114,-0.0588243007659912,0.887779057025909,0.53210723400116,0.66910058259964,0.518812537193298,0.540349304676056,0.660972952842712,0.520708560943604,0.456495463848114,-0.0588243007659912,0.887779057025909,0.561510622501373,-0.0811613500118256,0.82347959280014,0.520718455314636,0.660962641239166,0.540352523326874,0.51881355047226,0.669100522994995,0.532106161117554,0.823442995548248,-0.0811691880226135,0.561563193798065,0.887776494026184,-0.0588586404919624,0.456495970487595,0.534117937088013,0.646190822124481,0.545119762420654,0.520718455314636,0.660962641239166,0.540352523326874,0.887776494026184,-0.0588586404919624,0.456495970487595,0.992165386676788,0.0724708884954453,0.101764194667339,0.552576065063477,0.642687797546387,0.530671298503876,0.534117937088013,0.646190822124481,0.545119762420654,0.992165386676788,0.0724708884954453,0.101764194667339,0.920510053634644,0.313673824071884,-0.23295958340168,0.556292176246643,0.657128691673279,0.508646190166473,0.552576065063477,0.642687797546387,0.530671298503876,0.920510053634644,0.313673824071884,-0.23295958340168,0.664895594120026,0.608248353004456,-0.433529585599899,0.538611888885498,0.678596258163452,0.499403923749924,0.556292176246643,0.657128691673279,0.508646190166473,0.664895594120026,0.608248353004456,-0.433529585599899,0.289607554674149,0.858070969581604,-0.42407751083374,
- 0.52636843919754,0.713276565074921,0.462788254022598,0.572441339492798,0.686131715774536,0.448925673961639,0.552845656871796,0.653893768787384,0.516512036323547,0.540239572525024,0.662193238735199,0.519269943237305,0.572441339492798,0.686131715774536,0.448925673961639,0.609450042247772,0.646389305591583,0.459077000617981,0.562436103820801,0.64245730638504,0.520494341850281,0.552845656871796,0.653893768787384,0.516512036323547,0.609450042247772,0.646389305591583,0.459077000617981,0.627510607242584,0.604630827903748,0.490563124418259,0.566394865512848,0.631083548069,0.530028641223907,0.562436103820801,0.64245730638504,0.520494341850281,0.627510607242584,0.604630827903748,0.490563124418259,0.621729731559753,0.572172284126282,0.534856200218201,0.563642621040344,0.622762024402618,0.542655050754547,0.566394865512848,0.631083548069,0.530028641223907,0.621729731559753,0.572172284126282,0.534856200218201,0.593659281730652,0.55759185552597,0.580224096775055,0.554946660995483,0.619704186916351,0.554978311061859,0.563642621040344,0.622762024402618,0.542655050754547,0.593659281730652,0.55759185552597,0.580224096775055,0.550808191299438,0.564883530139923,0.614424169063568,0.542646467685699,0.622755944728851,0.563657701015472,0.554946660995483,0.619704186916351,0.554978311061859,0.550808191299438,0.564883530139923,0.614424169063568,0.504728376865387,0.592034757137299,0.62828665971756,0.530000150203705,0.631098866462708,0.566404581069946,0.542646467685699,0.622755944728851,0.563657701015472,0.504728376865387,0.592034757137299,0.62828665971756,0.467688500881195,0.631813824176788,0.618125319480896,0.520451188087463,0.64244532585144,0.562489748001099,0.530000150203705,0.631098866462708,0.566404581069946,0.467688500881195,0.631813824176788,0.618125319480896,0.449664711952209,0.673529446125031,0.58665132522583,0.516497254371643,0.653880059719086,0.552875638008118,0.520451188087463,0.64244532585144,0.562489748001099,0.449664711952209,0.673529446125031,0.58665132522583,0.455450743436813,0.706001937389374,0.542333841323853,0.51924341917038,0.662189483642578,0.54026985168457,
- 0.516497254371643,0.653880059719086,0.552875638008118,0.455450743436813,0.706001937389374,0.542333841323853,0.469897717237473,0.720307052135468,0.510249018669128,0.522311091423035,0.665221631526947,0.533546090126038,0.51924341917038,0.662189483642578,0.54026985168457,0.510320007801056,0.720304787158966,0.469823896884918,0.52636843919754,0.713276565074921,0.462788254022598,0.540239572525024,0.662193238735199,0.519269943237305,0.533571183681488,0.665221512317657,0.522285521030426,0.554946660995483,0.619704186916351,0.554978311061859,0.542646467685699,0.622755944728851,0.563657701015472,0.406249910593033,0.897600769996643,-0.171096310019493,0.104849010705948,0.994366109371185,0.0155790969729424,0.563642621040344,0.622762024402618,0.542655050754547,0.554946660995483,0.619704186916351,0.554978311061859,0.104849010705948,0.994366109371185,0.0155790969729424,-0.122352726757526,0.945962846279144,0.300306707620621,0.566394865512848,0.631083548069,0.530028641223907,0.563642621040344,0.622762024402618,0.542655050754547,-0.122352726757526,0.945962846279144,0.300306707620621,-0.21464678645134,0.765431761741638,0.606663823127747,0.562436103820801,0.64245730638504,0.520494341850281,0.566394865512848,0.631083548069,0.530028641223907,-0.21464678645134,0.765431761741638,0.606663823127747,-0.147128015756607,0.501005172729492,0.852846562862396,0.552845656871796,0.653893768787384,0.516512036323547,0.562436103820801,0.64245730638504,0.520494341850281,-0.147128015756607,0.501005172729492,0.852846562862396,0.0619656592607498,0.223883539438248,0.972644090652466,0.540239572525024,0.662193238735199,0.519269943237305,0.552845656871796,0.653893768787384,0.516512036323547,0.0619656592607498,0.223883539438248,0.972644090652466,0.356882780790329,0.00796467158943415,0.934115290641785,0.533571183681488,0.665221512317657,0.522285521030426,0.540239572525024,0.662193238735199,0.519269943237305,0.356882780790329,0.00796467158943415,0.934115290641785,0.56005859375,-0.087430901825428,0.823826491832733,0.51924341917038,0.662189483642578,0.54026985168457,
- 0.522311091423035,0.665221631526947,0.533546090126038,0.823750972747803,-0.0874402821063995,0.560168266296387,0.885493278503418,-0.0404755361378193,0.46288600564003,0.516497254371643,0.653880059719086,0.552875638008118,0.51924341917038,0.662189483642578,0.54026985168457,0.885493278503418,-0.0404755361378193,0.46288600564003,0.977685213088989,0.14014995098114,0.156492039561272,0.520451188087463,0.64244532585144,0.562489748001099,0.516497254371643,0.653880059719086,0.552875638008118,0.977685213088989,0.14014995098114,0.156492039561272,0.910192549228668,0.404385924339294,-0.0895635709166527,0.530000150203705,0.631098866462708,0.566404581069946,0.520451188087463,0.64244532585144,0.562489748001099,0.910192549228668,0.404385924339294,-0.0895635709166527,0.701026618480682,0.681668341159821,-0.209499508142471,0.542646467685699,0.622755944728851,0.563657701015472,0.530000150203705,0.631098866462708,0.566404581069946,0.701026618480682,0.681668341159821,-0.209499508142471,0.406249910593033,0.897600769996643,-0.171096310019493,0.526676297187805,0.71204674243927,0.464329183101654,0.572857618331909,0.686669588088989,0.447570145130157,0.544678211212158,0.645774006843567,0.535071611404419,0.54146945476532,0.64582747220993,0.538254261016846,0.572857618331909,0.686669588088989,0.447570145130157,0.613249599933624,0.646367311477661,0.454020082950592,0.550323724746704,0.642713606357574,0.532975673675537,0.544678211212158,0.645774006843567,0.535071611404419,0.613249599933624,0.646367311477661,0.454020082950592,0.635991990566254,0.600281119346619,0.484950244426727,0.555624961853027,0.636240065097809,0.535237789154053,0.550323724746704,0.642713606357574,0.532975673675537,0.635991990566254,0.600281119346619,0.484950244426727,0.632034718990326,0.562023103237152,0.533537447452545,0.556424558162689,0.62944096326828,0.542398273944855,0.555624961853027,0.636240065097809,0.535237789154053,0.632034718990326,0.562023103237152,0.533537447452545,0.593095779418945,0.544480443000793,0.593109130859375,0.551930844783783,0.62649017572403,0.550347506999969,
- 0.556424558162689,0.62944096326828,0.542398273944855,0.593095779418945,0.544480443000793,0.593109130859375,0.533460795879364,0.562054395675659,0.632071614265442,0.543864905834198,0.628764152526855,0.555757820606232,0.551930844783783,0.62649017572403,0.550347506999969,0.533460795879364,0.562054395675659,0.632071614265442,0.485060065984726,0.600221693515778,0.635964453220367,0.536348521709442,0.635270178318024,0.555663704872131,0.543864905834198,0.628764152526855,0.555757820606232,0.485060065984726,0.600221693515778,0.635964453220367,0.454070448875427,0.646362662315369,0.613217294216156,0.533508658409119,0.641822516918182,0.550846993923187,0.536348521709442,0.635270178318024,0.555663704872131,0.454070448875427,0.646362662315369,0.613217294216156,0.447609126567841,0.686696946620941,0.572794377803802,0.535114586353302,0.645334184169769,0.545157015323639,0.533508658409119,0.641822516918182,0.550846993923187,0.447609126567841,0.686696946620941,0.572794377803802,0.464312613010406,0.712030410766602,0.526713013648987,0.538081347942352,0.645659029483795,0.541842222213745,0.535114586353302,0.645334184169769,0.545157015323639,0.464312613010406,0.712030410766602,0.526713013648987,0.472193241119385,0.718056082725525,0.511301398277283,0.539477050304413,0.645388185977936,0.540775954723358,0.538081347942352,0.645659029483795,0.541842222213745,0.511292457580566,0.71805602312088,0.472202837467194,0.526676297187805,0.71204674243927,0.464329183101654,0.54146945476532,0.64582747220993,0.538254261016846,0.540778338909149,0.645388185977936,0.539474785327911,0.551930844783783,0.62649017572403,0.550347506999969,0.543864905834198,0.628764152526855,0.555757820606232,0.352661788463593,0.886944174766541,-0.298261344432831,0.012798260897398,0.996049165725708,-0.0878771618008614,0.556424558162689,0.62944096326828,0.542398273944855,0.551930844783783,0.62649017572403,0.550347506999969,0.012798260897398,0.996049165725708,-0.0878771618008614,-0.243373781442642,0.941497027873993,0.233136564493179,0.555624961853027,0.636240065097809,0.535237789154053,
- 0.556424558162689,0.62944096326828,0.542398273944855,-0.243373781442642,0.941497027873993,0.233136564493179,-0.347407817840576,0.737937569618225,0.578580915927887,0.550323724746704,0.642713606357574,0.532975673675537,0.555624961853027,0.636240065097809,0.535237789154053,-0.347407817840576,0.737937569618225,0.578580915927887,-0.271404415369034,0.439801126718521,0.85610443353653,0.544678211212158,0.645774006843567,0.535071611404419,0.550323724746704,0.642713606357574,0.532975673675537,-0.271404415369034,0.439801126718521,0.85610443353653,-0.0355342254042625,0.127236276865005,0.991235733032227,0.54146945476532,0.64582747220993,0.538254261016846,0.544678211212158,0.645774006843567,0.535071611404419,-0.0355342254042625,0.127236276865005,0.991235733032227,0.296893388032913,-0.116212941706181,0.947812736034393,0.540778338909149,0.645388185977936,0.539474785327911,0.54146945476532,0.64582747220993,0.538254261016846,0.296893388032913,-0.116212941706181,0.947812736034393,0.525465548038483,-0.220935612916946,0.821628570556641,0.538081347942352,0.645659029483795,0.541842222213745,0.539477050304413,0.645388185977936,0.540775954723358,0.821612656116486,-0.220937043428421,0.525489807128906,0.892971038818359,-0.170796617865562,0.416450947523117,0.535114586353302,0.645334184169769,0.545157015323639,0.538081347942352,0.645659029483795,0.541842222213745,0.892971038818359,-0.170796617865562,0.416450947523117,0.996932864189148,0.0328814089298248,0.0710200816392899,0.533508658409119,0.641822516918182,0.550846993923187,0.535114586353302,0.645334184169769,0.545157015323639,0.996932864189148,0.0328814089298248,0.0710200816392899,0.920829057693481,0.330819517374039,-0.206476360559464,0.536348521709442,0.635270178318024,0.555663704872131,0.533508658409119,0.641822516918182,0.550846993923187,0.920829057693481,0.330819517374039,-0.206476360559464,0.684954702854156,0.643543899059296,-0.341596812009811,0.543864905834198,0.628764152526855,0.555757820606232,0.536348521709442,0.635270178318024,0.555663704872131,0.684954702854156,0.643543899059296,-0.341596812009811,
- 0.352661788463593,0.886944174766541,-0.298261344432831,0.527440428733826,0.709151327610016,0.467879354953766,0.570729613304138,0.68366402387619,0.454830944538116,0.534993469715118,0.636179268360138,0.555929839611053,0.542265653610229,0.631342828273773,0.554395377635956,0.570729613304138,0.68366402387619,0.454830944538116,0.605450987815857,0.646385371685028,0.464343637228012,0.529537260532379,0.642651379108429,0.553705334663391,0.534993469715118,0.636179268360138,0.555929839611053,0.605450987815857,0.646385371685028,0.464343637228012,0.622381806373596,0.607199370861053,0.493912726640701,0.527294516563416,0.649177312850952,0.548205494880676,0.529537260532379,0.642651379108429,0.553705334663391,0.622381806373596,0.607199370861053,0.493912726640701,0.616908609867096,0.576737403869629,0.535535037517548,0.528828024864197,0.653980433940887,0.54097181558609,0.527294516563416,0.649177312850952,0.548205494880676,0.616908609867096,0.576737403869629,0.535535037517548,0.590604424476624,0.563108623027802,0.578009724617004,0.533856689929962,0.655747532844543,0.53384667634964,0.528828024864197,0.653980433940887,0.54097181558609,0.590604424476624,0.563108623027802,0.578009724617004,0.550458788871765,0.569923460483551,0.61006760597229,0.540927588939667,0.654003798961639,0.528844356536865,0.533856689929962,0.655747532844543,0.53384667634964,0.550458788871765,0.569923460483551,0.61006760597229,0.507231533527374,0.595386445522308,0.623082101345062,0.548205137252808,0.649206280708313,0.527259349822998,0.540927588939667,0.654003798961639,0.528844356536865,0.507231533527374,0.595386445522308,0.623082101345062,0.472486883401871,0.632693886756897,0.613559007644653,0.553708851337433,0.64265501499176,0.529529094696045,0.548205137252808,0.649206280708313,0.527259349822998,0.472486883401871,0.632693886756897,0.613559007644653,0.455558449029922,0.67185378074646,0.584019720554352,0.555966913700104,0.636137008666992,0.535005271434784,0.553708851337433,0.64265501499176,0.529529094696045,0.455558449029922,0.67185378074646,0.584019720554352,0.460990309715271,0.702317118644714,0.542437672615051,
- 0.554383337497711,0.631331205368042,0.542291581630707,0.555966913700104,0.636137008666992,0.535005271434784,0.460990309715271,0.702317118644714,0.542437672615051,0.474597752094269,0.715728163719177,0.512338042259216,0.552628636360168,0.629569530487061,0.546117067337036,0.554383337497711,0.631331205368042,0.542291581630707,0.512336313724518,0.715728223323822,0.474599450826645,0.527440428733826,0.709151327610016,0.467879354953766,0.542265653610229,0.631342828273773,0.554395377635956,0.546113967895508,0.629569470882416,0.552631795406342,0.533856689929962,0.655747532844543,0.53384667634964,0.540927588939667,0.654003798961639,0.528844356536865,0.340756237506866,0.882689714431763,-0.323641866445541,-0.00608468521386385,0.994037568569183,-0.108868569135666,0.528828024864197,0.653980433940887,0.54097181558609,0.533856689929962,0.655747532844543,0.53384667634964,-0.00608468521386385,0.994037568569183,-0.108868569135666,-0.267600566148758,0.93834400177002,0.21886220574379,0.527294516563416,0.649177312850952,0.548205494880676,0.528828024864197,0.653980433940887,0.54097181558609,-0.267600566148758,0.93834400177002,0.21886220574379,-0.373758107423782,0.730598330497742,0.571428894996643,0.529537260532379,0.642651379108429,0.553705334663391,0.527294516563416,0.649177312850952,0.548205494880676,-0.373758107423782,0.730598330497742,0.571428894996643,-0.296035587787628,0.426276922225952,0.854781270027161,0.534993469715118,0.636179268360138,0.555929839611053,0.529537260532379,0.642651379108429,0.553705334663391,-0.296035587787628,0.426276922225952,0.854781270027161,-0.0553804226219654,0.107250295579433,0.992688536643982,0.542265653610229,0.631342828273773,0.554395377635956,0.534993469715118,0.636179268360138,0.555929839611053,-0.0553804226219654,0.107250295579433,0.992688536643982,0.283933073282242,-0.141310527920723,0.948374152183533,0.546113967895508,0.629569470882416,0.552631795406342,0.542265653610229,0.631342828273773,0.554395377635956,0.283933073282242,-0.141310527920723,0.948374152183533,0.517167508602142,-0.247578024864197,0.819294273853302,
- 0.554383337497711,0.631331205368042,0.542291581630707,0.552628636360168,0.629569530487061,0.546117067337036,0.81929749250412,-0.24758143723011,0.517160534858704,0.892362236976624,-0.197141289710999,0.405986666679382,0.555966913700104,0.636137008666992,0.535005271434784,0.554383337497711,0.631331205368042,0.542291581630707,0.892362236976624,-0.197141289710999,0.405986666679382,0.998521566390991,0.0107249794527888,0.053288109600544,0.553708851337433,0.64265501499176,0.529529094696045,0.555966913700104,0.636137008666992,0.535005271434784,0.998521566390991,0.0107249794527888,0.053288109600544,0.920813322067261,0.315008074045181,-0.229941084980965,0.548205137252808,0.649206280708313,0.527259349822998,0.553708851337433,0.64265501499176,0.529529094696045,0.920813322067261,0.315008074045181,-0.229941084980965,0.680055916309357,0.634152054786682,-0.367933750152588,0.540927588939667,0.654003798961639,0.528844356536865,0.548205137252808,0.649206280708313,0.527259349822998,0.680055916309357,0.634152054786682,-0.367933750152588,0.340756237506866,0.882689714431763,-0.323641866445541,0.523887276649475,0.721889793872833,0.452125310897827,0.636033594608307,0.651114761829376,0.414138615131378,0.613029479980469,0.59003472328186,0.525408327579498,0.541760146617889,0.641249120235443,0.543410956859589,0.636033594608307,0.651114761829376,0.414138615131378,0.730003476142883,0.492424726486206,0.473933339118958,0.640063881874084,0.519087493419647,0.566450774669647,0.613029479980469,0.59003472328186,0.525408327579498,0.730003476142883,0.492424726486206,0.473933339118958,0.710410296916962,0.443333834409714,0.546600818634033,0.611041486263275,0.514563977718353,0.601541519165039,0.640063881874084,0.519087493419647,0.566450774669647,0.710410296916962,0.443333834409714,0.546600818634033,0.673036336898804,0.429357558488846,0.602224409580231,0.59461784362793,0.541771531105042,0.594065070152283,0.611041486263275,0.514563977718353,0.601541519165039,0.673036336898804,0.429357558488846,0.602224409580231,0.638680994510651,0.429169863462448,0.638670384883881,
- 0.595783889293671,0.54828405380249,0.58687835931778,0.59461784362793,0.541771531105042,0.594065070152283,0.638680994510651,0.429169863462448,0.638670384883881,0.517025470733643,0.470902055501938,0.714797794818878,0.550960183143616,0.562746584415436,0.616246044635773,0.595783889293671,0.54828405380249,0.58687835931778,0.517025470733643,0.470902055501938,0.714797794818878,0.430894136428833,0.557012736797333,0.7099769115448,0.512165069580078,0.602242648601532,0.612364888191223,0.550960183143616,0.562746584415436,0.616246044635773,0.430894136428833,0.557012736797333,0.7099769115448,0.396884202957153,0.644316613674164,0.65371185541153,0.504681587219238,0.638054668903351,0.581534802913666,0.512165069580078,0.602242648601532,0.612364888191223,0.396884202957153,0.644316613674164,0.65371185541153,0.412576019763947,0.700430512428284,0.582390069961548,0.523278117179871,0.649741768836975,0.551376104354858,0.504681587219238,0.638054668903351,0.581534802913666,0.412576019763947,0.700430512428284,0.582390069961548,0.45207804441452,0.721882700920105,0.523937821388245,0.543460130691528,0.641334891319275,0.541609466075897,0.523278117179871,0.649741768836975,0.551376104354858,0.45207804441452,0.721882700920105,0.523937821388245,0.466911017894745,0.723267793655396,0.508800446987152,0.548865735530853,0.634158194065094,0.544600665569305,0.543460130691528,0.641334891319275,0.541609466075897,0.508802056312561,0.723267495632172,0.466909617185593,0.523887276649475,0.721889793872833,0.452125310897827,0.541760146617889,0.641249120235443,0.543410956859589,0.544597446918488,0.634158194065094,0.548868954181671,0.595783889293671,0.54828405380249,0.58687835931778,0.550960183143616,0.562746584415436,0.616246044635773,0.406241446733475,0.897607922554016,-0.17107880115509,0.104875363409519,0.994363248348236,0.015585757791996,0.59461784362793,0.541771531105042,0.594065070152283,0.595783889293671,0.54828405380249,0.58687835931778,0.104875363409519,0.994363248348236,0.015585757791996,-0.146359160542488,0.924149334430695,0.352883964776993,0.611041486263275,0.514563977718353,0.601541519165039,
- 0.59461784362793,0.541771531105042,0.594065070152283,-0.146359160542488,0.924149334430695,0.352883964776993,-0.206156820058823,0.640884637832642,0.739436507225037,0.640063881874084,0.519087493419647,0.566450774669647,0.611041486263275,0.514563977718353,0.601541519165039,-0.206156820058823,0.640884637832642,0.739436507225037,-0.0570083633065224,0.347447454929352,0.935964941978455,0.613029479980469,0.59003472328186,0.525408327579498,0.640063881874084,0.519087493419647,0.566450774669647,-0.0570083633065224,0.347447454929352,0.935964941978455,0.172716900706291,0.125191673636436,0.976983189582825,0.541760146617889,0.641249120235443,0.543410956859589,0.613029479980469,0.59003472328186,0.525408327579498,0.172716900706291,0.125191673636436,0.976983189582825,0.356883525848389,0.00798005703836679,0.934114873409271,0.544597446918488,0.634158194065094,0.548868954181671,0.541760146617889,0.641249120235443,0.543410956859589,0.356883525848389,0.00798005703836679,0.934114873409271,0.560071885585785,-0.0874835550785065,0.823811948299408,0.543460130691528,0.641334891319275,0.541609466075897,0.548865735530853,0.634158194065094,0.544600665569305,0.82379275560379,-0.0874834060668945,0.560100197792053,0.885487377643585,-0.0405743792653084,0.462888568639755,0.523278117179871,0.649741768836975,0.551376104354858,0.543460130691528,0.641334891319275,0.541609466075897,0.885487377643585,-0.0405743792653084,0.462888568639755,0.97769820690155,0.140068650245667,0.156483232975006,0.504681587219238,0.638054668903351,0.581534802913666,0.523278117179871,0.649741768836975,0.551376104354858,0.97769820690155,0.140068650245667,0.156483232975006,0.910170912742615,0.404434233903885,-0.0895644798874855,0.512165069580078,0.602242648601532,0.612364888191223,0.504681587219238,0.638054668903351,0.581534802913666,0.910170912742615,0.404434233903885,-0.0895644798874855,0.701012074947357,0.681685864925385,-0.209491148591042,0.550960183143616,0.562746584415436,0.616246044635773,0.512165069580078,0.602242648601532,0.612364888191223,0.701012074947357,0.681685864925385,-0.209491148591042,
- 0.406241446733475,0.897607922554016,-0.17107880115509,0.541735649108887,0.715871453285217,0.440511733293533,0.590199947357178,0.675861537456512,0.441446721553802,0.553568303585052,0.659528732299805,0.508511602878571,0.535701870918274,0.674732148647308,0.507700860500336,0.590199947357178,0.675861537456512,0.441446721553802,0.616392731666565,0.632128477096558,0.469546169042587,0.560075461864471,0.644344866275787,0.520706534385681,0.553568303585052,0.659528732299805,0.508511602878571,0.616392731666565,0.632128477096558,0.469546169042587,0.61708128452301,0.599264085292816,0.509993314743042,0.555702924728394,0.637210428714752,0.534001171588898,0.560075461864471,0.644344866275787,0.520706534385681,0.61708128452301,0.599264085292816,0.509993314743042,0.599350392818451,0.582123994827271,0.549464166164398,0.548462986946106,0.637224316596985,0.541418135166168,0.555702924728394,0.637210428714752,0.534001171588898,0.599350392818451,0.582123994827271,0.549464166164398,0.5765261054039,0.578995048999786,0.5765261054039,0.544462502002716,0.638345181941986,0.544128775596619,0.548462986946106,0.637224316596985,0.541418135166168,0.5765261054039,0.578995048999786,0.5765261054039,0.549400210380554,0.582149147987366,0.599384605884552,0.542013585567474,0.636950373649597,0.548193037509918,0.544462502002716,0.638345181941986,0.544128775596619,0.549400210380554,0.582149147987366,0.599384605884552,0.510067522525787,0.599221289157867,0.617061614990234,0.535162508487701,0.636197805404663,0.555745959281921,0.542013585567474,0.636950373649597,0.548193037509918,0.510067522525787,0.599221289157867,0.617061614990234,0.469549268484116,0.632168292999268,0.616349577903748,0.521790146827698,0.64251035451889,0.561173379421234,0.535162508487701,0.636197805404663,0.555745959281921,0.469549268484116,0.632168292999268,0.616349577903748,0.441467851400375,0.675891518592834,0.590149819850922,0.508667290210724,0.657146275043488,0.556252121925354,0.521790146827698,0.64251035451889,0.561173379421234,0.441467851400375,0.675891518592834,0.590149819850922,0.440472334623337,0.715828239917755,0.541824758052826,
- 0.506090819835663,0.673138201236725,0.539218902587891,0.508667290210724,0.657146275043488,0.556252121925354,0.440472334623337,0.715828239917755,0.541824758052826,0.455106824636459,0.734601199626923,0.503228545188904,0.508950412273407,0.680037915706635,0.527748107910156,0.506090819835663,0.673138201236725,0.539218902587891,0.503250241279602,0.734600424766541,0.45508399605751,0.541735649108887,0.715871453285217,0.440511733293533,0.535701870918274,0.674732148647308,0.507700860500336,0.52776026725769,0.680037915706635,0.508937776088715,0.544462502002716,0.638345181941986,0.544128775596619,0.542013585567474,0.636950373649597,0.548193037509918,0.378222465515137,0.893975496292114,-0.240324109792709,0.0552928261458874,0.997653305530548,-0.040382344275713,0.548462986946106,0.637224316596985,0.541418135166168,0.544462502002716,0.638345181941986,0.544128775596619,0.0552928261458874,0.997653305530548,-0.040382344275713,-0.188094824552536,0.945808947086334,0.26469948887825,0.555702924728394,0.637210428714752,0.534001171588898,0.548462986946106,0.637224316596985,0.541418135166168,-0.188094824552536,0.945808947086334,0.26469948887825,-0.286901950836182,0.752410471439362,0.592929720878601,0.560075461864471,0.644344866275787,0.520706534385681,0.555702924728394,0.637210428714752,0.534001171588898,-0.286901950836182,0.752410471439362,0.592929720878601,-0.214616164565086,0.469094187021255,0.856674075126648,0.553568303585052,0.659528732299805,0.508511602878571,0.560075461864471,0.644344866275787,0.520706534385681,-0.214616164565086,0.469094187021255,0.856674075126648,0.0093779256567359,0.172199681401253,0.985017418861389,0.535701870918274,0.674732148647308,0.507700860500336,0.553568303585052,0.659528732299805,0.508511602878571,0.0093779256567359,0.172199681401253,0.985017418861389,0.325269877910614,-0.0591923445463181,0.943766832351685,0.52776026725769,0.680037915706635,0.508937776088715,0.535701870918274,0.674732148647308,0.507700860500336,0.325269877910614,-0.0591923445463181,0.943766832351685,0.542619109153748,-0.160061851143837,0.82458770275116,
- 0.506090819835663,0.673138201236725,0.539218902587891,0.508950412273407,0.680037915706635,0.527748107910156,0.824560463428497,-0.160072639584541,0.542657256126404,0.891669571399689,-0.11115063726902,0.438829094171524,0.508667290210724,0.657146275043488,0.556252121925354,0.506090819835663,0.673138201236725,0.539218902587891,0.891669571399689,-0.11115063726902,0.438829094171524,0.990437865257263,0.0824568495154381,0.110606044530869,0.521790146827698,0.64251035451889,0.561173379421234,0.508667290210724,0.657146275043488,0.556252121925354,0.990437865257263,0.0824568495154381,0.110606044530869,0.918099224567413,0.36563915014267,-0.15297643840313,0.535162508487701,0.636197805404663,0.555745959281921,0.521790146827698,0.64251035451889,0.561173379421234,0.918099224567413,0.36563915014267,-0.15297643840313,0.694057703018188,0.662633895874023,-0.281425356864929,0.542013585567474,0.636950373649597,0.548193037509918,0.535162508487701,0.636197805404663,0.555745959281921,0.694057703018188,0.662633895874023,-0.281425356864929,0.378222465515137,0.893975496292114,-0.240324109792709,0.525469183921814,0.71621173620224,0.459263473749161,0.573715150356293,0.687806129455566,0.444717526435852,0.530651807785034,0.631694793701172,0.56512862443924,0.542591691017151,0.623771131038666,0.562586843967438,0.573715150356293,0.687806129455566,0.444717526435852,0.612301051616669,0.64638763666153,0.455269813537598,0.521526217460632,0.642508029937744,0.5614213347435,0.530651807785034,0.631694793701172,0.56512862443924,0.612301051616669,0.64638763666153,0.455269813537598,0.631133198738098,0.60278183221817,0.488185405731201,0.517821907997131,0.65331095457077,0.552309036254883,0.521526217460632,0.642508029937744,0.5614213347435,0.631133198738098,0.60278183221817,0.488185405731201,0.62506765127182,0.56892055273056,0.534434258937836,0.520366549491882,0.661218643188477,0.540378272533417,0.517821907997131,0.65331095457077,0.552309036254883,0.62506765127182,0.56892055273056,0.534434258937836,0.595728754997253,0.553721308708191,0.581807494163513,0.52862423658371,0.664104700088501,0.528697788715363,
- 0.520366549491882,0.661218643188477,0.540378272533417,0.595728754997253,0.553721308708191,0.581807494163513,0.551099896430969,0.561297595500946,0.617441415786743,0.540328562259674,0.661228775978088,0.520405292510986,0.52862423658371,0.664104700088501,0.528697788715363,0.551099896430969,0.561297595500946,0.617441415786743,0.502994358539581,0.589622259140015,0.631935358047485,0.552342355251312,0.653284072875977,0.517820358276367,0.540328562259674,0.661228775978088,0.520405292510986,0.502994358539581,0.589622259140015,0.631935358047485,0.464307546615601,0.631146550178528,0.621347308158875,0.561386287212372,0.642490565776825,0.521585464477539,0.552342355251312,0.653284072875977,0.517820358276367,0.464307546615601,0.631146550178528,0.621347308158875,0.445498049259186,0.674738347530365,0.588438332080841,0.565141916275024,0.631716132164001,0.530612349510193,0.561386287212372,0.642490565776825,0.521585464477539,0.445498049259186,0.674738347530365,0.588438332080841,0.451557278633118,0.708592712879181,0.542210757732391,0.562550961971283,0.623782992362976,0.542615175247192,0.565141916275024,0.631716132164001,0.530612349510193,0.451557278633118,0.708592712879181,0.542210757732391,0.466653853654861,0.723491430282593,0.508718371391296,0.55962336063385,0.620888710021973,0.548925280570984,0.562550961971283,0.623782992362976,0.542615175247192,0.508717358112335,0.723491132259369,0.466655433177948,0.525469183921814,0.71621173620224,0.459263473749161,0.542591691017151,0.623771131038666,0.562586843967438,0.548839628696442,0.620888233184814,0.559707880020142,0.52862423658371,0.664104700088501,0.528697788715363,0.540328562259674,0.661228775978088,0.520405292510986,0.406233847141266,0.897608876228333,-0.171092182397842,0.104787901043892,0.994373500347137,0.0155222825706005,0.520366549491882,0.661218643188477,0.540378272533417,0.52862423658371,0.664104700088501,0.528697788715363,0.104787901043892,0.994373500347137,0.0155222825706005,-0.122493147850037,0.945960402488709,0.300257086753845,0.517821907997131,0.65331095457077,0.552309036254883,
- 0.520366549491882,0.661218643188477,0.540378272533417,-0.122493147850037,0.945960402488709,0.300257086753845,-0.214673340320587,0.765462934970856,0.60661506652832,0.521526217460632,0.642508029937744,0.5614213347435,0.517821907997131,0.65331095457077,0.552309036254883,-0.214673340320587,0.765462934970856,0.60661506652832,-0.147105768322945,0.501045644283295,0.852826595306396,0.530651807785034,0.631694793701172,0.56512862443924,0.521526217460632,0.642508029937744,0.5614213347435,-0.147105768322945,0.501045644283295,0.852826595306396,0.0619969889521599,0.223869115114212,0.972645342350006,0.542591691017151,0.623771131038666,0.562586843967438,0.530651807785034,0.631694793701172,0.56512862443924,0.0619969889521599,0.223869115114212,0.972645342350006,0.356883227825165,0.00785358250141144,0.934116005897522,0.548839628696442,0.620888233184814,0.559707880020142,0.542591691017151,0.623771131038666,0.562586843967438,0.356883227825165,0.00785358250141144,0.934116005897522,0.559947490692139,-0.0875164642930031,0.823893070220947,0.562550961971283,0.623782992362976,0.542615175247192,0.55962336063385,0.620888710021973,0.548925280570984,0.82384192943573,-0.0875005722045898,0.560025155544281,0.885493278503418,-0.0405038483440876,0.462883651256561,0.565141916275024,0.631716132164001,0.530612349510193,0.562550961971283,0.623782992362976,0.542615175247192,0.885493278503418,-0.0405038483440876,0.462883651256561,0.977680206298828,0.140111178159714,0.156558126211166,0.561386287212372,0.642490565776825,0.521585464477539,0.565141916275024,0.631716132164001,0.530612349510193,0.977680206298828,0.140111178159714,0.156558126211166,0.910174965858459,0.404443025588989,-0.089483916759491,0.552342355251312,0.653284072875977,0.517820358276367,0.561386287212372,0.642490565776825,0.521585464477539,0.910174965858459,0.404443025588989,-0.089483916759491,0.700992166996002,0.681723535060883,-0.20943520963192,0.540328562259674,0.661228775978088,0.520405292510986,0.552342355251312,0.653284072875977,0.517820358276367,0.700992166996002,0.681723535060883,-0.20943520963192,
- 0.406233847141266,0.897608876228333,-0.171092182397842,0.529395401477814,0.701562941074371,0.477022051811218,0.567601203918457,0.679059147834778,0.46551850438118,0.544961929321289,0.64601331949234,0.534493446350098,0.541312754154205,0.648395299911499,0.535316824913025,0.567601203918457,0.679059147834778,0.46551850438118,0.598096072673798,0.646309316158295,0.473883301019669,0.547689318656921,0.642731547355652,0.535660862922668,0.544961929321289,0.64601331949234,0.534493446350098,0.598096072673798,0.646309316158295,0.473883301019669,0.613017439842224,0.611786663532257,0.499926686286926,0.548845708370209,0.639457941055298,0.538388431072235,0.547689318656921,0.642731547355652,0.535660862922668,0.613017439842224,0.611786663532257,0.499926686286926,0.608220100402832,0.584992289543152,0.53651887178421,0.548023879528046,0.637077331542969,0.542035341262817,0.548845708370209,0.639457941055298,0.538388431072235,0.608220100402832,0.584992289543152,0.53651887178421,0.585020422935486,0.572971403598785,0.573981583118439,0.545551300048828,0.636188089847565,0.54556268453598,0.548023879528046,0.637077331542969,0.542035341262817,0.585020422935486,0.572971403598785,0.573981583118439,0.54970246553421,0.578969478607178,0.60218071937561,0.54201602935791,0.63707309961319,0.548047959804535,0.545551300048828,0.636188089847565,0.54556268453598,0.54970246553421,0.578969478607178,0.60218071937561,0.511646330356598,0.601396799087524,0.613628566265106,0.538369536399841,0.639478802680969,0.548839867115021,0.54201602935791,0.63707309961319,0.548047959804535,0.511646330356598,0.601396799087524,0.613628566265106,0.481069535017014,0.634240508079529,0.605236411094666,0.535656213760376,0.642725110054016,0.547701478004456,0.538369536399841,0.639478802680969,0.548839867115021,0.481069535017014,0.634240508079529,0.605236411094666,0.466163754463196,0.668723583221436,0.579223811626434,0.534500896930695,0.645985960960388,0.544987201690674,0.535656213760376,0.642725110054016,0.547701478004456,0.466163754463196,0.668723583221436,0.579223811626434,0.4709113240242,0.695500493049622,0.542698562145233,
- 0.535293459892273,0.648404359817505,0.541325032711029,0.534500896930695,0.645985960960388,0.544987201690674,0.4709113240242,0.695500493049622,0.542698562145233,0.48298043012619,0.707363903522491,0.516106784343719,0.536252558231354,0.64929062128067,0.539309680461884,0.535293459892273,0.648404359817505,0.541325032711029,0.516165792942047,0.707362473011017,0.48291951417923,0.529395401477814,0.701562941074371,0.477022051811218,0.541312754154205,0.648395299911499,0.535316824913025,0.539311528205872,0.64929062128067,0.536250770092011,0.545551300048828,0.636188089847565,0.54556268453598,0.54201602935791,0.63707309961319,0.548047959804535,0.406207114458084,0.897609531879425,-0.171152040362358,0.104788050055504,0.994374215602875,0.0154708158224821,0.548023879528046,0.637077331542969,0.542035341262817,0.545551300048828,0.636188089847565,0.54556268453598,0.104788050055504,0.994374215602875,0.0154708158224821,-0.122513629496098,0.945952713489532,0.30027312040329,0.548845708370209,0.639457941055298,0.538388431072235,0.548023879528046,0.637077331542969,0.542035341262817,-0.122513629496098,0.945952713489532,0.30027312040329,-0.214722245931625,0.765448570251465,0.606615960597992,0.547689318656921,0.642731547355652,0.535660862922668,0.548845708370209,0.639457941055298,0.538388431072235,-0.214722245931625,0.765448570251465,0.606615960597992,-0.147108852863312,0.501000940799713,0.852852284908295,0.544961929321289,0.64601331949234,0.534493446350098,0.547689318656921,0.642731547355652,0.535660862922668,-0.147108852863312,0.501000940799713,0.852852284908295,0.0619138106703758,0.22387807071209,0.972648680210114,0.541312754154205,0.648395299911499,0.535316824913025,0.544961929321289,0.64601331949234,0.534493446350098,0.0619138106703758,0.22387807071209,0.972648680210114,0.35682487487793,0.00784604996442795,0.934138417243958,0.539311528205872,0.64929062128067,0.536250770092011,0.541312754154205,0.648395299911499,0.535316824913025,0.35682487487793,0.00784604996442795,0.934138417243958,0.559976160526276,-0.0875244215130806,0.823872685432434,
- 0.535293459892273,0.648404359817505,0.541325032711029,0.536252558231354,0.64929062128067,0.539309680461884,0.823812127113342,-0.0875236243009567,0.560065388679504,0.885530471801758,-0.0405390113592148,0.462809234857559,0.534500896930695,0.645985960960388,0.544987201690674,0.535293459892273,0.648404359817505,0.541325032711029,0.885530471801758,-0.0405390113592148,0.462809234857559,0.977682054042816,0.140130579471588,0.156528681516647,0.535656213760376,0.642725110054016,0.547701478004456,0.534500896930695,0.645985960960388,0.544987201690674,0.977682054042816,0.140130579471588,0.156528681516647,0.910168170928955,0.404458194971085,-0.0894853621721268,0.538369536399841,0.639478802680969,0.548839867115021,0.535656213760376,0.642725110054016,0.547701478004456,0.910168170928955,0.404458194971085,-0.0894853621721268,0.701035022735596,0.681671559810638,-0.209460735321045,0.54201602935791,0.63707309961319,0.548047959804535,0.538369536399841,0.639478802680969,0.548839867115021,0.701035022735596,0.681671559810638,-0.209460735321045,0.406207114458084,0.897609531879425,-0.171152040362358,-0.454496383666992,0.766071856021881,-0.45449635386467,-0.454496383666992,0.766071915626526,-0.45449635386467,-0.454495996236801,0.766071975231171,-0.454496800899506,-0.454453647136688,0.766071975231171,-0.454539090394974,-0.454508304595947,0.766071856021881,-0.45448449254036,-0.454510360956192,0.766071856021881,-0.454482346773148,-0.454510807991028,0.766071856021881,-0.454482018947601,-0.454457849264145,0.766071975231171,-0.454534977674484,-0.454502075910568,0.766071915626526,-0.454490751028061,-0.454533338546753,0.766071915626526,-0.454459398984909,-0.454372853040695,0.766071796417236,-0.454619944095612,-0.454490333795547,0.766071915626526,-0.454502493143082,0.276865988969803,0.946493268013,-0.165818989276886,0.597838521003723,0.757312655448914,-0.262805730104446,0.590777277946472,0.690469145774841,0.417414337396622,0.530501306056976,0.730204820632935,0.430545330047607,0.597838521003723,0.757312655448914,-0.262805730104446,0.855903148651123,0.480130195617676,-0.192106187343597,
- 0.636295020580292,0.636311888694763,0.436160355806351,0.590777277946472,0.690469145774841,0.417414337396622,0.855903148651123,0.480130195617676,-0.192106187343597,0.981469511985779,0.189682245254517,0.0271747596561909,0.655071318149567,0.582067966461182,0.481745213270187,0.636295020580292,0.636311888694763,0.436160355806351,0.981469511985779,0.189682245254517,0.0271747596561909,0.941039443016052,-0.0364055708050728,0.336332559585571,0.641957223415375,0.542376339435577,0.541958332061768,0.655071318149567,0.582067966461182,0.481745213270187,0.941039443016052,-0.0364055708050728,0.336332559585571,0.745614111423492,-0.137778609991074,0.651979088783264,0.600573778152466,0.52787584066391,0.600548326969147,0.641957223415375,0.542376339435577,0.541958332061768,0.745614111423492,-0.137778609991074,0.651979088783264,0.447325587272644,-0.0871715843677521,0.890112936496735,0.541931629180908,0.542393565177917,0.641965329647064,0.600573778152466,0.52787584066391,0.600548326969147,0.447325587272644,-0.0871715843677521,0.890112936496735,0.126211181282997,0.102132484316826,0.986731886863709,0.481768041849136,0.582059681415558,0.655061900615692,0.541931629180908,0.542393565177917,0.641965329647064,0.126211181282997,0.102132484316826,0.986731886863709,-0.131614595651627,0.378860533237457,0.916047096252441,0.436177790164948,0.636313021183014,0.636281967163086,0.481768041849136,0.582059681415558,0.655061900615692,-0.131614595651627,0.378860533237457,0.916047096252441,-0.257207125425339,0.669565737247467,0.696797072887421,0.417425155639648,0.690516352653503,0.590714395046234,0.436177790164948,0.636313021183014,0.636281967163086,-0.257207125425339,0.669565737247467,0.696797072887421,-0.216935381293297,0.895735859870911,0.388067573308945,0.430532217025757,0.730181634426117,0.530543804168701,0.417425155639648,0.690516352653503,0.590714395046234,-0.216935381293297,0.895735859870911,0.388067573308945,-0.112878412008286,0.980169653892517,0.162867799401283,0.444870918989182,0.744159996509552,0.498312950134277,0.430532217025757,0.730181634426117,0.530543804168701,
- 0.16304711997509,0.980125188827515,-0.113005593419075,0.276865988969803,0.946493268013,-0.165818989276886,0.530501306056976,0.730204820632935,0.430545330047607,0.498282045125961,0.744162201881409,0.44490185379982,-0.454426825046539,0.766065716743469,-0.454576253890991,-0.45452806353569,0.766065716743469,-0.45447501540184,-0.454578369855881,0.766065835952759,-0.454424738883972,-0.454538196325302,0.766065776348114,-0.454464912414551,-0.454485088586807,0.766065835952759,-0.45451807975769,-0.454507142305374,0.766065716743469,-0.454495936632156,-0.454512864351273,0.766065716743469,-0.454490274190903,-0.454508423805237,0.766065776348114,-0.454494684934616,-0.454483509063721,0.766065776348114,-0.454519540071487,-0.45444992184639,0.766065835952759,-0.45455327630043,-0.454516798257828,0.766065716743469,-0.454486191272736,-0.454506307840347,0.766065835952759,-0.454496800899506,0.544524490833282,0.638026297092438,0.544440686702728,0.541929841041565,0.638662755489349,0.546280205249786,0.406196475028992,0.897594153881073,-0.171257764101028,0.104765236377716,0.994376838207245,0.015460304915905,0.546262979507446,0.6386399269104,0.541974127292633,0.544524490833282,0.638026297092438,0.544440686702728,0.104765236377716,0.994376838207245,0.015460304915905,-0.122487932443619,0.945976257324219,0.300209552049637,0.546850323677063,0.640397727489471,0.539300978183746,0.546262979507446,0.6386399269104,0.541974127292633,-0.122487932443619,0.945976257324219,0.300209552049637,-0.214720100164413,0.765427231788635,0.606643617153168,0.546015083789825,0.642725229263306,0.537374973297119,0.546850323677063,0.640397727489471,0.539300978183746,-0.214720100164413,0.765427231788635,0.606643617153168,-0.147144719958305,0.50100964307785,0.852841019630432,0.544003665447235,0.645143091678619,0.536516904830933,0.546015083789825,0.642725229263306,0.537374973297119,-0.147144719958305,0.50100964307785,0.852841019630432,0.0619159787893295,0.223797708749771,0.97266697883606,0.541455268859863,0.646817982196808,0.537078142166138,0.544003665447235,0.645143091678619,0.536516904830933,
- 0.0619159787893295,0.223797708749771,0.97266697883606,0.356777906417847,0.00783148407936096,0.93415641784668,0.540000796318054,0.647458910942078,0.537769556045532,0.541455268859863,0.646817982196808,0.537078142166138,0.356777906417847,0.00783148407936096,0.93415641784668,0.560021579265594,-0.0875868648290634,0.82383519411087,0.537092804908752,0.646836817264557,0.541418135166168,0.53776752948761,0.647458910942078,0.540002822875977,0.823786020278931,-0.0875982642173767,0.560092091560364,0.885528326034546,-0.0406460054218769,0.462804108858109,0.536509454250336,0.645100116729736,0.54406213760376,0.537092804908752,0.646836817264557,0.541418135166168,0.885528326034546,-0.0406460054218769,0.462804108858109,0.97769820690155,0.14010663330555,0.156449437141418,0.537336707115173,0.642736315727234,0.546039700508118,0.536509454250336,0.645100116729736,0.54406213760376,0.97769820690155,0.14010663330555,0.156449437141418,0.910168647766113,0.404448956251144,-0.0895217880606651,0.539280831813812,0.640407562255859,0.546858727931976,0.537336707115173,0.642736315727234,0.546039700508118,0.910168647766113,0.404448956251144,-0.0895217880606651,0.701028764247894,0.681658267974854,-0.209525167942047,0.541929841041565,0.638662755489349,0.546280205249786,0.539280831813812,0.640407562255859,0.546858727931976,0.701028764247894,0.681658267974854,-0.209525167942047,0.406196475028992,0.897594153881073,-0.171257764101028,0.600573778152466,0.52787584066391,0.600548326969147,0.541931629180908,0.542393565177917,0.641965329647064,0.541929841041565,0.638662755489349,0.546280205249786,0.544524490833282,0.638026297092438,0.544440686702728,0.641957223415375,0.542376339435577,0.541958332061768,0.600573778152466,0.52787584066391,0.600548326969147,0.544524490833282,0.638026297092438,0.544440686702728,0.546262979507446,0.6386399269104,0.541974127292633,0.655071318149567,0.582067966461182,0.481745213270187,0.641957223415375,0.542376339435577,0.541958332061768,0.546262979507446,0.6386399269104,0.541974127292633,0.546850323677063,0.640397727489471,0.539300978183746,
- 0.636295020580292,0.636311888694763,0.436160355806351,0.655071318149567,0.582067966461182,0.481745213270187,0.546850323677063,0.640397727489471,0.539300978183746,0.546015083789825,0.642725229263306,0.537374973297119,0.590777277946472,0.690469145774841,0.417414337396622,0.636295020580292,0.636311888694763,0.436160355806351,0.546015083789825,0.642725229263306,0.537374973297119,0.544003665447235,0.645143091678619,0.536516904830933,0.530501306056976,0.730204820632935,0.430545330047607,0.590777277946472,0.690469145774841,0.417414337396622,0.544003665447235,0.645143091678619,0.536516904830933,0.541455268859863,0.646817982196808,0.537078142166138,0.498282045125961,0.744162201881409,0.44490185379982,0.530501306056976,0.730204820632935,0.430545330047607,0.541455268859863,0.646817982196808,0.537078142166138,0.540000796318054,0.647458910942078,0.537769556045532,0.430532217025757,0.730181634426117,0.530543804168701,0.444870918989182,0.744159996509552,0.498312950134277,0.53776752948761,0.647458910942078,0.540002822875977,0.537092804908752,0.646836817264557,0.541418135166168,0.417425155639648,0.690516352653503,0.590714395046234,0.430532217025757,0.730181634426117,0.530543804168701,0.537092804908752,0.646836817264557,0.541418135166168,0.536509454250336,0.645100116729736,0.54406213760376,0.436177790164948,0.636313021183014,0.636281967163086,0.417425155639648,0.690516352653503,0.590714395046234,0.536509454250336,0.645100116729736,0.54406213760376,0.537336707115173,0.642736315727234,0.546039700508118,0.481768041849136,0.582059681415558,0.655061900615692,0.436177790164948,0.636313021183014,0.636281967163086,0.537336707115173,0.642736315727234,0.546039700508118,0.539280831813812,0.640407562255859,0.546858727931976,0.541931629180908,0.542393565177917,0.641965329647064,0.481768041849136,0.582059681415558,0.655061900615692,0.539280831813812,0.640407562255859,0.546858727931976,0.541929841041565,0.638662755489349,0.546280205249786,0.53094482421875,0.695353627204895,0.484335690736771,0.641623616218567,0.601437330245972,0.476017206907272,0.627532243728638,0.554348886013031,0.546718060970306,
- 0.541860520839691,0.639377355575562,0.545512557029724,0.641623616218567,0.601437330245972,0.476017206907272,0.696794331073761,0.407295554876328,0.590413570404053,0.618707001209259,0.474989980459213,0.625768542289734,0.627532243728638,0.554348886013031,0.546718060970306,0.696794331073761,0.407295554876328,0.590413570404053,0.597960710525513,0.436421722173691,0.672293961048126,0.535788714885712,0.5135458111763,0.670224785804749,0.618707001209259,0.474989980459213,0.625768542289734,0.597960710525513,0.436421722173691,0.672293961048126,0.533158898353577,0.524064123630524,0.664152383804321,0.504103124141693,0.612179458141327,0.609193205833435,0.535788714885712,0.5135458111763,0.670224785804749,0.533158898353577,0.524064123630524,0.664152383804321,0.580437839031219,0.580883264541626,0.570672035217285,0.539325475692749,0.646650612354279,0.539417386054993,0.504103124141693,0.612179458141327,0.609193205833435,0.580437839031219,0.580883264541626,0.570672035217285,0.549029946327209,0.586223363876343,0.595741808414459,0.54151064157486,0.6461181640625,0.537864029407501,0.539325475692749,0.646650612354279,0.539417386054993,0.549029946327209,0.586223363876343,0.595741808414459,0.515187978744507,0.606147944927216,0.60594230890274,0.543705940246582,0.644654929637909,0.537404775619507,0.54151064157486,0.6461181640625,0.537864029407501,0.515187978744507,0.606147944927216,0.60594230890274,0.487908273935318,0.635430693626404,0.598475873470306,0.545247495174408,0.642796158790588,0.538069128990173,0.543705940246582,0.644654929637909,0.537404775619507,0.487908273935318,0.635430693626404,0.598475873470306,0.474668115377426,0.666131496429443,0.575290560722351,0.54596471786499,0.6407830119133,0.539740443229675,0.545247495174408,0.642796158790588,0.538069128990173,0.474668115377426,0.666131496429443,0.575290560722351,0.478925138711929,0.689959108829498,0.542758941650391,0.545510292053223,0.639379918575287,0.54185962677002,0.54596471786499,0.6407830119133,0.539740443229675,0.478925138711929,0.689959108829498,0.542758941650391,0.489591062068939,0.700525224208832,0.519196510314941,
- 0.54498952627182,0.638842940330505,0.543015778064728,0.545510292053223,0.639379918575287,0.54185962677002,0.519181609153748,0.700525343418121,0.48960679769516,0.53094482421875,0.695353627204895,0.484335690736771,0.541860520839691,0.639377355575562,0.545512557029724,0.542962968349457,0.638842880725861,0.545042216777802,0.539325475692749,0.646650612354279,0.539417386054993,0.54151064157486,0.6461181640625,0.537864029407501,0.365181475877762,0.890748083591461,-0.270574450492859,0.0331661514937878,0.997325956821442,-0.0651240050792694,0.504103124141693,0.612179458141327,0.609193205833435,0.539325475692749,0.646650612354279,0.539417386054993,0.0331661514937878,0.997325956821442,-0.0651240050792694,-0.24528069794178,0.918825626373291,0.309187412261963,0.535788714885712,0.5135458111763,0.670224785804749,0.504103124141693,0.612179458141327,0.609193205833435,-0.24528069794178,0.918825626373291,0.309187412261963,-0.30786669254303,0.600572168827057,0.737923622131348,0.618707001209259,0.474989980459213,0.625768542289734,0.535788714885712,0.5135458111763,0.670224785804749,-0.30786669254303,0.600572168827057,0.737923622131348,-0.139332130551338,0.276768296957016,0.950781762599945,0.627532243728638,0.554348886013031,0.546718060970306,0.618707001209259,0.474989980459213,0.625768542289734,-0.139332130551338,0.276768296957016,0.950781762599945,0.112840950489044,0.0358536206185818,0.992966055870056,0.541860520839691,0.639377355575562,0.545512557029724,0.627532243728638,0.554348886013031,0.546718060970306,0.112840950489044,0.0358536206185818,0.992966055870056,0.310699760913849,-0.0890410467982292,0.946328461170197,0.542962968349457,0.638842880725861,0.545042216777802,0.541860520839691,0.639377355575562,0.545512557029724,0.310699760913849,-0.0890410467982292,0.946328461170197,0.533915221691132,-0.191903173923492,0.823472917079926,0.545510292053223,0.639379918575287,0.54185962677002,0.54498952627182,0.638842940330505,0.543015778064728,0.823417782783508,-0.191891402006149,0.53400456905365,0.892798364162445,-0.142159521579742,0.427436292171478,
- 0.54596471786499,0.6407830119133,0.539740443229675,0.545510292053223,0.639379918575287,0.54185962677002,0.892798364162445,-0.142159521579742,0.427436292171478,0.994306445121765,0.0568179041147232,0.0901468992233276,0.545247495174408,0.642796158790588,0.538069128990173,0.54596471786499,0.6407830119133,0.539740443229675,0.994306445121765,0.0568179041147232,0.0901468992233276,0.919987678527832,0.347789525985718,-0.180734947323799,0.543705940246582,0.644654929637909,0.537404775619507,0.545247495174408,0.642796158790588,0.538069128990173,0.919987678527832,0.347789525985718,-0.180734947323799,0.689675509929657,0.653080463409424,-0.312783718109131,0.54151064157486,0.6461181640625,0.537864029407501,0.543705940246582,0.644654929637909,0.537404775619507,0.689675509929657,0.653080463409424,-0.312783718109131,0.365181475877762,0.890748083591461,-0.270574450492859,0.535058498382568,0.770307064056396,0.3468998670578,0.62775057554245,0.698137104511261,0.344287574291229,0.559191524982452,0.667143583297729,0.492163002490997,0.53270947933197,0.688267111778259,0.492451965808868,0.62775057554245,0.698137104511261,0.344287574291229,0.683949053287506,0.614831209182739,0.392678320407867,0.570727229118347,0.645110428333282,0.508038341999054,0.559191524982452,0.667143583297729,0.492163002490997,0.683949053287506,0.614831209182739,0.392678320407867,0.693231880664825,0.546032547950745,0.470402002334595,0.567288458347321,0.632494151592255,0.527385056018829,0.570727229118347,0.645110428333282,0.508038341999054,0.693231880664825,0.546032547950745,0.470402002334595,0.661865592002869,0.505503296852112,0.553534388542175,0.558006525039673,0.629379570484161,0.540842056274414,0.567288458347321,0.632494151592255,0.527385056018829,0.661865592002869,0.505503296852112,0.553534388542175,0.613779366016388,0.496499240398407,0.613810539245605,0.549984991550446,0.629270315170288,0.549122452735901,0.558006525039673,0.629379570484161,0.540842056274414,0.613779366016388,0.496499240398407,0.613810539245605,0.553575694561005,0.505468904972076,0.661857485771179,0.542454659938812,0.628613471984863,0.557304382324219,
- 0.549984991550446,0.629270315170288,0.549122452735901,0.553575694561005,0.505468904972076,0.661857485771179,0.470528244972229,0.545942366123199,0.693217277526855,0.529551804065704,0.630568742752075,0.56741338968277,0.542454659938812,0.628613471984863,0.557304382324219,0.470528244972229,0.545942366123199,0.693217277526855,0.392730295658112,0.614792048931122,0.683954536914825,0.509811997413635,0.642093539237976,0.572544991970062,0.529551804065704,0.630568742752075,0.56741338968277,0.392730295658112,0.614792048931122,0.683954536914825,0.344315230846405,0.698263347148895,0.627594947814941,0.492353886365891,0.663851141929626,0.562929272651672,0.509811997413635,0.642093539237976,0.572544991970062,0.344315230846405,0.698263347148895,0.627594947814941,0.346942037343979,0.770359694957733,0.534955263137817,0.490096867084503,0.68599408864975,0.537789225578308,0.492353886365891,0.663851141929626,0.562929272651672,0.346942037343979,0.770359694957733,0.534955263137817,0.375003337860107,0.802783489227295,0.46358534693718,0.494548738002777,0.695367515087128,0.521426498889923,0.490096867084503,0.68599408864975,0.537789225578308,0.463516622781754,0.802789092063904,0.375076025724411,0.535058498382568,0.770307064056396,0.3468998670578,0.53270947933197,0.688267111778259,0.492451965808868,0.521321594715118,0.695369422435761,0.49465674161911,0.549984991550446,0.629270315170288,0.549122452735901,0.542454659938812,0.628613471984863,0.557304382324219,0.311627924442291,0.869626522064209,-0.38293319940567,-0.0510730110108852,0.986040472984314,-0.158479616045952,0.558006525039673,0.629379570484161,0.540842056274414,0.549984991550446,0.629270315170288,0.549122452735901,-0.0510730110108852,0.986040472984314,-0.158479616045952,-0.324495494365692,0.927804708480835,0.184068322181702,0.567288458347321,0.632494151592255,0.527385056018829,0.558006525039673,0.629379570484161,0.540842056274414,-0.324495494365692,0.927804708480835,0.184068322181702,-0.4353346824646,0.710662603378296,0.552668392658234,0.570727229118347,0.645110428333282,0.508038341999054,
- 0.567288458347321,0.632494151592255,0.527385056018829,-0.4353346824646,0.710662603378296,0.552668392658234,-0.354077100753784,0.392659604549408,0.84879195690155,0.559191524982452,0.667143583297729,0.492163002490997,0.570727229118347,0.645110428333282,0.508038341999054,-0.354077100753784,0.392659604549408,0.84879195690155,-0.102531909942627,0.059091430157423,0.99297308921814,0.53270947933197,0.688267111778259,0.492451965808868,0.559191524982452,0.667143583297729,0.492163002490997,-0.102531909942627,0.059091430157423,0.99297308921814,0.252108961343765,-0.200826376676559,0.946630895137787,0.521321594715118,0.695369422435761,0.49465674161911,0.53270947933197,0.688267111778259,0.492451965808868,0.252108961343765,-0.200826376676559,0.946630895137787,0.495900750160217,-0.310125350952148,0.811113297939301,0.490096867084503,0.68599408864975,0.537789225578308,0.494548738002777,0.695367515087128,0.521426498889923,0.811081409454346,-0.31009903550148,0.495969325304031,0.888130307197571,-0.258897244930267,0.379732638597488,0.492353886365891,0.663851141929626,0.562929272651672,0.490096867084503,0.68599408864975,0.537789225578308,0.888130307197571,-0.258897244930267,0.379732638597488,0.999070286750793,-0.0416488945484161,0.0111366976052523,0.509811997413635,0.642093539237976,0.572544991970062,0.492353886365891,0.663851141929626,0.562929272651672,0.999070286750793,-0.0416488945484161,0.0111366976052523,0.917853713035584,0.276247411966324,-0.285012364387512,0.529551804065704,0.630568742752075,0.56741338968277,0.509811997413635,0.642093539237976,0.572544991970062,0.917853713035584,0.276247411966324,-0.285012364387512,0.666178345680237,0.609943747520447,-0.429156184196472,0.542454659938812,0.628613471984863,0.557304382324219,0.529551804065704,0.630568742752075,0.56741338968277,0.666178345680237,0.609943747520447,-0.429156184196472,0.311627924442291,0.869626522064209,-0.38293319940567,0.54040402173996,0.720213413238525,0.435035943984985,0.593595087528229,0.677991390228271,0.433558106422424,0.544016420841217,0.645905792713165,0.535585522651672,
- 0.540801882743835,0.653759300708771,0.529275119304657,0.593595087528229,0.677991390228271,0.433558106422424,0.619210720062256,0.631582617759705,0.466563493013382,0.53560745716095,0.642087399959564,0.548496663570404,0.544016420841217,0.645905792713165,0.535585522651672,0.619210720062256,0.631582617759705,0.466563493013382,0.61527419090271,0.600388944149017,0.510852992534637,0.520565927028656,0.650651931762695,0.552868247032166,0.53560745716095,0.642087399959564,0.548496663570404,0.61527419090271,0.600388944149017,0.510852992534637,0.594722628593445,0.587352752685547,0.548927903175354,0.512493371963501,0.665495932102203,0.542646884918213,0.520565927028656,0.650651931762695,0.552868247032166,0.594722628593445,0.587352752685547,0.548927903175354,0.572935044765472,0.586048245429993,0.572968542575836,0.521388649940491,0.673779189586639,0.523617804050446,0.512493371963501,0.665495932102203,0.542646884918213,0.572935044765472,0.586048245429993,0.572968542575836,0.548898637294769,0.587366580963135,0.59473592042923,0.53984135389328,0.666791498661041,0.513770878314972,0.521388649940491,0.673779189586639,0.523617804050446,0.548898637294769,0.587366580963135,0.59473592042923,0.510909378528595,0.600373089313507,0.615242898464203,0.551208972930908,0.652164220809937,0.520433068275452,0.53984135389328,0.666791498661041,0.513770878314972,0.510909378528595,0.600373089313507,0.615242898464203,0.466565191745758,0.631642878055573,0.619148015975952,0.548119187355042,0.642744302749634,0.535205781459808,0.551208972930908,0.652164220809937,0.520433068275452,0.466565191745758,0.631642878055573,0.619148015975952,0.433586537837982,0.677996337413788,0.593568623065948,0.535628795623779,0.645557641983032,0.54438704252243,0.548119187355042,0.642744302749634,0.535205781459808,0.433586537837982,0.677996337413788,0.593568623065948,0.434992372989655,0.720176756381989,0.540487825870514,0.529279410839081,0.653752684593201,0.540805697441101,0.535628795623779,0.645557641983032,0.54438704252243,0.434992372989655,0.720176756381989,0.540487825870514,0.451555520296097,0.737906217575073,0.50158953666687,
- 0.528136312961578,0.65855872631073,0.536071300506592,0.529279410839081,0.653752684593201,0.540805697441101,0.501612305641174,0.737905561923981,0.45153135061264,0.54040402173996,0.720213413238525,0.435035943984985,0.540801882743835,0.653759300708771,0.529275119304657,0.536057114601135,0.658559024333954,0.528150498867035,0.521388649940491,0.673779189586639,0.523617804050446,0.53984135389328,0.666791498661041,0.513770878314972,0.42358523607254,0.897245407104492,-0.124604403972626,0.137340530753136,0.989127516746521,0.0525781214237213,0.512493371963501,0.665495932102203,0.542646884918213,0.521388649940491,0.673779189586639,0.523617804050446,0.137340530753136,0.989127516746521,0.0525781214237213,-0.0783889666199684,0.943182408809662,0.322896659374237,0.520565927028656,0.650651931762695,0.552868247032166,0.512493371963501,0.665495932102203,0.542646884918213,-0.0783889666199684,0.943182408809662,0.322896659374237,-0.166041269898415,0.771703004837036,0.613925755023956,0.53560745716095,0.642087399959564,0.548496663570404,0.520565927028656,0.650651931762695,0.552868247032166,-0.166041269898415,0.771703004837036,0.613925755023956,-0.101931124925613,0.520633101463318,0.847673952579498,0.544016420841217,0.645905792713165,0.535585522651672,0.53560745716095,0.642087399959564,0.548496663570404,-0.101931124925613,0.520633101463318,0.847673952579498,0.150150910019875,0.220003217458725,0.963874101638794,0.540801882743835,0.653759300708771,0.529275119304657,0.544016420841217,0.645905792713165,0.535585522651672,0.150150910019875,0.220003217458725,0.963874101638794,0.4863341152668,0.0386658608913422,0.872917056083679,0.536057114601135,0.658559024333954,0.528150498867035,0.540801882743835,0.653759300708771,0.529275119304657,0.4863341152668,0.0386658608913422,0.872917056083679,0.577998220920563,0.00721122650429606,0.816006243228912,0.529279410839081,0.653752684593201,0.540805697441101,0.528136312961578,0.65855872631073,0.536071300506592,0.815965294837952,0.00721064396202564,0.57805597782135,0.872918844223022,0.038596648722887,0.486336469650269,
- 0.535628795623779,0.645557641983032,0.54438704252243,0.529279410839081,0.653752684593201,0.540805697441101,0.872918844223022,0.038596648722887,0.486336469650269,0.964121758937836,0.179204776883125,0.195844203233719,0.548119187355042,0.642744302749634,0.535205781459808,0.535628795623779,0.645557641983032,0.54438704252243,0.964121758937836,0.179204776883125,0.195844203233719,0.902103543281555,0.428926289081573,-0.0472397282719612,0.551208972930908,0.652164220809937,0.520433068275452,0.548119187355042,0.642744302749634,0.535205781459808,0.902103543281555,0.428926289081573,-0.0472397282719612,0.703545570373535,0.69215601682663,-0.161070644855499,0.53984135389328,0.666791498661041,0.513770878314972,0.551208972930908,0.652164220809937,0.520433068275452,0.703545570373535,0.69215601682663,-0.161070644855499,0.42358523607254,0.897245407104492,-0.124604403972626,0.53254771232605,0.688968002796173,0.491646260023117,0.567297279834747,0.678663551807404,0.466464936733246,0.543149948120117,0.644325315952301,0.538361489772797,0.54218065738678,0.633854985237122,0.551605045795441,0.567297279834747,0.678663551807404,0.466464936733246,0.612842559814453,0.646335184574127,0.454615116119385,0.560822010040283,0.64251446723938,0.522162616252899,0.543149948120117,0.644325315952301,0.538361489772797,0.612842559814453,0.646335184574127,0.454615116119385,0.651089310646057,0.592234790325165,0.474700719118118,0.583410501480103,0.622600197792053,0.52153742313385,0.560822010040283,0.64251446723938,0.522162616252899,0.651089310646057,0.592234790325165,0.474700719118118,0.656495690345764,0.537094295024872,0.52966320514679,0.590727388858795,0.596666514873505,0.543166875839233,0.583410501480103,0.622600197792053,0.52153742313385,0.656495690345764,0.537094295024872,0.52966320514679,0.608240902423859,0.510000050067902,0.608229398727417,0.576374709606171,0.584806084632874,0.570783793926239,0.590727388858795,0.596666514873505,0.543166875839233,0.608240902423859,0.510000050067902,0.608229398727417,0.529653966426849,0.537086308002472,0.656509816646576,0.548154413700104,0.594392240047455,0.588408589363098,
- 0.576374709606171,0.584806084632874,0.570783793926239,0.529653966426849,0.537086308002472,0.656509816646576,0.474727094173431,0.592209875583649,0.651092767715454,0.524916589260101,0.619615852832794,0.58355700969696,0.548154413700104,0.594392240047455,0.588408589363098,0.474727094173431,0.592209875583649,0.651092767715454,0.454638063907623,0.646303534507751,0.612858891487122,0.523280382156372,0.640609383583069,0.561958372592926,0.524916589260101,0.619615852832794,0.58355700969696,0.454638063907623,0.646303534507751,0.612858891487122,0.466471970081329,0.678715467453003,0.567229390144348,0.538382232189178,0.644079864025116,0.543420374393463,0.523280382156372,0.640609383583069,0.561958372592926,0.466471970081329,0.678715467453003,0.567229390144348,0.491640150547028,0.688975214958191,0.532543957233429,0.552062034606934,0.63432914018631,0.541160047054291,0.538382232189178,0.644079864025116,0.543420374393463,0.491640150547028,0.688975214958191,0.532543957233429,0.50078958272934,0.688733100891113,0.524267673492432,0.55423241853714,0.627562701702118,0.546801269054413,0.552062034606934,0.63432914018631,0.541160047054291,0.524224400520325,0.688734233379364,0.50083327293396,0.53254771232605,0.688968002796173,0.491646260023117,0.54218065738678,0.633854985237122,0.551605045795441,0.546777784824371,0.627562463283539,0.554255843162537,0.576374709606171,0.584806084632874,0.570783793926239,0.548154413700104,0.594392240047455,0.588408589363098,0.406192630529404,0.897614598274231,-0.171159520745277,0.104779541492462,0.994374632835388,0.0155051797628403,0.590727388858795,0.596666514873505,0.543166875839233,0.576374709606171,0.584806084632874,0.570783793926239,0.104779541492462,0.994374632835388,0.0155051797628403,-0.122397013008595,0.945967197418213,0.300275266170502,0.583410501480103,0.622600197792053,0.52153742313385,0.590727388858795,0.596666514873505,0.543166875839233,-0.122397013008595,0.945967197418213,0.300275266170502,-0.214618310332298,0.765432834625244,0.606672644615173,0.560822010040283,0.64251446723938,0.522162616252899,0.583410501480103,0.622600197792053,0.52153742313385,
- -0.214618310332298,0.765432834625244,0.606672644615173,-0.147100239992142,0.501039385795593,0.852831244468689,0.543149948120117,0.644325315952301,0.538361489772797,0.560822010040283,0.64251446723938,0.522162616252899,-0.147100239992142,0.501039385795593,0.852831244468689,0.0619827210903168,0.223897278308868,0.972639799118042,0.54218065738678,0.633854985237122,0.551605045795441,0.543149948120117,0.644325315952301,0.538361489772797,0.0619827210903168,0.223897278308868,0.972639799118042,0.356860488653183,0.00796326342970133,0.934123754501343,0.546777784824371,0.627562463283539,0.554255843162537,0.54218065738678,0.633854985237122,0.551605045795441,0.356860488653183,0.00796326342970133,0.934123754501343,0.560079574584961,-0.0874662771821022,0.823808491230011,0.552062034606934,0.63432914018631,0.541160047054291,0.55423241853714,0.627562701702118,0.546801269054413,0.823766052722931,-0.0874707400798798,0.560141384601593,0.885478973388672,-0.0405629426240921,0.462905675172806,0.538382232189178,0.644079864025116,0.543420374393463,0.552062034606934,0.63432914018631,0.541160047054291,0.885478973388672,-0.0405629426240921,0.462905675172806,0.97769570350647,0.140079393982887,0.156489998102188,0.523280382156372,0.640609383583069,0.561958372592926,0.538382232189178,0.644079864025116,0.543420374393463,0.97769570350647,0.140079393982887,0.156489998102188,0.91016697883606,0.404444694519043,-0.0895587801933289,0.524916589260101,0.619615852832794,0.58355700969696,0.523280382156372,0.640609383583069,0.561958372592926,0.91016697883606,0.404444694519043,-0.0895587801933289,0.701011538505554,0.681675493717194,-0.209526658058167,0.548154413700104,0.594392240047455,0.588408589363098,0.524916589260101,0.619615852832794,0.58355700969696,0.701011538505554,0.681675493717194,-0.209526658058167,0.406192630529404,0.897614598274231,-0.171159520745277,0.511240124702454,0.759831964969635,0.401608049869537,0.590833723545074,0.71297150850296,0.377607196569443,0.548313617706299,0.649396061897278,0.526912748813629,0.540846586227417,0.654299080371857,0.528562009334564,
- 0.590833723545074,0.71297150850296,0.377607196569443,0.654779195785522,0.644328713417053,0.395100861787796,0.553984344005585,0.642660558223724,0.529234230518341,0.548313617706299,0.649396061897278,0.526912748813629,0.654779195785522,0.644328713417053,0.395100861787796,0.685899317264557,0.572277307510376,0.449489444494247,0.556312561035156,0.635918140411377,0.534906089305878,0.553984344005585,0.642660558223724,0.529234230518341,0.685899317264557,0.572277307510376,0.449489444494247,0.675847232341766,0.516228199005127,0.526059806346893,0.554660439491272,0.631034135818481,0.542353868484497,0.556312561035156,0.635918140411377,0.534906089305878,0.675847232341766,0.516228199005127,0.526059806346893,0.627441644668579,0.491113185882568,0.604255676269531,0.549573361873627,0.629231631755829,0.549578726291656,0.554660439491272,0.631034135818481,0.542353868484497,0.627441644668579,0.491113185882568,0.604255676269531,0.553527593612671,0.503679811954498,0.663260102272034,0.542346477508545,0.631007850170136,0.554697513580322,0.549573361873627,0.629231631755829,0.549578726291656,0.553527593612671,0.503679811954498,0.663260102272034,0.474067032337189,0.550507962703705,0.687169253826141,0.534933507442474,0.635897696018219,0.556309580802917,0.542346477508545,0.631007850170136,0.554697513580322,0.474067032337189,0.550507962703705,0.687169253826141,0.410112738609314,0.619177401065826,0.669646859169006,0.529226005077362,0.642687976360321,0.553960382938385,0.534933507442474,0.635897696018219,0.556309580802917,0.410112738609314,0.619177401065826,0.669646859169006,0.378983646631241,0.691284239292145,0.615221619606018,0.526906430721283,0.649426400661469,0.548283696174622,0.529226005077362,0.642687976360321,0.553960382938385,0.378983646631241,0.691284239292145,0.615221619606018,0.388945162296295,0.747245788574219,0.538837075233459,0.528520047664642,0.654284060001373,0.540905654430389,0.526906430721283,0.649426400661469,0.548283696174622,0.388945162296295,0.747245788574219,0.538837075233459,0.413752824068069,0.771542489528656,0.483250319957733,
- 0.530339896678925,0.656066477298737,0.536951005458832,0.528520047664642,0.654284060001373,0.540905654430389,0.483271539211273,0.771541118621826,0.413730472326279,0.511240124702454,0.759831964969635,0.401608049869537,0.540846586227417,0.654299080371857,0.528562009334564,0.536969482898712,0.656066477298737,0.530321300029755,0.549573361873627,0.629231631755829,0.549578726291656,0.542346477508545,0.631007850170136,0.554697513580322,0.352673053741455,0.886929452419281,-0.298291563987732,0.0128033459186554,0.996047854423523,-0.0878907218575478,0.554660439491272,0.631034135818481,0.542353868484497,0.549573361873627,0.629231631755829,0.549578726291656,0.0128033459186554,0.996047854423523,-0.0878907218575478,-0.243416547775269,0.941484332084656,0.233142912387848,0.556312561035156,0.635918140411377,0.534906089305878,0.554660439491272,0.631034135818481,0.542353868484497,-0.243416547775269,0.941484332084656,0.233142912387848,-0.347474932670593,0.737907230854034,0.578579425811768,0.553984344005585,0.642660558223724,0.529234230518341,0.556312561035156,0.635918140411377,0.534906089305878,-0.347474932670593,0.737907230854034,0.578579425811768,-0.271450221538544,0.439808487892151,0.856086134910584,0.548313617706299,0.649396061897278,0.526912748813629,0.553984344005585,0.642660558223724,0.529234230518341,-0.271450221538544,0.439808487892151,0.856086134910584,-0.0355435684323311,0.127197414636612,0.991240441799164,0.540846586227417,0.654299080371857,0.528562009334564,0.548313617706299,0.649396061897278,0.526912748813629,-0.0355435684323311,0.127197414636612,0.991240441799164,0.296895056962967,-0.116190016269684,0.94781506061554,0.536969482898712,0.656066477298737,0.530321300029755,0.540846586227417,0.654299080371857,0.528562009334564,0.296895056962967,-0.116190016269684,0.94781506061554,0.525444328784943,-0.220899522304535,0.821651756763458,0.528520047664642,0.654284060001373,0.540905654430389,0.530339896678925,0.656066477298737,0.536951005458832,0.821618676185608,-0.220908984541893,0.525492250919342,0.892968416213989,-0.170777544379234,0.416464239358902,
- 0.526906430721283,0.649426400661469,0.548283696174622,0.528520047664642,0.654284060001373,0.540905654430389,0.892968416213989,-0.170777544379234,0.416464239358902,0.996935844421387,0.0328707434237003,0.0709817931056023,0.529226005077362,0.642687976360321,0.553960382938385,0.526906430721283,0.649426400661469,0.548283696174622,0.996935844421387,0.0328707434237003,0.0709817931056023,0.920818388462067,0.330780446529388,-0.206586137413979,0.534933507442474,0.635897696018219,0.556309580802917,0.529226005077362,0.642687976360321,0.553960382938385,0.920818388462067,0.330780446529388,-0.206586137413979,0.684957981109619,0.643487811088562,-0.341695874929428,0.542346477508545,0.631007850170136,0.554697513580322,0.534933507442474,0.635897696018219,0.556309580802917,0.684957981109619,0.643487811088562,-0.341695874929428,0.352673053741455,0.886929452419281,-0.298291563987732,0.538686871528625,0.671736061573029,0.508514702320099,0.637381136417389,0.586361169815063,0.499925792217255,0.647050380706787,0.533108770847321,0.545088052749634,0.541353344917297,0.638413488864899,0.547142505645752,0.637381136417389,0.586361169815063,0.499925792217255,0.700076818466187,0.395067512989044,0.594822764396667,0.621185183525085,0.483964383602142,0.616366326808929,0.647050380706787,0.533108770847321,0.545088052749634,0.700076818466187,0.395067512989044,0.594822764396667,0.615533888339996,0.418691158294678,0.667694449424744,0.551091313362122,0.50837379693985,0.661705732345581,0.621185183525085,0.483964383602142,0.616366326808929,0.615533888339996,0.418691158294678,0.667694449424744,0.560118019580841,0.49250328540802,0.666114449501038,0.534777164459229,0.604794085025787,0.590116560459137,0.551091313362122,0.50837379693985,0.661705732345581,0.560118019580841,0.49250328540802,0.666114449501038,0.594676733016968,0.541063725948334,0.59465080499649,0.552879571914673,0.623418152332306,0.552878022193909,0.534777164459229,0.604794085025787,0.590116560459137,0.594676733016968,0.541063725948334,0.59465080499649,0.533651411533356,0.563135981559753,0.630946934223175,
- 0.544112622737885,0.627034842967987,0.557466506958008,0.552879571914673,0.623418152332306,0.552878022193909,0.533651411533356,0.563135981559753,0.630946934223175,0.493581384420395,0.606846392154694,0.622988700866699,0.536796152591705,0.635974586009979,0.554424285888672,0.544112622737885,0.627034842967987,0.557466506958008,0.493581384420395,0.606846392154694,0.622988700866699,0.48399093747139,0.646056652069092,0.59022331237793,0.53781646490097,0.642314910888672,0.546063244342804,0.536796152591705,0.635974586009979,0.554424285888672,0.48399093747139,0.646056652069092,0.59022331237793,0.499045431613922,0.66398948431015,0.556840717792511,0.543906331062317,0.641941249370575,0.540441870689392,0.53781646490097,0.642314910888672,0.546063244342804,0.499045431613922,0.66398948431015,0.556840717792511,0.508285462856293,0.671462059020996,0.539244532585144,0.547014355659485,0.638258218765259,0.54166579246521,0.543906331062317,0.641941249370575,0.540441870689392,0.508285462856293,0.671462059020996,0.539244532585144,0.502205550670624,0.682113826274872,0.531517088413239,0.540955543518066,0.643393516540527,0.54167503118515,0.547014355659485,0.638258218765259,0.54166579246521,0.526890695095062,0.682192504405975,0.50695139169693,0.538686871528625,0.671736061573029,0.508514702320099,0.541353344917297,0.638413488864899,0.547142505645752,0.54159015417099,0.643393576145172,0.541040599346161,0.552879571914673,0.623418152332306,0.552878022193909,0.544112622737885,0.627034842967987,0.557466506958008,0.337249994277954,0.881514847278595,-0.330445110797882,-0.0800284817814827,0.993578672409058,-0.0799804031848907,0.534777164459229,0.604794085025787,0.590116560459137,0.552879571914673,0.623418152332306,0.552878022193909,-0.0800284817814827,0.993578672409058,-0.0799804031848907,-0.375578016042709,0.811798572540283,0.447129130363464,0.551091313362122,0.50837379693985,0.661705732345581,0.534777164459229,0.604794085025787,0.590116560459137,-0.375578016042709,0.811798572540283,0.447129130363464,-0.285928577184677,0.5050008893013,0.814382612705231,0.621185183525085,0.483964383602142,0.616366326808929,
- 0.551091313362122,0.50837379693985,0.661705732345581,-0.285928577184677,0.5050008893013,0.814382612705231,0.0209048613905907,0.252786785364151,0.967296183109283,0.647050380706787,0.533108770847321,0.545088052749634,0.621185183525085,0.483964383602142,0.616366326808929,0.0209048613905907,0.252786785364151,0.967296183109283,0.306412994861603,0.212657272815704,0.9278404712677,0.541353344917297,0.638413488864899,0.547142505645752,0.647050380706787,0.533108770847321,0.545088052749634,0.306412994861603,0.212657272815704,0.9278404712677,0.460422486066818,0.123161070048809,0.87911468744278,0.54159015417099,0.643393576145172,0.541040599346161,0.541353344917297,0.638413488864899,0.547142505645752,0.460422486066818,0.123161070048809,0.87911468744278,0.509354948997498,-0.0174648184329271,0.860379278659821,0.547014355659485,0.638258218765259,0.54166579246521,0.540955543518066,0.643393516540527,0.54167503118515,0.860319852828979,-0.0174714606255293,0.509455144405365,0.879126369953156,0.123082704842091,0.460421204566956,0.543906331062317,0.641941249370575,0.540441870689392,0.547014355659485,0.638258218765259,0.54166579246521,0.879126369953156,0.123082704842091,0.460421204566956,0.932023465633392,0.261656224727631,0.250735580921173,0.53781646490097,0.642314910888672,0.546063244342804,0.543906331062317,0.641941249370575,0.540441870689392,0.932023465633392,0.261656224727631,0.250735580921173,0.90743499994278,0.413100749254227,-0.0768744796514511,0.536796152591705,0.635974586009979,0.554424285888672,0.53781646490097,0.642314910888672,0.546063244342804,0.90743499994278,0.413100749254227,-0.0768744796514511,0.689832806587219,0.655042886734009,-0.308300971984863,0.544112622737885,0.627034842967987,0.557466506958008,0.536796152591705,0.635974586009979,0.554424285888672,0.689832806587219,0.655042886734009,-0.308300971984863,0.337249994277954,0.881514847278595,-0.330445110797882,0.540922343730927,0.727516651153564,0.422045648097992,0.60066956281662,0.682427883148193,0.41651925444603,0.54509574174881,0.6462482213974,0.534072875976563,0.54036545753479,0.660965502262115,0.520701169967651,
- 0.60066956281662,0.682427883148193,0.41651925444603,0.64061164855957,0.626848042011261,0.443484395742416,0.530717670917511,0.642650127410889,0.552575469017029,0.54509574174881,0.6462482213974,0.534072875976563,0.64061164855957,0.626848042011261,0.443484395742416,0.651126027107239,0.576713681221008,0.493392556905746,0.50868284702301,0.657120645046234,0.556268155574799,0.530717670917511,0.642650127410889,0.552575469017029,0.651126027107239,0.576713681221008,0.493392556905746,0.631716370582581,0.544109165668488,0.552159070968628,0.499406695365906,0.678565800189972,0.538647890090942,0.50868284702301,0.657120645046234,0.556268155574799,0.631716370582581,0.544109165668488,0.552159070968628,0.597025573253632,0.535867094993591,0.596998333930969,0.512741982936859,0.688618361949921,0.512738287448883,0.499406695365906,0.678565800189972,0.538647890090942,0.597025573253632,0.535867094993591,0.596998333930969,0.552113234996796,0.544136464595795,0.631733000278473,0.538618206977844,0.678588271141052,0.499407976865768,0.512741982936859,0.688618361949921,0.512738287448883,0.552113234996796,0.544136464595795,0.631733000278473,0.493461757898331,0.576673328876495,0.651109457015991,0.55629950761795,0.65712171792984,0.50864714384079,0.538618206977844,0.678588271141052,0.499407976865768,0.493461757898331,0.576673328876495,0.651109457015991,0.443485051393509,0.626882791519165,0.640577077865601,0.552576243877411,0.642683684825897,0.530676245689392,0.55629950761795,0.65712171792984,0.50864714384079,0.443485051393509,0.626882791519165,0.640577077865601,0.416543185710907,0.682441711425781,0.600637316703796,0.534119009971619,0.646193087100983,0.545116007328033,0.552576243877411,0.642683684825897,0.530676245689392,0.416543185710907,0.682441711425781,0.600637316703796,0.422046989202499,0.72750061750412,0.540942966938019,0.520722210407257,0.660966634750366,0.540343999862671,0.534119009971619,0.646193087100983,0.545116007328033,0.422046989202499,0.72750061750412,0.540942966938019,0.441065937280655,0.747574210166931,0.496581882238388,0.518828392028809,0.669101715087891,0.532090306282043,
- 0.520722210407257,0.660966634750366,0.540343999862671,0.496572822332382,0.747574388980865,0.4410759806633,0.540922343730927,0.727516651153564,0.422045648097992,0.54036545753479,0.660965502262115,0.520701169967651,0.532062947750092,0.66910195350647,0.518856167793274,0.512741982936859,0.688618361949921,0.512738287448883,0.538618206977844,0.678588271141052,0.499407976865768,0.289614498615265,0.858075320720673,-0.424063861370087,-0.148935079574585,0.977574229240417,-0.148886397480965,0.499406695365906,0.678565800189972,0.538647890090942,0.512741982936859,0.688618361949921,0.512738287448883,-0.148935079574585,0.977574229240417,-0.148886397480965,-0.424020618200302,0.858078062534332,0.289669871330261,0.50868284702301,0.657120645046234,0.556268155574799,0.499406695365906,0.678565800189972,0.538647890090942,-0.424020618200302,0.858078062534332,0.289669871330261,-0.433471262454987,0.608274459838867,0.664909660816193,0.530717670917511,0.642650127410889,0.552575469017029,0.50868284702301,0.657120645046234,0.556268155574799,-0.433471262454987,0.608274459838867,0.664909660816193,-0.2329221367836,0.31371608376503,0.920505046844482,0.54509574174881,0.6462482213974,0.534072875976563,0.530717670917511,0.642650127410889,0.552575469017029,-0.2329221367836,0.31371608376503,0.920505046844482,0.101866155862808,0.0725685954093933,0.992147743701935,0.54036545753479,0.660965502262115,0.520701169967651,0.54509574174881,0.6462482213974,0.534072875976563,0.101866155862808,0.0725685954093933,0.992147743701935,0.45651039481163,-0.0587366223335266,0.887777209281921,0.532062947750092,0.66910195350647,0.518856167793274,0.54036545753479,0.660965502262115,0.520701169967651,0.45651039481163,-0.0587366223335266,0.887777209281921,0.561448335647583,-0.0811073109507561,0.82352751493454,0.520722210407257,0.660966634750366,0.540343999862671,0.518828392028809,0.669101715087891,0.532090306282043,0.823463559150696,-0.0811133533716202,0.561541020870209,0.887776851654053,-0.0588347688317299,0.456498384475708,0.534119009971619,0.646193087100983,0.545116007328033,
- 0.520722210407257,0.660966634750366,0.540343999862671,0.887776851654053,-0.0588347688317299,0.456498384475708,0.99216091632843,0.0724963992834091,0.101789802312851,0.552576243877411,0.642683684825897,0.530676245689392,0.534119009971619,0.646193087100983,0.545116007328033,0.99216091632843,0.0724963992834091,0.101789802312851,0.920518398284912,0.31367301940918,-0.232927456498146,0.55629950761795,0.65712171792984,0.50864714384079,0.552576243877411,0.642683684825897,0.530676245689392,0.920518398284912,0.31367301940918,-0.232927456498146,0.664896011352539,0.608250856399536,-0.433525264263153,0.538618206977844,0.678588271141052,0.499407976865768,0.55629950761795,0.65712171792984,0.50864714384079,0.664896011352539,0.608250856399536,-0.433525264263153,0.289614498615265,0.858075320720673,-0.424063861370087,0.526370823383331,0.713278532028198,0.462782353162766,0.572464644908905,0.686117768287659,0.448917210102081,0.552823722362518,0.653915464878082,0.516508102416992,0.5402672290802,0.662178993225098,0.519259512424469,0.572464644908905,0.686117768287659,0.448917210102081,0.60945051908493,0.646395683288574,0.459067225456238,0.562440633773804,0.642448484897614,0.520500361919403,0.552823722362518,0.653915464878082,0.516508102416992,0.60945051908493,0.646395683288574,0.459067225456238,0.627516865730286,0.604620397090912,0.490567773580551,0.566403746604919,0.631076753139496,0.530027389526367,0.562440633773804,0.642448484897614,0.520500361919403,0.627516865730286,0.604620397090912,0.490567773580551,0.621731877326965,0.572175621986389,0.534850001335144,0.563639163970947,0.622759759426117,0.542661309242249,0.566403746604919,0.631076753139496,0.530027389526367,0.621731877326965,0.572175621986389,0.534850001335144,0.593637049198151,0.557595193386078,0.580243706703186,0.55494213104248,0.61970317363739,0.554984033107758,0.563639163970947,0.622759759426117,0.542661309242249,0.593637049198151,0.557595193386078,0.580243706703186,0.550801396369934,0.564889073371887,0.61442506313324,0.542640388011932,0.622755467891693,0.563664078712463,0.55494213104248,0.61970317363739,0.554984033107758,
- 0.550801396369934,0.564889073371887,0.61442506313324,0.5047367811203,0.592029929161072,0.628284454345703,0.530015230178833,0.631080031394959,0.566411375999451,0.542640388011932,0.622755467891693,0.563664078712463,0.5047367811203,0.592029929161072,0.628284454345703,0.467701822519302,0.631793737411499,0.618135690689087,0.520451009273529,0.642442286014557,0.562493324279785,0.530015230178833,0.631080031394959,0.566411375999451,0.467701822519302,0.631793737411499,0.618135690689087,0.449664413928986,0.673537313938141,0.586642563343048,0.516495883464813,0.653882205486298,0.552874326705933,0.520451009273529,0.642442286014557,0.562493324279785,0.449664413928986,0.673537313938141,0.586642563343048,0.455449342727661,0.706007301807404,0.542328059673309,0.519240617752075,0.662187039852142,0.540275454521179,0.516495883464813,0.653882205486298,0.552874326705933,0.455449342727661,0.706007301807404,0.542328059673309,0.469898700714111,0.72031170129776,0.510241329669952,0.52231365442276,0.665222525596619,0.533542335033417,0.519240617752075,0.662187039852142,0.540275454521179,0.510214149951935,0.720313310623169,0.469925701618195,0.526370823383331,0.713278532028198,0.462782353162766,0.5402672290802,0.662178993225098,0.519259512424469,0.533557295799255,0.665222704410553,0.522298157215118,0.55494213104248,0.61970317363739,0.554984033107758,0.542640388011932,0.622755467891693,0.563664078712463,0.406276613473892,0.89760547876358,-0.171008229255676,0.104879423975945,0.994362711906433,0.0155973751097918,0.563639163970947,0.622759759426117,0.542661309242249,0.55494213104248,0.61970317363739,0.554984033107758,0.104879423975945,0.994362711906433,0.0155973751097918,-0.122338801622391,0.945958912372589,0.300324857234955,0.566403746604919,0.631076753139496,0.530027389526367,0.563639163970947,0.622759759426117,0.542661309242249,-0.122338801622391,0.945958912372589,0.300324857234955,-0.214640066027641,0.765440762042999,0.60665500164032,0.562440633773804,0.642448484897614,0.520500361919403,0.566403746604919,0.631076753139496,0.530027389526367,-0.214640066027641,0.765440762042999,0.60665500164032,
- -0.147143334150314,0.500986814498901,0.852854669094086,0.552823722362518,0.653915464878082,0.516508102416992,0.562440633773804,0.642448484897614,0.520500361919403,-0.147143334150314,0.500986814498901,0.852854669094086,0.0619215592741966,0.22387920320034,0.972647905349731,0.5402672290802,0.662178993225098,0.519259512424469,0.552823722362518,0.653915464878082,0.516508102416992,0.0619215592741966,0.22387920320034,0.972647905349731,0.356876939535141,0.00793440546840429,0.934117674827576,0.533557295799255,0.665222704410553,0.522298157215118,0.5402672290802,0.662178993225098,0.519259512424469,0.356876939535141,0.00793440546840429,0.934117674827576,0.560060977935791,-0.0874731466174126,0.823820412158966,0.519240617752075,0.662187039852142,0.540275454521179,0.52231365442276,0.665222525596619,0.533542335033417,0.823774337768555,-0.0874837562441826,0.560127198696136,0.885494410991669,-0.0405013896524906,0.462881714105606,0.516495883464813,0.653882205486298,0.552874326705933,0.519240617752075,0.662187039852142,0.540275454521179,0.885494410991669,-0.0405013896524906,0.462881714105606,0.977683782577515,0.140141934156418,0.156507685780525,0.520451009273529,0.642442286014557,0.562493324279785,0.516495883464813,0.653882205486298,0.552874326705933,0.977683782577515,0.140141934156418,0.156507685780525,0.910182178020477,0.404416173696518,-0.089532770216465,0.530015230178833,0.631080031394959,0.566411375999451,0.520451009273529,0.642442286014557,0.562493324279785,0.910182178020477,0.404416173696518,-0.089532770216465,0.701036393642426,0.681685924530029,-0.209409728646278,0.542640388011932,0.622755467891693,0.563664078712463,0.530015230178833,0.631080031394959,0.566411375999451,0.701036393642426,0.681685924530029,-0.209409728646278,0.406276613473892,0.89760547876358,-0.171008229255676,0.526658415794373,0.712056398391724,0.464334696531296,0.572859704494476,0.686671912670136,0.447564005851746,0.544674098491669,0.645781993865967,0.5350661277771,0.54146146774292,0.645828068256378,0.538261592388153,0.572859704494476,0.686671912670136,0.447564005851746,
- 0.613251745700836,0.646367430686951,0.454017043113709,0.550321102142334,0.642710447311401,0.532982230186462,0.544674098491669,0.645781993865967,0.5350661277771,0.613251745700836,0.646367430686951,0.454017043113709,0.635997474193573,0.600273132324219,0.484952956438065,0.555625379085541,0.63624769449234,0.535228431224823,0.550321102142334,0.642710447311401,0.532982230186462,0.635997474193573,0.600273132324219,0.484952956438065,0.632038831710815,0.5620236992836,0.533531904220581,0.556416511535645,0.629437863826752,0.54241007566452,0.555625379085541,0.63624769449234,0.535228431224823,0.632038831710815,0.5620236992836,0.533531904220581,0.593094348907471,0.544483423233032,0.593107759952545,0.551927924156189,0.626489043235779,0.550351798534393,0.556416511535645,0.629437863826752,0.54241007566452,0.593094348907471,0.544483423233032,0.593107759952545,0.533470213413239,0.562057495117188,0.632060945034027,0.543884813785553,0.628762364387512,0.555740356445313,0.551927924156189,0.626489043235779,0.550351798534393,0.533470213413239,0.562057495117188,0.632060945034027,0.485076516866684,0.600217938423157,0.635955393314362,0.536360442638397,0.635264277458191,0.555658996105194,0.543884813785553,0.628762364387512,0.555740356445313,0.485076516866684,0.600217938423157,0.635955393314362,0.454069793224335,0.64638215303421,0.613197267055511,0.533519923686981,0.641822218894959,0.550836563110352,0.536360442638397,0.635264277458191,0.555658996105194,0.454069793224335,0.64638215303421,0.613197267055511,0.447614371776581,0.686691880226135,0.572796404361725,0.535114407539368,0.645355939865112,0.54513144493103,0.533519923686981,0.641822218894959,0.550836563110352,0.447614371776581,0.686691880226135,0.572796404361725,0.46431976556778,0.712034046649933,0.526701748371124,0.538084805011749,0.64566034078598,0.541837215423584,0.535114407539368,0.645355939865112,0.54513144493103,0.46431976556778,0.712034046649933,0.526701748371124,0.472208917140961,0.718056857585907,0.511285841464996,0.539495170116425,0.645393908023834,0.540751159191132,0.538084805011749,0.64566034078598,0.541837215423584,
- 0.511292338371277,0.718056380748749,0.472202628850937,0.526658415794373,0.712056398391724,0.464334696531296,0.54146146774292,0.645828068256378,0.538261592388153,0.540757894515991,0.645393908023834,0.53948837518692,0.551927924156189,0.626489043235779,0.550351798534393,0.543884813785553,0.628762364387512,0.555740356445313,0.3526591360569,0.886946797370911,-0.298256397247314,0.0128293763846159,0.996049761772156,-0.0878650993108749,0.556416511535645,0.629437863826752,0.54241007566452,0.551927924156189,0.626489043235779,0.550351798534393,0.0128293763846159,0.996049761772156,-0.0878650993108749,-0.243383526802063,0.941490352153778,0.233153492212296,0.555625379085541,0.63624769449234,0.535228431224823,0.556416511535645,0.629437863826752,0.54241007566452,-0.243383526802063,0.941490352153778,0.233153492212296,-0.347431153059006,0.737934291362762,0.578571200370789,0.550321102142334,0.642710447311401,0.532982230186462,0.555625379085541,0.63624769449234,0.535228431224823,-0.347431153059006,0.737934291362762,0.578571200370789,-0.271400332450867,0.439802378416061,0.856104969978333,0.544674098491669,0.645781993865967,0.5350661277771,0.550321102142334,0.642710447311401,0.532982230186462,-0.271400332450867,0.439802378416061,0.856104969978333,-0.0355236493051052,0.127282336354256,0.991230249404907,0.54146146774292,0.645828068256378,0.538261592388153,0.544674098491669,0.645781993865967,0.5350661277771,-0.0355236493051052,0.127282336354256,0.991230249404907,0.296923786401749,-0.11615364998579,0.947810471057892,0.540757894515991,0.645393908023834,0.53948837518692,0.54146146774292,0.645828068256378,0.538261592388153,0.296923786401749,-0.11615364998579,0.947810471057892,0.525457978248596,-0.220859080553055,0.821653962135315,0.538084805011749,0.64566034078598,0.541837215423584,0.539495170116425,0.645393908023834,0.540751159191132,0.821638941764832,-0.220862209796906,0.525480151176453,0.892977952957153,-0.170744508504868,0.416457384824753,0.535114407539368,0.645355939865112,0.54513144493103,0.538084805011749,0.64566034078598,0.541837215423584,
- 0.892977952957153,-0.170744508504868,0.416457384824753,0.996932029724121,0.032890010625124,0.0710274130105972,0.533519923686981,0.641822218894959,0.550836563110352,0.535114407539368,0.645355939865112,0.54513144493103,0.996932029724121,0.032890010625124,0.0710274130105972,0.920817017555237,0.330839395523071,-0.206497728824615,0.536360442638397,0.635264277458191,0.555658996105194,0.533519923686981,0.641822218894959,0.550836563110352,0.920817017555237,0.330839395523071,-0.206497728824615,0.684967696666718,0.643532752990723,-0.341591715812683,0.543884813785553,0.628762364387512,0.555740356445313,0.536360442638397,0.635264277458191,0.555658996105194,0.684967696666718,0.643532752990723,-0.341591715812683,0.3526591360569,0.886946797370911,-0.298256397247314,0.527420461177826,0.709159195423126,0.467889875173569,0.570737540721893,0.683661043643951,0.454825580120087,0.535011827945709,0.636163711547852,0.555929958820343,0.542248725891113,0.631352603435516,0.55440080165863,0.570737540721893,0.683661043643951,0.454825580120087,0.605467200279236,0.646367073059082,0.464348047971725,0.529537737369537,0.642658948898315,0.553696036338806,0.535011827945709,0.636163711547852,0.555929958820343,0.605467200279236,0.646367073059082,0.464348047971725,0.622383773326874,0.607208073139191,0.493899673223495,0.527293682098389,0.64918065071106,0.548202514648438,0.529537737369537,0.642658948898315,0.553696036338806,0.622383773326874,0.607208073139191,0.493899673223495,0.616913080215454,0.576727628707886,0.535540461540222,0.528829872608185,0.653971493244171,0.540980815887451,0.527293682098389,0.64918065071106,0.548202514648438,0.616913080215454,0.576727628707886,0.535540461540222,0.59060937166214,0.563098907470703,0.578014016151428,0.533859133720398,0.655743181705475,0.533849537372589,0.528829872608185,0.653971493244171,0.540980815887451,0.59060937166214,0.563098907470703,0.578014016151428,0.550459921360016,0.569916486740112,0.610073089599609,0.54092812538147,0.654000639915466,0.528847754001617,0.533859133720398,0.655743181705475,0.533849537372589,
- 0.550459921360016,0.569916486740112,0.610073089599609,0.507243514060974,0.595375061035156,0.623083174228668,0.548218846321106,0.64919376373291,0.527260482311249,0.54092812538147,0.654000639915466,0.528847754001617,0.507243514060974,0.595375061035156,0.623083174228668,0.472492277622223,0.632693886756897,0.613554775714874,0.553705453872681,0.64266562461853,0.52951991558075,0.548218846321106,0.64919376373291,0.527260482311249,0.472492277622223,0.632693886756897,0.613554775714874,0.455563306808472,0.671863317489624,0.584004998207092,0.555966854095459,0.636137247085571,0.53500497341156,0.553705453872681,0.64266562461853,0.52951991558075,0.455563306808472,0.671863317489624,0.584004998207092,0.460997849702835,0.702312350273132,0.542437493801117,0.55438357591629,0.631330072879791,0.542292654514313,0.555966854095459,0.636137247085571,0.53500497341156,0.460997849702835,0.702312350273132,0.542437493801117,0.474611341953278,0.715722858905792,0.512332797050476,0.552641749382019,0.62957102060318,0.546102046966553,0.55438357591629,0.631330072879791,0.542292654514313,0.512322127819061,0.715723156929016,0.474622279405594,0.527420461177826,0.709159195423126,0.467889875173569,0.542248725891113,0.631352603435516,0.55440080165863,0.546107292175293,0.62957102060318,0.552636623382568,0.533859133720398,0.655743181705475,0.533849537372589,0.54092812538147,0.654000639915466,0.528847754001617,0.340749174356461,0.882679104804993,-0.323678344488144,-0.00612945575267076,0.994032680988312,-0.108910635113716,0.528829872608185,0.653971493244171,0.540980815887451,0.533859133720398,0.655743181705475,0.533849537372589,-0.00612945575267076,0.994032680988312,-0.108910635113716,-0.26763054728508,0.938340663909912,0.218839406967163,0.527293682098389,0.64918065071106,0.548202514648438,0.528829872608185,0.653971493244171,0.540980815887451,-0.26763054728508,0.938340663909912,0.218839406967163,-0.373755663633347,0.730584859848022,0.571447670459747,0.529537737369537,0.642658948898315,0.553696036338806,0.527293682098389,0.64918065071106,0.548202514648438,-0.373755663633347,0.730584859848022,0.571447670459747,
- -0.296038210391998,0.426273614168167,0.854781925678253,0.535011827945709,0.636163711547852,0.555929958820343,0.529537737369537,0.642658948898315,0.553696036338806,-0.296038210391998,0.426273614168167,0.854781925678253,-0.055388443171978,0.107231631875038,0.992690086364746,0.542248725891113,0.631352603435516,0.55440080165863,0.535011827945709,0.636163711547852,0.555929958820343,-0.055388443171978,0.107231631875038,0.992690086364746,0.2839235663414,-0.141312003135681,0.948376655578613,0.546107292175293,0.62957102060318,0.552636623382568,0.542248725891113,0.631352603435516,0.55440080165863,0.2839235663414,-0.141312003135681,0.948376655578613,0.517161250114441,-0.247558653354645,0.8193039894104,0.55438357591629,0.631330072879791,0.542292654514313,0.552641749382019,0.62957102060318,0.546102046966553,0.81930685043335,-0.247562199831009,0.51715499162674,0.892365455627441,-0.197124451398849,0.405987709760666,0.555966854095459,0.636137247085571,0.53500497341156,0.55438357591629,0.631330072879791,0.542292654514313,0.892365455627441,-0.197124451398849,0.405987709760666,0.998521327972412,0.0107517279684544,0.0532875210046768,0.553705453872681,0.64266562461853,0.52951991558075,0.555966854095459,0.636137247085571,0.53500497341156,0.998521327972412,0.0107517279684544,0.0532875210046768,0.920808553695679,0.315023511648178,-0.229938939213753,0.548218846321106,0.64919376373291,0.527260482311249,0.553705453872681,0.64266562461853,0.52951991558075,0.920808553695679,0.315023511648178,-0.229938939213753,0.680067658424377,0.634139060974121,-0.367934346199036,0.54092812538147,0.654000639915466,0.528847754001617,0.548218846321106,0.64919376373291,0.527260482311249,0.680067658424377,0.634139060974121,-0.367934346199036,0.340749174356461,0.882679104804993,-0.323678344488144,0.523881494998932,0.721888601779938,0.452133893966675,0.636029183864594,0.651119589805603,0.414137899875641,0.613028764724731,0.590030550956726,0.525413811206818,0.541757047176361,0.641247689723969,0.54341584444046,0.636029183864594,0.651119589805603,0.414137899875641,0.730002045631409,0.492424309253693,0.473935961723328,
- 0.640052497386932,0.519103169441223,0.566449165344238,0.613028764724731,0.590030550956726,0.525413811206818,0.730002045631409,0.492424309253693,0.473935961723328,0.710404455661774,0.44333690404892,0.54660576581955,0.611028611660004,0.514549612998962,0.601566851139069,0.640052497386932,0.519103169441223,0.566449165344238,0.710404455661774,0.44333690404892,0.54660576581955,0.673027157783508,0.429350972175598,0.602239310741425,0.594612061977386,0.541783928871155,0.594059586524963,0.611028611660004,0.514549612998962,0.601566851139069,0.673027157783508,0.429350972175598,0.602239310741425,0.638682782649994,0.429165422916412,0.638671636581421,0.595773696899414,0.548289060592651,0.586884081363678,0.594612061977386,0.541783928871155,0.594059586524963,0.638682782649994,0.429165422916412,0.638671636581421,0.517041981220245,0.470891416072845,0.714792907238007,0.55097758769989,0.56274276971817,0.616234004497528,0.595773696899414,0.548289060592651,0.586884081363678,0.517041981220245,0.470891416072845,0.714792907238007,0.430897831916809,0.557008564472198,0.709977865219116,0.512172996997833,0.602236986160278,0.612363815307617,0.55097758769989,0.56274276971817,0.616234004497528,0.430897831916809,0.557008564472198,0.709977865219116,0.396884202957153,0.644324064254761,0.653704404830933,0.50467050075531,0.638069868087769,0.581527829170227,0.512172996997833,0.602236986160278,0.612363815307617,0.396884202957153,0.644324064254761,0.653704404830933,0.412586808204651,0.700423181056976,0.582391142845154,0.52327823638916,0.649738609790802,0.551379859447479,0.50467050075531,0.638069868087769,0.581527829170227,0.412586808204651,0.700423181056976,0.582391142845154,0.452094793319702,0.721875548362732,0.523933172225952,0.543462336063385,0.641332685947418,0.541609764099121,0.52327823638916,0.649738609790802,0.551379859447479,0.452094793319702,0.721875548362732,0.523933172225952,0.466968774795532,0.723257780075073,0.508761644363403,0.548881709575653,0.634151816368103,0.544591903686523,0.543462336063385,0.641332685947418,0.541609764099121,0.508764624595642,0.723257601261139,0.466965705156326,
- 0.523881494998932,0.721888601779938,0.452133893966675,0.541757047176361,0.641247689723969,0.54341584444046,0.544584989547729,0.634151756763458,0.548888623714447,0.595773696899414,0.548289060592651,0.586884081363678,0.55097758769989,0.56274276971817,0.616234004497528,0.406263202428818,0.897596597671509,-0.171086683869362,0.104854747653008,0.994365930557251,0.0155576635152102,0.594612061977386,0.541783928871155,0.594059586524963,0.595773696899414,0.548289060592651,0.586884081363678,0.104854747653008,0.994365930557251,0.0155576635152102,-0.146436676383018,0.924143016338348,0.352868497371674,0.611028611660004,0.514549612998962,0.601566851139069,0.594612061977386,0.541783928871155,0.594059586524963,-0.146436676383018,0.924143016338348,0.352868497371674,-0.206187754869461,0.640866637229919,0.739443421363831,0.640052497386932,0.519103169441223,0.566449165344238,0.611028611660004,0.514549612998962,0.601566851139069,-0.206187754869461,0.640866637229919,0.739443421363831,-0.0570187047123909,0.347437053918839,0.935968220233917,0.613028764724731,0.590030550956726,0.525413811206818,0.640052497386932,0.519103169441223,0.566449165344238,-0.0570187047123909,0.347437053918839,0.935968220233917,0.17266871035099,0.12515714764595,0.976996123790741,0.541757047176361,0.641247689723969,0.54341584444046,0.613028764724731,0.590030550956726,0.525413811206818,0.17266871035099,0.12515714764595,0.976996123790741,0.356863975524902,0.00791738927364349,0.934122800827026,0.544584989547729,0.634151756763458,0.548888623714447,0.541757047176361,0.641247689723969,0.54341584444046,0.356863975524902,0.00791738927364349,0.934122800827026,0.560070693492889,-0.0874893739819527,0.823812186717987,0.543462336063385,0.641332685947418,0.541609764099121,0.548881709575653,0.634151816368103,0.544591903686523,0.82379287481308,-0.0874872356653214,0.560099422931671,0.885485053062439,-0.0405519753694534,0.462895005941391,0.52327823638916,0.649738609790802,0.551379859447479,0.543462336063385,0.641332685947418,0.541609764099121,0.885485053062439,-0.0405519753694534,0.462895005941391,
- 0.977694034576416,0.140081882476807,0.156497716903687,0.50467050075531,0.638069868087769,0.581527829170227,0.52327823638916,0.649738609790802,0.551379859447479,0.977694034576416,0.140081882476807,0.156497716903687,0.910164177417755,0.404453843832016,-0.0895459353923798,0.512172996997833,0.602236986160278,0.612363815307617,0.50467050075531,0.638069868087769,0.581527829170227,0.910164177417755,0.404453843832016,-0.0895459353923798,0.701002418994904,0.68170291185379,-0.209467649459839,0.55097758769989,0.56274276971817,0.616234004497528,0.512172996997833,0.602236986160278,0.612363815307617,0.701002418994904,0.68170291185379,-0.209467649459839,0.406263202428818,0.897596597671509,-0.171086683869362,0.541736662387848,0.715872287750244,0.440509110689163,0.590196549892426,0.675870001316071,0.441438376903534,0.553585588932037,0.659513771533966,0.508512318134308,0.535684049129486,0.674738883972168,0.507710576057434,0.590196549892426,0.675870001316071,0.441438376903534,0.616380512714386,0.632156670093536,0.469524323940277,0.560070276260376,0.644364058971405,0.520688235759735,0.553585588932037,0.659513771533966,0.508512318134308,0.616380512714386,0.632156670093536,0.469524323940277,0.617091476917267,0.59924304485321,0.5100057721138,0.555705547332764,0.637217879295349,0.533989548683167,0.560070276260376,0.644364058971405,0.520688235759735,0.617091476917267,0.59924304485321,0.5100057721138,0.599356114864349,0.582111060619354,0.549471497535706,0.548464417457581,0.637223958969116,0.541417121887207,0.555705547332764,0.637217879295349,0.533989548683167,0.599356114864349,0.582111060619354,0.549471497535706,0.57653021812439,0.578986883163452,0.57653021812439,0.544452726840973,0.638341128826141,0.544143319129944,0.548464417457581,0.637223958969116,0.541417121887207,0.57653021812439,0.578986883163452,0.57653021812439,0.54942923784256,0.582131743431091,0.599374771118164,0.542015433311462,0.63694828748703,0.548193573951721,0.544452726840973,0.638341128826141,0.544143319129944,0.54942923784256,0.582131743431091,0.599374771118164,0.510051071643829,0.599235057830811,0.617061793804169,
- 0.535165309906006,0.636197626590729,0.555743336677551,0.542015433311462,0.63694828748703,0.548193573951721,0.510051071643829,0.599235057830811,0.617061793804169,0.469538599252701,0.632182598114014,0.616342961788177,0.521795749664307,0.642498373985291,0.561181962490082,0.535165309906006,0.636197626590729,0.555743336677551,0.469538599252701,0.632182598114014,0.616342961788177,0.441466361284256,0.675880968570709,0.590162992477417,0.508670806884766,0.657160699367523,0.556231737136841,0.521795749664307,0.642498373985291,0.561181962490082,0.441466361284256,0.675880968570709,0.590162992477417,0.440487176179886,0.715840578079224,0.541796386241913,0.506097435951233,0.673146069049835,0.53920304775238,0.508670806884766,0.657160699367523,0.556231737136841,0.440487176179886,0.715840578079224,0.541796386241913,0.455103576183319,0.734598577022552,0.503235220909119,0.50894296169281,0.680038392543793,0.527754664421082,0.506097435951233,0.673146069049835,0.53920304775238,0.503248453140259,0.734598577022552,0.455089092254639,0.541736662387848,0.715872287750244,0.440509110689163,0.535684049129486,0.674738883972168,0.507710576057434,0.527756214141846,0.680038571357727,0.508940994739532,0.544452726840973,0.638341128826141,0.544143319129944,0.542015433311462,0.63694828748703,0.548193573951721,0.378214478492737,0.893970310688019,-0.240356236696243,0.0552620030939579,0.997655212879181,-0.0403762273490429,0.548464417457581,0.637223958969116,0.541417121887207,0.544452726840973,0.638341128826141,0.544143319129944,0.0552620030939579,0.997655212879181,-0.0403762273490429,-0.188157439231873,0.945801913738251,0.264680117368698,0.555705547332764,0.637217879295349,0.533989548683167,0.548464417457581,0.637223958969116,0.541417121887207,-0.188157439231873,0.945801913738251,0.264680117368698,-0.286952972412109,0.75240421295166,0.592913150787354,0.560070276260376,0.644364058971405,0.520688235759735,0.555705547332764,0.637217879295349,0.533989548683167,-0.286952972412109,0.75240421295166,0.592913150787354,-0.214578360319138,0.469105273485184,0.8566774725914,
- 0.553585588932037,0.659513771533966,0.508512318134308,0.560070276260376,0.644364058971405,0.520688235759735,-0.214578360319138,0.469105273485184,0.8566774725914,0.00933819264173508,0.17218866944313,0.98501980304718,0.535684049129486,0.674738883972168,0.507710576057434,0.553585588932037,0.659513771533966,0.508512318134308,0.00933819264173508,0.17218866944313,0.98501980304718,0.325244098901749,-0.0592191964387894,0.943774104118347,0.527756214141846,0.680038571357727,0.508940994739532,0.535684049129486,0.674738883972168,0.507710576057434,0.325244098901749,-0.0592191964387894,0.943774104118347,0.542636871337891,-0.160043954849243,0.824579417705536,0.506097435951233,0.673146069049835,0.53920304775238,0.50894296169281,0.680038392543793,0.527754664421082,0.824544131755829,-0.160051822662354,0.542688131332397,0.891669392585754,-0.111163273453712,0.438826352357864,0.508670806884766,0.657160699367523,0.556231737136841,0.506097435951233,0.673146069049835,0.53920304775238,0.891669392585754,-0.111163273453712,0.438826352357864,0.990447163581848,0.082410916686058,0.110557913780212,0.521795749664307,0.642498373985291,0.561181962490082,0.508670806884766,0.657160699367523,0.556231737136841,0.990447163581848,0.082410916686058,0.110557913780212,0.918103814125061,0.365612298250198,-0.153013646602631,0.535165309906006,0.636197626590729,0.555743336677551,0.521795749664307,0.642498373985291,0.561181962490082,0.918103814125061,0.365612298250198,-0.153013646602631,0.694053113460541,0.66262686252594,-0.281453400850296,0.542015433311462,0.63694828748703,0.548193573951721,0.535165309906006,0.636197626590729,0.555743336677551,0.694053113460541,0.66262686252594,-0.281453400850296,0.378214478492737,0.893970310688019,-0.240356236696243,0.525465905666351,0.716219663619995,0.459254890680313,0.573697745800018,0.687828183174133,0.44470602273941,0.530630826950073,0.631702840328217,0.565139353275299,0.542575776576996,0.623785078525543,0.562586724758148,0.573697745800018,0.687828183174133,0.44470602273941,0.612314581871033,0.646371126174927,0.455274999141693,
- 0.521529257297516,0.642489433288574,0.561439692974091,0.530630826950073,0.631702840328217,0.565139353275299,0.612314581871033,0.646371126174927,0.455274999141693,0.631139278411865,0.602790236473084,0.4881671667099,0.517817318439484,0.653304517269135,0.552321016788483,0.521529257297516,0.642489433288574,0.561439692974091,0.631139278411865,0.602790236473084,0.4881671667099,0.625076949596405,0.56890732049942,0.534437417984009,0.520376145839691,0.661217272281647,0.540370643138886,0.517817318439484,0.653304517269135,0.552321016788483,0.625076949596405,0.56890732049942,0.534437417984009,0.595730006694794,0.553705453872681,0.581821262836456,0.52863085269928,0.664094626903534,0.528703808784485,0.520376145839691,0.661217272281647,0.540370643138886,0.595730006694794,0.553705453872681,0.581821262836456,0.551094353199005,0.56129002571106,0.617453217506409,0.540338397026062,0.661216497421265,0.520410656929016,0.52863085269928,0.664094626903534,0.528703808784485,0.551094353199005,0.56129002571106,0.617453217506409,0.503007471561432,0.589608550071716,0.631937682628632,0.552343726158142,0.653276860713959,0.517827987670898,0.540338397026062,0.661216497421265,0.520410656929016,0.503007471561432,0.589608550071716,0.631937682628632,0.46431240439415,0.631145536899567,0.621344804763794,0.561401605606079,0.642480134963989,0.521581709384918,0.552343726158142,0.653276860713959,0.517827987670898,0.46431240439415,0.631145536899567,0.621344804763794,0.445494949817657,0.674753785133362,0.588423073291779,0.56513899564743,0.631730496883392,0.530598342418671,0.561401605606079,0.642480134963989,0.521581709384918,0.445494949817657,0.674753785133362,0.588423073291779,0.451555788516998,0.708598673343658,0.542204260826111,0.562554061412811,0.623780488967896,0.542614817619324,0.56513899564743,0.631730496883392,0.530598342418671,0.451555788516998,0.708598673343658,0.542204260826111,0.466656893491745,0.723491966724396,0.508714914321899,0.559637784957886,0.620878159999847,0.548922419548035,0.562554061412811,0.623780488967896,0.542614817619324,0.508695125579834,0.723492324352264,0.466677784919739,
- 0.525465905666351,0.716219663619995,0.459254890680313,0.542575776576996,0.623785078525543,0.562586724758148,0.548868060112,0.620877921581268,0.559691548347473,0.52863085269928,0.664094626903534,0.528703808784485,0.540338397026062,0.661216497421265,0.520410656929016,0.406218945980072,0.897612035274506,-0.171110868453979,0.104780957102776,0.994374632835388,0.0154928807169199,0.520376145839691,0.661217272281647,0.540370643138886,0.52863085269928,0.664094626903534,0.528703808784485,0.104780957102776,0.994374632835388,0.0154928807169199,-0.122506700456142,0.945955157279968,0.300268292427063,0.517817318439484,0.653304517269135,0.552321016788483,0.520376145839691,0.661217272281647,0.540370643138886,-0.122506700456142,0.945955157279968,0.300268292427063,-0.214701771736145,0.765453279018402,0.606617152690887,0.521529257297516,0.642489433288574,0.561439692974091,0.517817318439484,0.653304517269135,0.552321016788483,-0.214701771736145,0.765453279018402,0.606617152690887,-0.14714241027832,0.501011371612549,0.85284036397934,0.530630826950073,0.631702840328217,0.565139353275299,0.521529257297516,0.642489433288574,0.561439692974091,-0.14714241027832,0.501011371612549,0.85284036397934,0.0619658902287483,0.223829060792923,0.972656548023224,0.542575776576996,0.623785078525543,0.562586724758148,0.530630826950073,0.631702840328217,0.565139353275299,0.0619658902287483,0.223829060792923,0.972656548023224,0.356818586587906,0.00785429868847132,0.934140741825104,0.548868060112,0.620877921581268,0.559691548347473,0.542575776576996,0.623785078525543,0.562586724758148,0.356818586587906,0.00785429868847132,0.934140741825104,0.559939920902252,-0.0875715613365173,0.823892295360565,0.562554061412811,0.623780488967896,0.542614817619324,0.559637784957886,0.620878159999847,0.548922419548035,0.823859095573425,-0.0875620692968369,0.559990286827087,0.885505855083466,-0.0405741259455681,0.462853193283081,0.56513899564743,0.631730496883392,0.530598342418671,0.562554061412811,0.623780488967896,0.542614817619324,0.885505855083466,-0.0405741259455681,0.462853193283081,
- 0.977689504623413,0.140090748667717,0.156518161296844,0.561401605606079,0.642480134963989,0.521581709384918,0.56513899564743,0.631730496883392,0.530598342418671,0.977689504623413,0.140090748667717,0.156518161296844,0.910172700881958,0.404444724321365,-0.0895004197955132,0.552343726158142,0.653276860713959,0.517827987670898,0.561401605606079,0.642480134963989,0.521581709384918,0.910172700881958,0.404444724321365,-0.0895004197955132,0.701019287109375,0.681695759296417,-0.20943483710289,0.540338397026062,0.661216497421265,0.520410656929016,0.552343726158142,0.653276860713959,0.517827987670898,0.701019287109375,0.681695759296417,-0.20943483710289,0.406218945980072,0.897612035274506,-0.171110868453979,0.529363512992859,0.701583623886108,0.477026879787445,0.567616581916809,0.679051339626312,0.465511202812195,0.544988632202148,0.64599734544754,0.534485638141632,0.541317403316498,0.648397088050842,0.535309910774231,0.567616581916809,0.679051339626312,0.465511202812195,0.598113775253296,0.646289646625519,0.473887741565704,0.547690510749817,0.642735421657562,0.535655081272125,0.544988632202148,0.64599734544754,0.534485638141632,0.598113775253296,0.646289646625519,0.473887741565704,0.613021671772003,0.611779868602753,0.499930024147034,0.548851907253265,0.639461815357208,0.538377344608307,0.547690510749817,0.642735421657562,0.535655081272125,0.613021671772003,0.611779868602753,0.499930024147034,0.608227849006653,0.584996700286865,0.536505103111267,0.548024415969849,0.637076914310455,0.542035281658173,0.548851907253265,0.639461815357208,0.538377344608307,0.608227849006653,0.584996700286865,0.536505103111267,0.585009753704071,0.572971165180206,0.573992848396301,0.545553624629974,0.63618391752243,0.545565187931061,0.548024415969849,0.637076914310455,0.542035281658173,0.585009753704071,0.572971165180206,0.573992848396301,0.549721777439117,0.578962445259094,0.602169811725616,0.542015910148621,0.637075185775757,0.548045575618744,0.545553624629974,0.63618391752243,0.545565187931061,0.549721777439117,0.578962445259094,0.602169811725616,
- 0.51164972782135,0.601396024227142,0.613626420497894,0.538373112678528,0.639472961425781,0.548843204975128,0.542015910148621,0.637075185775757,0.548045575618744,0.51164972782135,0.601396024227142,0.613626420497894,0.481072455644608,0.634234488010406,0.605240404605865,0.535646140575409,0.642738819122314,0.547695219516754,0.538373112678528,0.639472961425781,0.548843204975128,0.481072455644608,0.634234488010406,0.605240404605865,0.466160476207733,0.668741703033447,0.579205572605133,0.534496366977692,0.645979821681976,0.544998943805695,0.535646140575409,0.642738819122314,0.547695219516754,0.466160476207733,0.668741703033447,0.579205572605133,0.47090420126915,0.695499122142792,0.542706370353699,0.535289824008942,0.648399770259857,0.54133415222168,0.534496366977692,0.645979821681976,0.544998943805695,0.47090420126915,0.695499122142792,0.542706370353699,0.482986778020859,0.707369744777679,0.516092777252197,0.536249101161957,0.649290144443512,0.539313733577728,0.535289824008942,0.648399770259857,0.54133415222168,0.516147494316101,0.707368433475494,0.482930451631546,0.529363512992859,0.701583623886108,0.477026879787445,0.541317403316498,0.648397088050842,0.535309910774231,0.539303719997406,0.649290204048157,0.536259114742279,0.545553624629974,0.63618391752243,0.545565187931061,0.542015910148621,0.637075185775757,0.548045575618744,0.40619096159935,0.897618472576141,-0.171143263578415,0.104795172810555,0.994373798370361,0.0154553204774857,0.548024415969849,0.637076914310455,0.542035281658173,0.545553624629974,0.63618391752243,0.545565187931061,0.104795172810555,0.994373798370361,0.0154553204774857,-0.122525215148926,0.945948421955109,0.30028173327446,0.548851907253265,0.639461815357208,0.538377344608307,0.548024415969849,0.637076914310455,0.542035281658173,-0.122525215148926,0.945948421955109,0.30028173327446,-0.214727729558945,0.765450954437256,0.606611013412476,0.547690510749817,0.642735421657562,0.535655081272125,0.548851907253265,0.639461815357208,0.538377344608307,-0.214727729558945,0.765450954437256,0.606611013412476,-0.14713554084301,0.500994741916656,0.852851390838623,
- 0.544988632202148,0.64599734544754,0.534485638141632,0.547690510749817,0.642735421657562,0.535655081272125,-0.14713554084301,0.500994741916656,0.852851390838623,0.0618805661797524,0.223845303058624,0.972658276557922,0.541317403316498,0.648397088050842,0.535309910774231,0.544988632202148,0.64599734544754,0.534485638141632,0.0618805661797524,0.223845303058624,0.972658276557922,0.356812983751297,0.00775334984064102,0.934143722057343,0.539303719997406,0.649290204048157,0.536259114742279,0.541317403316498,0.648397088050842,0.535309910774231,0.356812983751297,0.00775334984064102,0.934143722057343,0.559973478317261,-0.087632343173027,0.82386302947998,0.535289824008942,0.648399770259857,0.54133415222168,0.536249101161957,0.649290144443512,0.539313733577728,0.823795199394226,-0.0876309871673584,0.560073494911194,0.885523796081543,-0.0406259708106518,0.462814629077911,0.534496366977692,0.645979821681976,0.544998943805695,0.535289824008942,0.648399770259857,0.54133415222168,0.885523796081543,-0.0406259708106518,0.462814629077911,0.977686166763306,0.14011712372303,0.156515210866928,0.535646140575409,0.642738819122314,0.547695219516754,0.534496366977692,0.645979821681976,0.544998943805695,0.977686166763306,0.14011712372303,0.156515210866928,0.910163044929504,0.404467880725861,-0.0894931256771088,0.538373112678528,0.639472961425781,0.548843204975128,0.535646140575409,0.642738819122314,0.547695219516754,0.910163044929504,0.404467880725861,-0.0894931256771088,0.701042473316193,0.68166571855545,-0.209454879164696,0.542015910148621,0.637075185775757,0.548045575618744,0.538373112678528,0.639472961425781,0.548843204975128,0.701042473316193,0.68166571855545,-0.209454879164696,0.40619096159935,0.897618472576141,-0.171143263578415,-0.454497426748276,0.76607072353363,-0.454497396945953,-0.454497426748276,0.76607072353363,-0.454497426748276,-0.454507291316986,0.766070663928986,-0.454487502574921,-0.45446503162384,0.766070663928986,-0.454529821872711,-0.454500138759613,0.766070663928986,-0.454494655132294,-0.454497307538986,0.766070604324341,-0.454497545957565,
- -0.45451357960701,0.766070663928986,-0.454481244087219,-0.454452216625214,0.76607072353363,-0.454542607069016,-0.45454078912735,0.766070783138275,-0.454454004764557,-0.454795241355896,0.766070604324341,-0.454199522733688,-0.45453268289566,0.766070604324341,-0.454462081193924,-0.454485416412354,0.766070783138275,-0.45450946688652,-0.9871426820755,0.159841731190681,8.16939575543074e-007,-0.987191677093506,0.159538879990578,9.71662871052104e-007,-0.473356276750565,0.880871057510376,9.66610741670593e-007,-0.473358243703842,0.88087010383606,8.83600591805589e-007,0.999780535697937,0.0209533162415028,4.95221419427594e-009,0.999781608581543,0.0208997204899788,1.50921621866473e-007,1,-0,7.74867203290341e-007,1,-0,4.39890754933003e-007,-1,-5.00615897180978e-007,8.94114180027827e-007,-1,0,8.64310663928336e-007,-0.987191677093506,0.159538879990578,9.71662871052104e-007,-0.9871426820755,0.159841731190681,8.16939575543074e-007,0.066604308784008,0.997779488563538,4.32223885127314e-007,0.0666042938828468,0.997779488563538,4.79514483231469e-007,-0.408926844596863,0.912567257881165,8.60535521951533e-007,-0.408926904201508,0.912567138671875,8.01350552137592e-007,-0.472841262817383,0.881147742271423,9.65010258369148e-007,-0.472841084003448,0.881147742271423,9.43473196457489e-007,-0.408926904201508,0.912567138671875,8.01350552137592e-007,-0.408926844596863,0.912567257881165,8.60535521951533e-007,-0.473358243703842,0.88087010383606,8.83600591805589e-007,-0.473356276750565,0.880871057510376,9.66610741670593e-007,-0.472841084003448,0.881147742271423,9.43473196457489e-007,-0.472841262817383,0.881147742271423,9.65010258369148e-007,0.999780535697937,0.0209533162415028,4.95221419427594e-009,0.0666042938828468,0.997779488563538,4.79514483231469e-007,0.066604308784008,0.997779488563538,4.32223885127314e-007,0.999781608581543,0.0208997204899788,1.50921621866473e-007,0.000449142942670733,0.99999988079071,-0,0.000131330831209198,1,-0,-3.37861678190166e-007,1,0,0.000244645401835442,1,-0,-0.00273845950141549,0.999996304512024,0,-0.00547669269144535,0.999984979629517,0,
- -0.00171714427415282,0.99999862909317,0,0.000480385351693258,0.99999988079071,-0,1.34624565362174e-006,-1,6.22886318524252e-007,0,-1,6.48839773020882e-007,0,-1,6.74793227517512e-007,1.34624565362174e-006,-1,6.48839773020882e-007,0.0665208101272583,0.997785151004791,-7.02889281001262e-007,0.0400931052863598,0.99919593334198,-4.30737230772138e-007,-0.247675821185112,0.968842923641205,7.93854383118742e-007,-0.406055808067322,0.913848400115967,8.73365252118674e-007,-0.984497129917145,0.17540068924427,7.85450538387522e-007,-0.9871426820755,0.159841731190681,8.07308140338137e-007,-0.473358243703842,0.88087010383606,6.77699404150189e-007,-0.47041928768158,0.882443070411682,6.90500939981575e-007,0.999730587005615,0.0232124235481024,6.15654016655753e-007,0.999780535697937,0.0209533162415028,4.56476897170432e-007,1,-0,1.66261088452302e-007,1,-0,4.40761795061917e-007,0.0666042938828468,0.997779488563538,4.72875910872972e-007,0.0665208101272583,0.997785151004791,5.20150081229076e-007,-0.406055808067322,0.913848400115967,6.10332278938586e-007,-0.408926844596863,0.912567257881165,5.51761388578598e-007,-0.475737631320953,0.879587173461914,6.76071806537948e-007,-0.472841262817383,0.881147742271423,6.54873986150051e-007,-0.408926844596863,0.912567257881165,5.51761388578598e-007,-0.406055808067322,0.913848400115967,6.10332278938586e-007,-0.47041928768158,0.882443070411682,6.90500939981575e-007,-0.473358243703842,0.88087010383606,6.77699404150189e-007,-0.472841262817383,0.881147742271423,6.54873986150051e-007,-0.475737631320953,0.879587173461914,6.76071806537948e-007,0.999730587005615,0.0232124235481024,6.15654016655753e-007,0.0665208101272583,0.997785151004791,5.20150081229076e-007,0.0666042938828468,0.997779488563538,4.72875910872972e-007,0.999780535697937,0.0209533162415028,4.56476897170432e-007,-8.16940712411451e-007,0.159537941217422,-0.98719185590744,-9.7219094641332e-007,0.163388773798943,-0.98656177520752,-9.65625986282248e-007,0.881947040557861,-0.471348494291306,-8.83609345692093e-007,0.880866527557373,-0.47336483001709,-4.94168483911039e-009,0.0208996403962374,0.999781668186188,
- -1.51097751199814e-007,0.0217442102730274,0.999763667583466,-7.74871011799405e-007,0,1,-4.3989442133352e-007,0,1,-8.94114123184409e-007,-0,-1,-8.64310663928336e-007,-4.18341130625777e-007,-1,-9.7219094641332e-007,0.163388773798943,-0.98656177520752,-8.16940712411451e-007,0.159537941217422,-0.98719185590744,-4.32248469905971e-007,0.997783303260803,0.0665470659732819,-4.79514540074888e-007,0.997779488563538,0.0666042864322662,-8.60535465108114e-007,0.912567257881165,-0.408926784992218,-8.0020799941849e-007,0.913452327251434,-0.406946033239365,-9.65010258369148e-007,0.881147682666779,-0.472841262817383,-9.44988528317481e-007,0.880076289176941,-0.474832326173782,-8.0020799941849e-007,0.913452327251434,-0.406946033239365,-8.60535465108114e-007,0.912567257881165,-0.408926784992218,-8.83609345692093e-007,0.880866527557373,-0.47336483001709,-9.65625986282248e-007,0.881947040557861,-0.471348494291306,-9.44988528317481e-007,0.880076289176941,-0.474832326173782,-9.65010258369148e-007,0.881147682666779,-0.472841262817383,-4.94168483911039e-009,0.0208996403962374,0.999781668186188,-4.79514540074888e-007,0.997779488563538,0.0666042864322662,-4.32248469905971e-007,0.997783303260803,0.0665470659732819,-1.51097751199814e-007,0.0217442102730274,0.999763667583466,0,1,-2.05505799044658e-007,0,1,-0.000207146164029837,0,1,-5.91616014844476e-007,-0,1,6.14856276115461e-007,0,1,-5.1571173571574e-006,-0,0.99999988079071,0.000455440313089639,0,0.999999821186066,-0.00061588321113959,0,0.999999403953552,-0.00107749400194734,-6.22886375367671e-007,-1,0,-6.48839829864301e-007,-1,-9.16915894322301e-007,-6.74793227517512e-007,-1,-9.16915553261788e-007,-6.48839773020882e-007,-1,0,-8.31405259305029e-007,0.163388773798943,-0.98656177520752,-1.10971529920789e-006,0.313030809164047,-0.949743092060089,-9.97200686470023e-007,0.945541441440582,-0.325501829385757,-1.00077454590064e-006,0.881947040557861,-0.471348494291306,3.88777948501229e-007,0.0217442102730274,0.999763667583466,3.89212203799616e-007,0.0624242909252644,0.998049795627594,3.66645309668456e-007,-0,1,
- 5.16251930093858e-007,-0,1,-9.74129648056987e-007,-4.18341130625777e-007,-1,-9.08376080133166e-007,-1.21106631922885e-006,-1,-1.10971529920789e-006,0.313030809164047,-0.949743092060089,-8.31405259305029e-007,0.163388773798943,-0.98656177520752,-1.1418142094044e-006,0.880076289176941,-0.474832326173782,-1.21245807349624e-006,0.824659943580627,-0.565628886222839,-7.97177108324831e-007,0.963771820068359,-0.266728043556213,-1.01770717719774e-006,0.913452327251434,-0.406946033239365,-1.00077454590064e-006,0.881947040557861,-0.471348494291306,-9.97200686470023e-007,0.945541441440582,-0.325501829385757,-1.21245807349624e-006,0.824659943580627,-0.565628886222839,-1.1418142094044e-006,0.880076289176941,-0.474832326173782,3.88777948501229e-007,0.0217442102730274,0.999763667583466,-5.81354186124372e-007,0.997783303260803,0.0665470659732819,-6.30548981916945e-007,0.999179720878601,0.0404982082545757,3.89212203799616e-007,0.0624242909252644,0.998049795627594,-6.36215247595828e-007,-1,-9.16915894322301e-007,-7.92064383858815e-007,-1,4.28254179496435e-006,-9.47919829741295e-007,-1,4.59748434877838e-006,-7.9206762393369e-007,-1,-9.16915553261788e-007,-0.296254128217697,0.955109238624573,1.83803786057979e-006,-0.913641810417175,0.406520426273346,2.8307072170719e-006,-0.984497129917145,0.17540068924427,9.2174059318495e-007,-0.47041928768158,0.882443070411682,2.68292319560715e-006,1,0,-4.17177852796158e-006,0.994277596473694,0.10682750493288,-4.50249535788316e-006,0.999730587005615,0.0232124235481024,-4.36167829320766e-006,-0.913641810417175,0.406520426273346,2.8307072170719e-006,-1,-1.01622856618633e-006,1.04784135146474e-006,-0.984497129917145,0.17540068924427,9.2174059318495e-007,-0.247675821185112,0.968842923641205,7.93854383118742e-007,-0.589487075805664,0.80777782201767,6.52942844681093e-007,-0.475737631320953,0.879587173461914,1.57324711835827e-006,-0.406055808067322,0.913848400115967,8.73365252118674e-007,-0.589487075805664,0.80777782201767,6.52942844681093e-007,-0.296254128217697,0.955109238624573,1.83803786057979e-006,-0.47041928768158,0.882443070411682,2.68292319560715e-006,
- -0.475737631320953,0.879587173461914,1.57324711835827e-006,0.994277596473694,0.10682750493288,-4.50249535788316e-006,0.0400931052863598,0.99919593334198,-4.30737230772138e-007,0.0665208101272583,0.997785151004791,-7.02889281001262e-007,0.999730587005615,0.0232124235481024,-4.36167829320766e-006,-1,-1.01622856618633e-006,8.69043049078755e-007,-1,-5.00615897180978e-007,9.03579632449691e-007,-0.9871426820755,0.159841731190681,8.07308140338137e-007,-0.984497129917145,0.17540068924427,7.85450538387522e-007,1.06542950106814e-006,-1,5.27732652244595e-007,1.04028572422976e-006,-1,5.78606091039546e-007,1.34624565362174e-006,-1,6.29479302460823e-007,1.34624565362174e-006,-1,5.78605977352709e-007,-7.97177108324831e-007,0.963771820068359,-0.266728043556213,-6.30548981916945e-007,0.999179720878601,0.0404982082545757,-5.81354186124372e-007,0.997783303260803,0.0665470659732819,-1.01770717719774e-006,0.913452327251434,-0.406946033239365,-0.574232280254364,0.816923677921295,-0.0537879168987274,-0.905780136585236,0.420318126678467,-0.0538063384592533,-0.133735150098801,0.07726139575243,-0.988000810146332,-0.0781013444066048,0.135406777262688,-0.987707138061523,-0.905780136585236,0.420318126678467,-0.0538063384592533,-0.994593918323517,-0.0888212323188782,-0.0537948757410049,-0.151927977800369,-3.60393969458528e-005,-0.988391578197479,-0.133735150098801,0.07726139575243,-0.988000810146332,-0.994593918323517,-0.0888212323188782,-0.0537948757410049,-0.816951274871826,-0.574190855026245,-0.0538095571100712,-0.129365056753159,-0.074653223156929,-0.98878288269043,-0.151927977800369,-3.60393969458528e-005,-0.988391578197479,-0.816951274871826,-0.574190855026245,-0.0538095571100712,-0.420373857021332,-0.905755043029785,-0.0537936761975288,-0.0736886709928513,-0.127775147557259,-0.989062011241913,-0.129365056753159,-0.074653223156929,-0.98878288269043,-0.420373857021332,-0.905755043029785,-0.0537936761975288,-4.3171996367164e-005,-0.998540580272675,-0.0540072917938232,-4.66982191937859e-006,-0.146814033389091,-0.989164113998413,-0.0736886709928513,-0.127775147557259,-0.989062011241913,
- -4.3171996367164e-005,-0.998540580272675,-0.0540072917938232,0.420357912778854,-0.905762314796448,-0.0537962391972542,0.0737534090876579,-0.127730160951614,-0.989062905311584,-4.66982191937859e-006,-0.146814033389091,-0.989164113998413,0.420357912778854,-0.905762314796448,-0.0537962391972542,0.816889047622681,-0.574282467365265,-0.0537773258984089,0.129300966858864,-0.0747581273317337,-0.988783359527588,0.0737534090876579,-0.127730160951614,-0.989062905311584,0.816889047622681,-0.574282467365265,-0.0537773258984089,0.99458384513855,-0.0889210030436516,-0.053814847022295,0.151876464486122,3.83821934519801e-005,-0.988399565219879,0.129300966858864,-0.0747581273317337,-0.988783359527588,0.99458384513855,-0.0889210030436516,-0.053814847022295,0.905690968036652,0.420514285564423,-0.0537752062082291,0.133719280362129,0.0772844403982162,-0.988001227378845,0.151876464486122,3.83821934519801e-005,-0.988399565219879,0.905690968036652,0.420514285564423,-0.0537752062082291,0.574235558509827,0.816921353340149,-0.053787849843502,0.0781460553407669,0.135372519493103,-0.987708210945129,0.133719280362129,0.0772844403982162,-0.988001227378845,0.574235558509827,0.816921353340149,-0.053787849843502,0.25837367773056,0.964635908603668,-0.0521590188145638,0.0420231632888317,0.156861171126366,-0.9867262840271,0.0781460553407669,0.135372519493103,-0.987708210945129,-0.258437544107437,0.964618742465973,-0.0521614886820316,-0.574232280254364,0.816923677921295,-0.0537879168987274,-0.0781013444066048,0.135406777262688,-0.987707138061523,-0.0420304015278816,0.15686109662056,-0.986725926399231,1.22193819152017e-006,0.056330680847168,-0.998412191867828,-0.0258504040539265,0.0447683967649937,-0.998662948608398,-0.501744985580444,0.714301347732544,-0.487878769636154,8.40928987599909e-006,0.87939989566803,-0.476083874702454,0.0258750654757023,0.0447488054633141,-0.998663127422333,1.22193819152017e-006,0.056330680847168,-0.998412191867828,8.40928987599909e-006,0.87939989566803,-0.476083874702454,0.501768469810486,0.714264392852783,-0.487908661365509,
- 0.0336019918322563,0.0193698201328516,-0.999247670173645,0.0258750654757023,0.0447488054633141,-0.998663127422333,0.501768469810486,0.714264392852783,-0.487908661365509,0.77146714925766,0.358390003442764,-0.525733053684235,0.0206668972969055,-3.55749834852759e-005,-0.99978643655777,0.0336019918322563,0.0193698201328516,-0.999247670173645,0.77146714925766,0.358390003442764,-0.525733053684235,0.808877885341644,-0.0715673491358757,-0.583605051040649,0.00148845219518989,-0.000766371376812458,-0.999998569488525,0.0206668972969055,-3.55749834852759e-005,-0.99978643655777,0.808877885341644,-0.0715673491358757,-0.583605051040649,0.623126924037933,-0.437128067016602,-0.648561477661133,-0.00644794572144747,0.011172316968441,-0.999916791915894,0.00148845219518989,-0.000766371376812458,-0.999998569488525,0.623126924037933,-0.437128067016602,-0.648561477661133,0.301363408565521,-0.648179113864899,-0.699316799640656,-0.00493962643668056,0.0184327308088541,-0.999817907810211,-0.00644794572144747,0.011172316968441,-0.999916791915894,0.301363408565521,-0.648179113864899,-0.699316799640656,0.18306103348732,-0.683177709579468,-0.706934928894043,0.00644491938874125,0.0111682023853064,-0.999916911125183,0.00493913004174829,0.0184327270835638,-0.999817907810211,-0.183061137795448,-0.683178067207336,-0.706934571266174,-0.301334768533707,-0.648215711116791,-0.699295222759247,-0.0014799777418375,-0.00085472414502874,-0.999998569488525,0.00644491938874125,0.0111682023853064,-0.999916911125183,-0.301334768533707,-0.648215711116791,-0.699295222759247,-0.623162746429443,-0.437139302492142,-0.648519396781921,-0.0206883028149605,2.39944783970714e-005,-0.999786019325256,-0.0014799777418375,-0.00085472414502874,-0.999998569488525,-0.623162746429443,-0.437139302492142,-0.648519396781921,-0.808849930763245,-0.0715929195284843,-0.58364063501358,-0.0336385779082775,0.0193811263889074,-0.999246120452881,-0.0206883028149605,2.39944783970714e-005,-0.999786019325256,-0.808849930763245,-0.0715929195284843,-0.58364063501358,-0.771462023258209,0.358400046825409,-0.525733649730682,
- -0.0258504040539265,0.0447683967649937,-0.998662948608398,-0.0336385779082775,0.0193811263889074,-0.999246120452881,-0.771462023258209,0.358400046825409,-0.525733649730682,-0.501744985580444,0.714301347732544,-0.487878769636154,-0.071670338511467,0.154427468776703,-0.985401272773743,-0.13928048312664,0.0979042947292328,-0.985401272773743,-0.038334134966135,0.0222242213785648,-0.999017894268036,-0.0221530459821224,0.0383744277060032,-0.999017834663391,-0.13928048312664,0.0979042947292328,-0.985401272773743,-0.16955378651619,0.0151803409680724,-0.985404014587402,-0.044249914586544,-3.09264542011078e-005,-0.999020516872406,-0.038334134966135,0.0222242213785648,-0.999017894268036,-0.16955378651619,0.0151803409680724,-0.985404014587402,-0.154407992959023,-0.0716930031776428,-0.985402584075928,-0.0383632220327854,-0.0221704188734293,-0.999017953872681,-0.044249914586544,-3.09264542011078e-005,-0.999020516872406,-0.154407992959023,-0.0716930031776428,-0.985402584075928,-0.0978889241814613,-0.139285922050476,-0.98540210723877,-0.0221235062927008,-0.0383840873837471,-0.99901819229126,-0.0383632220327854,-0.0221704188734293,-0.999017953872681,-0.0978889241814613,-0.139285922050476,-0.98540210723877,-0.0151515444740653,-0.169593125581741,-0.985397756099701,-1.59437433921994e-006,-0.0443229526281357,-0.999017298221588,-0.0221235062927008,-0.0383840873837471,-0.99901819229126,-0.0151515444740653,-0.169593125581741,-0.985397756099701,0.0716649666428566,-0.154447421431541,-0.985398530960083,0.0221607368439436,-0.0383853353559971,-0.999017357826233,-1.59437433921994e-006,-0.0443229526281357,-0.999017298221588,0.0716649666428566,-0.154447421431541,-0.985398530960083,0.13930170238018,-0.0978998392820358,-0.985398769378662,0.0383927524089813,-0.0221624616533518,-0.999017000198364,0.0221607368439436,-0.0383853353559971,-0.999017357826233,0.13930170238018,-0.0978998392820358,-0.985398769378662,0.169587403535843,-0.0151508487761021,-0.985398709774017,0.0443328432738781,-3.6525434552459e-005,-0.999016880989075,0.0383927524089813,-0.0221624616533518,-0.999017000198364,
- 0.169587403535843,-0.0151508487761021,-0.985398709774017,0.154449835419655,0.0716720968484879,-0.985397577285767,0.0383760929107666,0.0221967436373234,-0.999016880989075,0.0443328432738781,-3.6525434552459e-005,-0.999016880989075,0.154449835419655,0.0716720968484879,-0.985397577285767,0.0979095324873924,0.1393021941185,-0.985397696495056,0.0221651941537857,0.0383896566927433,-0.999017000198364,0.0383760929107666,0.0221967436373234,-0.999016880989075,0.0979095324873924,0.1393021941185,-0.985397696495056,0.0453971289098263,0.16943770647049,-0.984494805335999,0.0118741132318974,0.0443225763738155,-0.998946785926819,0.0221651941537857,0.0383896566927433,-0.999017000198364,-0.0454017110168934,0.169437676668167,-0.984494626522064,-0.071670338511467,0.154427468776703,-0.985401272773743,-0.0221530459821224,0.0383744277060032,-0.999017834663391,-0.0118773095309734,0.0443226099014282,-0.998946666717529,-1.59437433921994e-006,-0.0443229526281357,-0.999017298221588,0.0221607368439436,-0.0383853353559971,-0.999017357826233,-0.403097718954086,0.57343453168869,-0.713221669197083,-0.0623430870473385,0.698155641555786,-0.713226556777954,-0.0221235062927008,-0.0383840873837471,-0.99901819229126,-1.59437433921994e-006,-0.0443229526281357,-0.999017298221588,-0.0623430870473385,0.698155641555786,-0.713226556777954,0.295119017362595,0.635716021060944,-0.713281154632568,-0.0383632220327854,-0.0221704188734293,-0.999017953872681,-0.0221235062927008,-0.0383840873837471,-0.99901819229126,0.295119017362595,0.635716021060944,-0.713281154632568,0.573443174362183,0.403082311153412,-0.713223397731781,-0.044249914586544,-3.09264542011078e-005,-0.999020516872406,-0.0383632220327854,-0.0221704188734293,-0.999017953872681,0.573443174362183,0.403082311153412,-0.713223397731781,0.698204278945923,0.0622746795415878,-0.713184893131256,-0.038334134966135,0.0222242213785648,-0.999017894268036,-0.044249914586544,-3.09264542011078e-005,-0.999020516872406,0.698204278945923,0.0622746795415878,-0.713184893131256,0.635864555835724,-0.294962793588638,-0.713213324546814,
- -0.0221530459821224,0.0383744277060032,-0.999017834663391,-0.038334134966135,0.0222242213785648,-0.999017894268036,0.635864555835724,-0.294962793588638,-0.713213324546814,0.403062522411346,-0.573379635810852,-0.713285684585571,-0.0118773095309734,0.0443226099014282,-0.998946666717529,-0.0221530459821224,0.0383744277060032,-0.999017834663391,0.403062522411346,-0.573379635810852,-0.713285684585571,0.184235706925392,-0.687526106834412,-0.702399492263794,0.0221651941537857,0.0383896566927433,-0.999017000198364,0.0118741132318974,0.0443225763738155,-0.998946785926819,-0.184192731976509,-0.687531888484955,-0.702405154705048,-0.295070588588715,-0.635801613330841,-0.7132248878479,0.0383760929107666,0.0221967436373234,-0.999016880989075,0.0221651941537857,0.0383896566927433,-0.999017000198364,-0.295070588588715,-0.635801613330841,-0.7132248878479,-0.573370635509491,-0.403016835451126,-0.713318705558777,0.0443328432738781,-3.6525434552459e-005,-0.999016880989075,0.0383760929107666,0.0221967436373234,-0.999016880989075,-0.573370635509491,-0.403016835451126,-0.713318705558777,-0.698020040988922,-0.0623558089137077,-0.713358104228973,0.0383927524089813,-0.0221624616533518,-0.999017000198364,0.0443328432738781,-3.6525434552459e-005,-0.999016880989075,-0.698020040988922,-0.0623558089137077,-0.713358104228973,-0.635700821876526,0.295053094625473,-0.713321924209595,0.0221607368439436,-0.0383853353559971,-0.999017357826233,0.0383927524089813,-0.0221624616533518,-0.999017000198364,-0.635700821876526,0.295053094625473,-0.713321924209595,-0.403097718954086,0.57343453168869,-0.713221669197083,-0.0560509860515594,0.120886027812958,-0.991082727909088,-0.112619392573833,0.0791447311639786,-0.99048125743866,-0.00783858727663755,0.00458284141495824,-0.99995881319046,-0.00248964340426028,0.00437603099271655,-0.999987363815308,-0.112619392573833,0.0791447311639786,-0.99048125743866,-0.143081724643707,0.0128079745918512,-0.989628076553345,-0.014534548856318,1.91666913451627e-006,-0.999894380569458,-0.00783858727663755,0.00458284141495824,-0.99995881319046,
- -0.143081724643707,0.0128079745918512,-0.989628076553345,-0.135680317878723,-0.0630295053124428,-0.988745748996735,-0.0173153225332499,-0.0100505985319614,-0.999799609184265,-0.014534548856318,1.91666913451627e-006,-0.999894380569458,-0.135680317878723,-0.0630295053124428,-0.988745748996735,-0.0884733349084854,-0.125997677445412,-0.988077461719513,-0.0119685539975762,-0.0207911767065525,-0.999712228775024,-0.0173153225332499,-0.0100505985319614,-0.999799609184265,-0.0884733349084854,-0.125997677445412,-0.988077461719513,-4.95129643240944e-006,-0.154978021979332,-0.987918019294739,-0.0013649839675054,-0.0254556089639664,-0.999675035476685,-0.0119685539975762,-0.0207911767065525,-0.999712228775024,-4.95129643240944e-006,-0.154978021979332,-0.987918019294739,0.0885361954569817,-0.125956103205681,-0.988077104091644,0.0101446798071265,-0.0218540579080582,-0.999709784984589,-0.0013649839675054,-0.0254556089639664,-0.999675035476685,0.0885361954569817,-0.125956103205681,-0.988077104091644,0.135577708482742,-0.0630858391523361,-0.98875629901886,0.0164000913500786,-0.0115844886749983,-0.999798476696014,0.0101446798071265,-0.0218540579080582,-0.999709784984589,0.135577708482742,-0.0630858391523361,-0.98875629901886,0.143004208803177,0.0128148170188069,-0.989639163017273,0.0145338606089354,-0.00136057718191296,-0.999893486499786,0.0164000913500786,-0.0115844886749983,-0.999798476696014,0.143004208803177,0.0128148170188069,-0.989639163017273,0.112535409629345,0.0791641771793365,-0.99048924446106,0.00819073151797056,0.00392570346593857,-0.999958753585815,0.0145338606089354,-0.00136057718191296,-0.999893486499786,0.112535409629345,0.0791641771793365,-0.99048924446106,0.0560995154082775,0.120856963098049,-0.991083562374115,0.00291338935494423,0.00414464436471462,-0.999987244606018,0.00819073151797056,0.00392570346593857,-0.999958753585815,0.0560995154082775,0.120856963098049,-0.991083562374115,0.035112302750349,0.131062865257263,-0.990752160549164,0.000957536220084876,0.00357409217394888,-0.999993205070496,0.00291338935494423,0.00414464436471462,-0.999987244606018,
- -0.0351189002394676,0.131062805652618,-0.990751922130585,-0.0560509860515594,0.120886027812958,-0.991082727909088,-0.00248964340426028,0.00437603099271655,-0.999987363815308,-0.000957845652010292,0.00357409450225532,-0.999993205070496,-0.0013649839675054,-0.0254556089639664,-0.999675035476685,0.0101446798071265,-0.0218540579080582,-0.999709784984589,-0.456012696027756,0.648665368556976,-0.609332203865051,-0.0705161765217781,0.789783656597137,-0.609318792819977,-0.0119685539975762,-0.0207911767065525,-0.999712228775024,-0.0013649839675054,-0.0254556089639664,-0.999675035476685,-0.0705161765217781,0.789783656597137,-0.609318792819977,0.333839416503906,0.719177067279816,-0.609373092651367,-0.0173153225332499,-0.0100505985319614,-0.999799609184265,-0.0119685539975762,-0.0207911767065525,-0.999712228775024,0.333839416503906,0.719177067279816,-0.609373092651367,0.648718118667603,0.45599040389061,-0.60929274559021,-0.014534548856318,1.91666913451627e-006,-0.999894380569458,-0.0173153225332499,-0.0100505985319614,-0.999799609184265,0.648718118667603,0.45599040389061,-0.60929274559021,0.789881885051727,0.0705170407891274,-0.609191358089447,-0.00783858727663755,0.00458284141495824,-0.99995881319046,-0.014534548856318,1.91666913451627e-006,-0.999894380569458,0.789881885051727,0.0705170407891274,-0.609191358089447,0.71930593252182,-0.333738535642624,-0.609276354312897,-0.00248964340426028,0.00437603099271655,-0.999987363815308,-0.00783858727663755,0.00458284141495824,-0.99995881319046,0.71930593252182,-0.333738535642624,-0.609276354312897,0.455959498882294,-0.64866179227829,-0.609375834465027,-0.000957845652010292,0.00357409450225532,-0.999993205070496,-0.00248964340426028,0.00437603099271655,-0.999987363815308,0.455959498882294,-0.64866179227829,-0.609375834465027,0.207541555166245,-0.774516701698303,-0.597536861896515,0.00291338935494423,0.00414464436471462,-0.999987244606018,0.000957536220084876,0.00357409217394888,-0.999993205070496,-0.207463443279266,-0.774530172348022,-0.597546696662903,-0.333797186613083,-0.719234168529511,-0.609328866004944,
- 0.00819073151797056,0.00392570346593857,-0.999958753585815,0.00291338935494423,0.00414464436471462,-0.999987244606018,-0.333797186613083,-0.719234168529511,-0.609328866004944,-0.648646533489227,-0.455909430980682,-0.609429597854614,0.0145338606089354,-0.00136057718191296,-0.999893486499786,0.00819073151797056,0.00392570346593857,-0.999958753585815,-0.648646533489227,-0.455909430980682,-0.609429597854614,-0.78973513841629,-0.0705762431025505,-0.609374642372131,0.0164000913500786,-0.0115844886749983,-0.999798476696014,0.0145338606089354,-0.00136057718191296,-0.999893486499786,-0.78973513841629,-0.0705762431025505,-0.609374642372131,-0.719143807888031,0.333819687366486,-0.609423279762268,0.0101446798071265,-0.0218540579080582,-0.999709784984589,0.0164000913500786,-0.0115844886749983,-0.999798476696014,-0.719143807888031,0.333819687366486,-0.609423279762268,-0.456012696027756,0.648665368556976,-0.609332203865051,-0.0410757139325142,0.0886462107300758,-0.995215892791748,-0.0799382403492928,0.056189201772213,-0.995214939117432,0.0145189212635159,-0.00831884332001209,-0.999860048294067,0.00840845704078674,-0.0145019041374326,-0.999859511852264,-0.0799382403492928,0.056189201772213,-0.995214939117432,-0.0973216444253922,0.00873530935496092,-0.995214700698853,0.0167721435427666,-3.50118375536113e-006,-0.999859392642975,0.0145189212635159,-0.00831884332001209,-0.999860048294067,-0.0973216444253922,0.00873530935496092,-0.995214700698853,-0.0886073410511017,-0.0411649532616138,-0.995215654373169,0.0145152676850557,0.00832446664571762,-0.999860048294067,0.0167721435427666,-3.50118375536113e-006,-0.999859392642975,-0.0886073410511017,-0.0411649532616138,-0.995215654373169,-0.056122150272131,-0.0799557268619537,-0.995217323303223,0.00841085705906153,0.0144996680319309,-0.999859511852264,0.0145152676850557,0.00832446664571762,-0.999860048294067,-0.056122150272131,-0.0799557268619537,-0.995217323303223,-0.00869498960673809,-0.0973057597875595,-0.995216548442841,6.09038352195057e-007,0.0167528688907623,-0.999859690666199,0.00841085705906153,0.0144996680319309,-0.999859511852264,
- -0.00869498960673809,-0.0973057597875595,-0.995216548442841,0.0411275066435337,-0.0886161774396896,-0.995216488838196,-0.00838109105825424,0.0145155005156994,-0.999859631061554,6.09038352195057e-007,0.0167528688907623,-0.999859690666199,0.0411275066435337,-0.0886161774396896,-0.995216488838196,0.0798802152276039,-0.0562309846282005,-0.995217263698578,-0.0145454406738281,0.00836288370192051,-0.99985933303833,-0.00838109105825424,0.0145155005156994,-0.999859631061554,0.0798802152276039,-0.0562309846282005,-0.995217263698578,0.0972917005419731,-0.00869204010814428,-0.995217978954315,-0.0167753770947456,-3.80028063773352e-006,-0.99985933303833,-0.0145454406738281,0.00836288370192051,-0.99985933303833,0.0972917005419731,-0.00869204010814428,-0.995217978954315,0.0885719284415245,0.0411834307014942,-0.995218098163605,-0.0145475501194596,-0.00835888460278511,-0.99985933303833,-0.0167753770947456,-3.80028063773352e-006,-0.99985933303833,0.0885719284415245,0.0411834307014942,-0.995218098163605,0.0561851747334003,0.0799278020858765,-0.995216012001038,-0.00838030502200127,-0.0145161282271147,-0.999859511852264,-0.0145475501194596,-0.00835888460278511,-0.99985933303833,0.0561851747334003,0.0799278020858765,-0.995216012001038,0.026058204472065,0.0972759872674942,-0.994916319847107,-0.00448994711041451,-0.0167585462331772,-0.999849557876587,-0.00838030502200127,-0.0145161282271147,-0.999859511852264,-0.0260609723627567,0.0972759649157524,-0.994916260242462,-0.0410757139325142,0.0886462107300758,-0.995215892791748,0.00840845704078674,-0.0145019041374326,-0.999859511852264,0.00449059205129743,-0.0167585574090481,-0.999849557876587,6.09038352195057e-007,0.0167528688907623,-0.999859690666199,-0.00838109105825424,0.0145155005156994,-0.999859631061554,-0.465781986713409,0.662665605545044,-0.58644825220108,-0.0720545202493668,0.806761205196381,-0.586467802524567,0.00841085705906153,0.0144996680319309,-0.999859511852264,6.09038352195057e-007,0.0167528688907623,-0.999859690666199,-0.0720545202493668,0.806761205196381,-0.586467802524567,0.341018378734589,0.734630167484283,-0.586536526679993,
- 0.0145152676850557,0.00832446664571762,-0.999860048294067,0.00841085705906153,0.0144996680319309,-0.999859511852264,0.341018378734589,0.734630167484283,-0.586536526679993,0.662600696086884,0.465803235769272,-0.586504638195038,0.0167721435427666,-3.50118375536113e-006,-0.999859392642975,0.0145152676850557,0.00832446664571762,-0.999860048294067,0.662600696086884,0.465803235769272,-0.586504638195038,0.806756019592285,0.0719670206308365,-0.586485683917999,0.0145189212635159,-0.00831884332001209,-0.999860048294067,0.0167721435427666,-3.50118375536113e-006,-0.999859392642975,0.806756019592285,0.0719670206308365,-0.586485683917999,0.734733760356903,-0.340890467166901,-0.586481034755707,0.00840845704078674,-0.0145019041374326,-0.999859511852264,0.0145189212635159,-0.00831884332001209,-0.999860048294067,0.734733760356903,-0.340890467166901,-0.586481034755707,0.465768128633499,-0.662612557411194,-0.586519062519073,0.00449059205129743,-0.0167585574090481,-0.999849557876587,0.00840845704078674,-0.0145019041374326,-0.999859511852264,0.465768128633499,-0.662612557411194,-0.586519062519073,0.211834594607353,-0.790515124797821,-0.57464063167572,-0.00838030502200127,-0.0145161282271147,-0.999859511852264,-0.00448994711041451,-0.0167585462331772,-0.999849557876587,-0.211824715137482,-0.79051685333252,-0.574641883373261,-0.340953946113586,-0.73474395275116,-0.586431324481964,-0.0145475501194596,-0.00835888460278511,-0.99985933303833,-0.00838030502200127,-0.0145161282271147,-0.999859511852264,-0.340953946113586,-0.73474395275116,-0.586431324481964,-0.662639141082764,-0.465763002634048,-0.586493194103241,-0.0167753770947456,-3.80028063773352e-006,-0.99985933303833,-0.0145475501194596,-0.00835888460278511,-0.99985933303833,-0.662639141082764,-0.465763002634048,-0.586493194103241,-0.806715369224548,-0.0720676109194756,-0.58652937412262,-0.0145454406738281,0.00836288370192051,-0.99985933303833,-0.0167753770947456,-3.80028063773352e-006,-0.99985933303833,-0.806715369224548,-0.0720676109194756,-0.58652937412262,-0.734673678874969,0.34098356962204,-0.586502313613892,
- -0.00838109105825424,0.0145155005156994,-0.999859631061554,-0.0145454406738281,0.00836288370192051,-0.99985933303833,-0.734673678874969,0.34098356962204,-0.586502313613892,-0.465781986713409,0.662665605545044,-0.58644825220108,-0.0495093837380409,0.106731377542019,-0.993054509162903,-0.154838085174561,0.0179697442799807,-0.987776517868042,-0.0624619200825691,-0.0676589459180832,-0.99575138092041,0.00121263496112078,-0.00203324481844902,-0.999997198581696,-0.154838085174561,0.0179697442799807,-0.987776517868042,-0.176637396216393,-0.174809545278549,-0.968628406524658,-0.0505623444914818,-0.154628098011017,-0.986678063869476,-0.0624619200825691,-0.0676589459180832,-0.99575138092041,-0.176637396216393,-0.174809545278549,-0.968628406524658,-0.109181515872478,-0.232806473970413,-0.96637499332428,-0.00296846823766828,-0.158888816833496,-0.987292051315308,-0.0505623444914818,-0.154628098011017,-0.986678063869476,-0.109181515872478,-0.232806473970413,-0.96637499332428,-0.0446301400661469,-0.247236549854279,-0.967926800251007,0.00256275781430304,-0.12371763586998,-0.992314159870148,-0.00296846823766828,-0.158888816833496,-0.987292051315308,-0.0446301400661469,-0.247236549854279,-0.967926800251007,-5.04324316352722e-006,-0.24591027200222,-0.969292640686035,-0.00614112243056297,-0.114521875977516,-0.993401765823364,0.00256275781430304,-0.12371763586998,-0.992314159870148,-5.04324316352722e-006,-0.24591027200222,-0.969292640686035,0.136581212282181,-0.194450825452805,-0.971356987953186,0.0449947789311409,-0.0968654677271843,-0.99427992105484,-0.00614112243056297,-0.114521875977516,-0.993401765823364,0.136581212282181,-0.194450825452805,-0.971356987953186,0.19267050921917,-0.0896480083465576,-0.977159917354584,0.0690164566040039,-0.0484532862901688,-0.996438205242157,0.0449947789311409,-0.0968654677271843,-0.99427992105484,0.19267050921917,-0.0896480083465576,-0.977159917354584,0.17725020647049,0.0157095361500978,-0.984040498733521,0.0528698973357677,-0.00475477520376444,-0.998590111732483,0.0690164566040039,-0.0484532862901688,-0.996438205242157,
- 0.17725020647049,0.0157095361500978,-0.984040498733521,0.117143519222736,0.0823222696781158,-0.989697217941284,0.0192487481981516,0.00902079697698355,-0.999774038791656,0.0528698973357677,-0.00475477520376444,-0.998590111732483,0.117143519222736,0.0823222696781158,-0.989697217941284,0.0495680421590805,0.10671629011631,-0.993053197860718,-0.0013544101966545,-0.00192826415877789,-0.999997317790985,0.0192487481981516,0.00902079697698355,-0.999774038791656,0.0495680421590805,0.10671629011631,-0.993053197860718,0.0289081130176783,0.107883304357529,-0.993743240833282,-0.00295710493810475,-0.0110374372452497,-0.999934792518616,-0.0013544101966545,-0.00192826415877789,-0.999997317790985,-0.0289081130176783,0.107883304357529,-0.993743240833282,-0.0495093837380409,0.106731377542019,-0.993054509162903,0.00121263496112078,-0.00203324481844902,-0.999997198581696,0.0029577559325844,-0.0110374446958303,-0.999934732913971,-0.00614112243056297,-0.114521875977516,-0.993401765823364,0.0449947789311409,-0.0968654677271843,-0.99427992105484,-0.403093576431274,0.573428273200989,-0.713229060173035,-0.0623325034976006,0.698134422302246,-0.713248312473297,0.00256275781430304,-0.12371763586998,-0.992314159870148,-0.00614112243056297,-0.114521875977516,-0.993401765823364,-0.0623325034976006,0.698134422302246,-0.713248312473297,0.349981307983398,0.605595409870148,-0.714679837226868,-0.00296846823766828,-0.158888816833496,-0.987292051315308,0.00256275781430304,-0.12371763586998,-0.992314159870148,0.349981307983398,0.605595409870148,-0.714679837226868,0.662386417388916,0.241269201040268,-0.709248542785645,-0.0505623444914818,-0.154628098011017,-0.986678063869476,-0.00296846823766828,-0.158888816833496,-0.987292051315308,0.662386417388916,0.241269201040268,-0.709248542785645,0.692995131015778,-0.136716216802597,-0.70786052942276,-0.0624619200825691,-0.0676589459180832,-0.99575138092041,-0.0505623444914818,-0.154628098011017,-0.986678063869476,0.692995131015778,-0.136716216802597,-0.70786052942276,0.559547662734985,-0.424472510814667,-0.711849331855774,
- 0.00121263496112078,-0.00203324481844902,-0.999997198581696,-0.0624619200825691,-0.0676589459180832,-0.99575138092041,0.559547662734985,-0.424472510814667,-0.711849331855774,0.403063505887985,-0.573380947113037,-0.713284015655518,0.0029577559325844,-0.0110374446958303,-0.999934732913971,0.00121263496112078,-0.00203324481844902,-0.999997198581696,0.403063505887985,-0.573380947113037,-0.713284015655518,0.184234887361526,-0.687522947788239,-0.702402830123901,-0.0013544101966545,-0.00192826415877789,-0.999997317790985,-0.00295710493810475,-0.0110374372452497,-0.999934792518616,-0.184191927313805,-0.687528908252716,-0.702408254146576,-0.295068740844727,-0.635797560214996,-0.713229298591614,0.0192487481981516,0.00902079697698355,-0.999774038791656,-0.0013544101966545,-0.00192826415877789,-0.999997317790985,-0.295068740844727,-0.635797560214996,-0.713229298591614,-0.573369562625885,-0.403016060590744,-0.713319957256317,0.0528698973357677,-0.00475477520376444,-0.998590111732483,0.0192487481981516,0.00902079697698355,-0.999774038791656,-0.573369562625885,-0.403016060590744,-0.713319957256317,-0.698019802570343,-0.0623557865619659,-0.713358402252197,0.0690164566040039,-0.0484532862901688,-0.996438205242157,0.0528698973357677,-0.00475477520376444,-0.998590111732483,-0.698019802570343,-0.0623557865619659,-0.713358402252197,-0.635700523853302,0.295052915811539,-0.713322341442108,0.0449947789311409,-0.0968654677271843,-0.99427992105484,0.0690164566040039,-0.0484532862901688,-0.996438205242157,-0.635700523853302,0.295052915811539,-0.713322341442108,-0.403093576431274,0.573428273200989,-0.713229060173035,-0.0698256716132164,0.0994772464036942,-0.992586851119995,-0.102614596486092,0.0476794466376305,-0.993577897548676,-0.031016556546092,0.0219197124242783,-0.999278545379639,-0.019279345870018,0.041534710675478,-0.998951137065887,-0.102614596486092,0.0476794466376305,-0.993577897548676,-0.101290971040726,-0.00905842427164316,-0.994815587997437,-0.0270712357014418,0.00235049612820148,-0.999630808830261,-0.031016556546092,0.0219197124242783,-0.999278545379639,
- -0.101290971040726,-0.00905842427164316,-0.994815587997437,-0.0738522484898567,-0.0518913567066193,-0.995918273925781,-0.0148955499753356,-0.00690053636208177,-0.999865293502808,-0.0270712357014418,0.00235049612820148,-0.999630808830261,-0.0738522484898567,-0.0518913567066193,-0.995918273925781,-0.0344300270080566,-0.0743024796247482,-0.996641278266907,-0.00480664987117052,-0.00694505777209997,-0.999964356422424,-0.0148955499753356,-0.00690053636208177,-0.999865293502808,-0.0344300270080566,-0.0743024796247482,-0.996641278266907,-1.98027714759519e-006,-0.0785288885235786,-0.996911823749542,-0.000211398670217022,-0.00551935564726591,-0.999984741210938,-0.00480664987117052,-0.00694505777209997,-0.999964356422424,-1.98027714759519e-006,-0.0785288885235786,-0.996911823749542,0.0344810001552105,-0.0742723345756531,-0.996641755104065,0.0042086006142199,-0.00729109719395638,-0.999964594841003,-0.000211398670217022,-0.00551935564726591,-0.999984741210938,0.0344810001552105,-0.0742723345756531,-0.996641755104065,0.0737910270690918,-0.0519265383481979,-0.995921015739441,0.0141096599400043,-0.00818686932325363,-0.999866962432861,0.0042086006142199,-0.00729109719395638,-0.999964594841003,0.0737910270690918,-0.0519265383481979,-0.995921015739441,0.101260356605053,-0.00902300141751766,-0.994819104671478,0.0270758327096701,-5.14397152073798e-006,-0.999633431434631,0.0141096599400043,-0.00818686932325363,-0.999866962432861,0.101260356605053,-0.00902300141751766,-0.994819104671478,0.102564617991447,0.0477056354284287,-0.993581771850586,0.0327181592583656,0.0189149752259254,-0.999285638332367,0.0270758327096701,-5.14397152073798e-006,-0.999633431434631,0.102564617991447,0.0477056354284287,-0.993581771850586,0.0698879733681679,0.0994399711489677,-0.992586195468903,0.0228158440440893,0.0395019687712193,-0.998959004878998,0.0327181592583656,0.0189149752259254,-0.999285638332367,0.0698879733681679,0.0994399711489677,-0.992586195468903,0.0332412458956242,0.124078653752804,-0.991715550422668,0.0129837971180677,0.0484640523791313,-0.998740553855896,
- 0.0228158440440893,0.0395019687712193,-0.998959004878998,-0.0332490466535091,0.124078579246998,-0.9917151927948,-0.0698256716132164,0.0994772464036942,-0.992586851119995,-0.019279345870018,0.041534710675478,-0.998951137065887,-0.0129874302074313,0.0484640821814537,-0.998740494251251,-0.000211398670217022,-0.00551935564726591,-0.999984741210938,0.0042086006142199,-0.00729109719395638,-0.999964594841003,-0.432657092809677,0.615426540374756,-0.658830881118774,-0.0669214949011803,0.749290883541107,-0.658851087093353,-0.00480664987117052,-0.00694505777209997,-0.999964356422424,-0.000211398670217022,-0.00551935564726591,-0.999984741210938,-0.0669214949011803,0.749290883541107,-0.658851087093353,0.316730707883835,0.682272732257843,-0.65892767906189,-0.0148955499753356,-0.00690053636208177,-0.999865293502808,-0.00480664987117052,-0.00694505777209997,-0.999964356422424,0.316730707883835,0.682272732257843,-0.65892767906189,0.615406334400177,0.432584285736084,-0.658897459506989,-0.0270712357014418,0.00235049612820148,-0.999630808830261,-0.0148955499753356,-0.00690053636208177,-0.999865293502808,0.615406334400177,0.432584285736084,-0.658897459506989,0.749270141124725,0.0668071880936623,-0.658886253833771,-0.031016556546092,0.0219197124242783,-0.999278545379639,-0.0270712357014418,0.00235049612820148,-0.999630808830261,0.749270141124725,0.0668071880936623,-0.658886253833771,0.682392179965973,-0.316528677940369,-0.658901035785675,-0.019279345870018,0.041534710675478,-0.998951137065887,-0.031016556546092,0.0219197124242783,-0.999278545379639,0.682392179965973,-0.316528677940369,-0.658901035785675,0.432574480772018,-0.615365087985992,-0.658942401409149,-0.0129874302074313,0.0484640821814537,-0.998740494251251,-0.019279345870018,0.041534710675478,-0.998951137065887,0.432574480772018,-0.615365087985992,-0.658942401409149,0.197259619832039,-0.736197412014008,-0.647380948066711,0.0228158440440893,0.0395019687712193,-0.998959004878998,0.0129837971180677,0.0484640523791313,-0.998740553855896,-0.1972336769104,-0.736201226711273,-0.647384464740753,
- -0.316703915596008,-0.682363152503967,-0.658846914768219,0.0327181592583656,0.0189149752259254,-0.999285638332367,0.0228158440440893,0.0395019687712193,-0.998959004878998,-0.316703915596008,-0.682363152503967,-0.658846914768219,-0.615385293960571,-0.432527840137482,-0.658954262733459,0.0270758327096701,-5.14397152073798e-006,-0.999633431434631,0.0327181592583656,0.0189149752259254,-0.999285638332367,-0.615385293960571,-0.432527840137482,-0.658954262733459,-0.749177396297455,-0.0669345408678055,-0.658978819847107,0.0141096599400043,-0.00818686932325363,-0.999866962432861,0.0270758327096701,-5.14397152073798e-006,-0.999633431434631,-0.749177396297455,-0.0669345408678055,-0.658978819847107,-0.682282447814941,0.316672950983047,-0.658945322036743,0.0042086006142199,-0.00729109719395638,-0.999964594841003,0.0141096599400043,-0.00818686932325363,-0.999866962432861,-0.682282447814941,0.316672950983047,-0.658945322036743,-0.432657092809677,0.615426540374756,-0.658830881118774,-0.0456632673740387,0.0986324399709702,-0.99407571554184,-0.0889581292867661,0.0624679028987885,-0.994074583053589,0.0239337533712387,-0.0138145992532372,-0.999618113040924,0.0138684622943401,-0.0239620935171843,-0.999616742134094,-0.0889581292867661,0.0624679028987885,-0.994074583053589,-0.108291186392307,0.00971447210758924,-0.994071781635284,0.0276777315884829,-1.82877283805283e-006,-0.999616980552673,0.0239337533712387,-0.0138145992532372,-0.999618113040924,-0.108291186392307,0.00971447210758924,-0.994071781635284,-0.0985885560512543,-0.045794852077961,-0.994074046611786,0.0239314939826727,0.0138171119615436,-0.999618172645569,0.0276777315884829,-1.82877283805283e-006,-0.999616980552673,-0.0985885560512543,-0.045794852077961,-0.994074046611786,-0.0624965950846672,-0.088924840092659,-0.994075775146484,0.0138683691620827,0.0239595249295235,-0.999616801738739,0.0239314939826727,0.0138171119615436,-0.999618172645569,-0.0624965950846672,-0.088924840092659,-0.994075775146484,-0.00962079968303442,-0.108272723853588,-0.994074761867523,5.21736983500887e-005,0.0276435110718012,-0.99961793422699,
- 0.0138683691620827,0.0239595249295235,-0.999616801738739,-0.00962079968303442,-0.108272723853588,-0.994074761867523,0.0457733385264874,-0.0986219048500061,-0.99407172203064,-0.0138210123404861,0.0239369831979275,-0.99961793422699,5.21736983500887e-005,0.0276435110718012,-0.99961793422699,0.0457733385264874,-0.0986219048500061,-0.99407172203064,0.0889210551977158,-0.062578096985817,-0.994070947170258,-0.0239331033080816,0.0137852346524596,-0.999618530273438,-0.0138210123404861,0.0239369831979275,-0.99961793422699,0.0889210551977158,-0.062578096985817,-0.994070947170258,0.108304291963577,-0.00967590883374214,-0.994070768356323,-0.027603829279542,-2.35770835388394e-006,-0.999618947505951,-0.0239331033080816,0.0137852346524596,-0.999618530273438,0.108304291963577,-0.00967590883374214,-0.994070768356323,0.0985904410481453,0.0458290912210941,-0.994072258472443,-0.0239323489367962,-0.0137818763032556,-0.999618649482727,-0.027603829279542,-2.35770835388394e-006,-0.999618947505951,0.0985904410481453,0.0458290912210941,-0.994072258472443,0.0625265687704086,0.0889425203204155,-0.994072318077087,-0.013819981366396,-0.0239358358085155,-0.999618053436279,-0.0239323489367962,-0.0137818763032556,-0.999618649482727,0.0625265687704086,0.0889425203204155,-0.994072318077087,0.0289956200867891,0.108223550021648,-0.993703722953796,-0.00740566616877913,-0.027638915926218,-0.999590575695038,-0.013819981366396,-0.0239358358085155,-0.999618053436279,-0.028993746265769,0.10822306573391,-0.993703782558441,-0.0456632673740387,0.0986324399709702,-0.99407571554184,0.0138684622943401,-0.0239620935171843,-0.999616742134094,0.00750916730612516,-0.0276387762278318,-0.999589800834656,5.21736983500887e-005,0.0276435110718012,-0.99961793422699,-0.0138210123404861,0.0239369831979275,-0.99961793422699,-0.403156667947769,0.57350742816925,-0.713129758834839,-0.0623437985777855,0.698277235031128,-0.713107466697693,0.0138683691620827,0.0239595249295235,-0.999616801738739,5.21736983500887e-005,0.0276435110718012,-0.99961793422699,-0.0623437985777855,0.698277235031128,-0.713107466697693,
- 0.295214802026749,0.635858952999115,-0.713114023208618,0.0239314939826727,0.0138171119615436,-0.999618172645569,0.0138683691620827,0.0239595249295235,-0.999616801738739,0.295214802026749,0.635858952999115,-0.713114023208618,0.573522627353668,0.403175711631775,-0.7131068110466,0.0276777315884829,-1.82877283805283e-006,-0.999616980552673,0.0239314939826727,0.0138171119615436,-0.999618172645569,0.573522627353668,0.403175711631775,-0.7131068110466,0.698279917240143,0.0622786432504654,-0.713110506534576,0.0239337533712387,-0.0138145992532372,-0.999618113040924,0.0276777315884829,-1.82877283805283e-006,-0.999616980552673,0.698279917240143,0.0622786432504654,-0.713110506534576,0.635954856872559,-0.295011758804321,-0.713112652301788,0.0138684622943401,-0.0239620935171843,-0.999616742134094,0.0239337533712387,-0.0138145992532372,-0.999618113040924,0.635954856872559,-0.295011758804321,-0.713112652301788,0.403126537799835,-0.573515236377716,-0.713140428066254,0.00750916730612516,-0.0276387762278318,-0.999589800834656,0.0138684622943401,-0.0239620935171843,-0.999616742134094,0.403126537799835,-0.573515236377716,-0.713140428066254,0.184345483779907,-0.687624454498291,-0.70227438211441,-0.013819981366396,-0.0239358358085155,-0.999618053436279,-0.00740566616877913,-0.027638915926218,-0.999590575695038,-0.184250101447105,-0.687625169754028,-0.702298700809479,-0.29511746764183,-0.63585764169693,-0.713155508041382,-0.0239323489367962,-0.0137818763032556,-0.999618649482727,-0.013819981366396,-0.0239358358085155,-0.999618053436279,-0.29511746764183,-0.63585764169693,-0.713155508041382,-0.573426127433777,-0.403058886528015,-0.713250279426575,-0.027603829279542,-2.35770835388394e-006,-0.999618947505951,-0.0239323489367962,-0.0137818763032556,-0.999618649482727,-0.573426127433777,-0.403058886528015,-0.713250279426575,-0.698093056678772,-0.0623675547540188,-0.713285684585571,-0.0239331033080816,0.0137852346524596,-0.999618530273438,-0.027603829279542,-2.35770835388394e-006,-0.999618947505951,-0.698093056678772,-0.0623675547540188,-0.713285684585571,
- -0.635774910449982,0.295087605714798,-0.713241696357727,-0.0138210123404861,0.0239369831979275,-0.99961793422699,-0.0239331033080816,0.0137852346524596,-0.999618530273438,-0.635774910449982,0.295087605714798,-0.713241696357727,-0.403156667947769,0.57350742816925,-0.713129758834839,-0.0361095704138279,0.0780635476112366,-0.996294260025024,-0.0703956708312035,0.0494206696748734,-0.99629420042038,-0.00714504392817616,0.00412473501637578,-0.999965965747833,-0.00408207811415195,0.00713377213105559,-0.999966263771057,-0.0703956708312035,0.0494206696748734,-0.99629420042038,-0.085673876106739,0.00769600179046392,-0.996293604373932,-0.00821194238960743,-4.60181794892378e-008,-0.999966382980347,-0.00714504392817616,0.00412473501637578,-0.999965965747833,-0.085673876106739,0.00769600179046392,-0.996293604373932,-0.0779995247721672,-0.0362435318529606,-0.996294438838959,-0.0071427277289331,-0.00412343023344874,-0.999966025352478,-0.00821194238960743,-4.60181794892378e-008,-0.999966382980347,-0.0779995247721672,-0.0362435318529606,-0.996294438838959,-0.0494418442249298,-0.0703631341457367,-0.99629545211792,-0.0040793321095407,-0.00712880538776517,-0.999966323375702,-0.0071427277289331,-0.00412343023344874,-0.999966025352478,-0.0494418442249298,-0.0703631341457367,-0.99629545211792,-0.00760319828987122,-0.0856585577130318,-0.996295630931854,-2.80437774335951e-007,-0.00824197940528393,-0.999966025352478,-0.0040793321095407,-0.00712880538776517,-0.999966323375702,-0.00760319828987122,-0.0856585577130318,-0.996295630931854,0.0361603200435638,-0.0780342370271683,-0.996294736862183,0.00410958472639322,-0.00711765140295029,-0.999966323375702,-2.80437774335951e-007,-0.00824197940528393,-0.999966025352478,0.0361603200435638,-0.0780342370271683,-0.996294736862183,0.0703409463167191,-0.0494629368185997,-0.996295928955078,0.00713899312540889,-0.00409917812794447,-0.999966144561768,0.00410958472639322,-0.00711765140295029,-0.999966323375702,0.0703409463167191,-0.0494629368185997,-0.996295928955078,0.0856476649641991,-0.00765175931155682,-0.996296167373657,
- 0.00822556018829346,-2.82939449647301e-008,-0.999966263771057,0.00713899312540889,-0.00409917812794447,-0.999966144561768,0.0856476649641991,-0.00765175931155682,-0.996296167373657,0.0779678523540497,0.036262147128582,-0.996296226978302,0.00714162737131119,0.0041006482206285,-0.999966084957123,0.00822556018829346,-2.82939449647301e-008,-0.999966263771057,0.0779678523540497,0.036262147128582,-0.996296226978302,0.0495060756802559,0.0703350231051445,-0.99629420042038,0.00411285320296884,0.00712339393794537,-0.999966204166412,0.00714162737131119,0.0041006482206285,-0.999966084957123,0.0495060756802559,0.0703350231051445,-0.99629420042038,0.0228685699403286,0.0856396108865738,-0.996063768863678,0.00210648938082159,0.0082452641800046,-0.999963819980621,0.00411285320296884,0.00712339393794537,-0.999966204166412,-0.022951528429985,0.0856394320726395,-0.9960618019104,-0.0361095704138279,0.0780635476112366,-0.996294260025024,-0.00408207811415195,0.00713377213105559,-0.999966263771057,-0.00210718018934131,0.0082452679052949,-0.999963819980621,-2.80437774335951e-007,-0.00824197940528393,-0.999966025352478,0.00410958472639322,-0.00711765140295029,-0.999966323375702,-0.403155386447906,0.573578298091888,-0.713073372840881,-0.0623904541134834,0.698285698890686,-0.71309506893158,-0.0040793321095407,-0.00712880538776517,-0.999966323375702,-2.80437774335951e-007,-0.00824197940528393,-0.999966025352478,-0.0623904541134834,0.698285698890686,-0.71309506893158,0.295215159654617,0.635838687419891,-0.713131964206696,-0.0071427277289331,-0.00412343023344874,-0.999966025352478,-0.0040793321095407,-0.00712880538776517,-0.999966323375702,0.295215159654617,0.635838687419891,-0.713131964206696,0.573516547679901,0.40317901968956,-0.713109731674194,-0.00821194238960743,-4.60181794892378e-008,-0.999966382980347,-0.0071427277289331,-0.00412343023344874,-0.999966025352478,0.573516547679901,0.40317901968956,-0.713109731674194,0.698280215263367,0.0622814744710922,-0.713109970092773,-0.00714504392817616,0.00412473501637578,-0.999965965747833,-0.00821194238960743,-4.60181794892378e-008,-0.999966382980347,
- 0.698280215263367,0.0622814744710922,-0.713109970092773,0.635958731174469,-0.29500812292099,-0.713110625743866,-0.00408207811415195,0.00713377213105559,-0.999966263771057,-0.00714504392817616,0.00412473501637578,-0.999965965747833,0.635958731174469,-0.29500812292099,-0.713110625743866,0.403117418289185,-0.573519647121429,-0.713142096996307,-0.00210718018934131,0.0082452679052949,-0.999963819980621,-0.00408207811415195,0.00713377213105559,-0.999966263771057,0.403117418289185,-0.573519647121429,-0.713142096996307,0.184320494532585,-0.687641024589539,-0.702264666557312,0.00411285320296884,0.00712339393794537,-0.999966204166412,0.00210648938082159,0.0082452641800046,-0.999963819980621,-0.184225410223007,-0.68765389919281,-0.70227712392807,-0.295164495706558,-0.635919451713562,-0.713080942630768,0.00714162737131119,0.0041006482206285,-0.999966084957123,0.00411285320296884,0.00712339393794537,-0.999966204166412,-0.295164495706558,-0.635919451713562,-0.713080942630768,-0.573437571525574,-0.403109133243561,-0.713212788105011,0.00822556018829346,-2.82939449647301e-008,-0.999966263771057,0.00714162737131119,0.0041006482206285,-0.999966084957123,-0.573437571525574,-0.403109133243561,-0.713212788105011,-0.698094129562378,-0.0623624473810196,-0.713285088539124,0.00713899312540889,-0.00409917812794447,-0.999966144561768,0.00822556018829346,-2.82939449647301e-008,-0.999966263771057,-0.698094129562378,-0.0623624473810196,-0.713285088539124,-0.635797739028931,0.295099675655365,-0.713216245174408,0.00410958472639322,-0.00711765140295029,-0.999966323375702,0.00713899312540889,-0.00409917812794447,-0.999966144561768,-0.635797739028931,0.295099675655365,-0.713216245174408,-0.403155386447906,0.573578298091888,-0.713073372840881,0,1,-0,0,1,-0,2.1750463929493e-005,1,2.50023807213395e-010,-3.2875599572435e-005,1,-3.77908399018523e-010,4.33804729027543e-007,1,4.98663003251076e-012,-1.17910167318769e-005,1,-1.35538927303891e-010,2.51889723585919e-005,1,2.89549828558222e-010,-6.17797559243627e-005,1,-7.10164649309064e-010,0.000107225991087034,1,1.23257370976404e-009,
- 0.000526033283676952,0.999999940395355,6.046806610982e-009,6.25639077043161e-005,1,7.19178494534845e-010,-1.38518998937798e-005,1,-1.59229004981221e-010,-3.57627868652344e-006,0.999635398387909,-0.0270027853548527,1.60475010488881e-005,0.998905897140503,-0.046765998005867,5.97856069362024e-006,0.998541235923767,-0.0539940781891346,-7.1115800892585e-006,0.99890547990799,-0.0467764399945736,6.66244886815548e-007,0.999635577201843,-0.0269952267408371,1.13163878268097e-009,1,3.92416914110072e-005,-3.24170105159283e-006,0.999633967876434,0.0270557198673487,6.07105960170884e-007,0.998904287815094,0.0468017533421516,-3.10212885779038e-006,0.99854052066803,0.0540072880685329,7.39330334909027e-006,0.998904645442963,0.0467920862138271,3.68541805073619e-005,0.99963366985321,0.0270652454346418,3.38926997756062e-006,1,3.95638089685235e-005,-4.66982191937859e-006,-0.146814033389091,-0.989164113998413,0.0737534090876579,-0.127730160951614,-0.989062905311584,-0.0258504040539265,0.0447683967649937,-0.998662948608398,1.22193819152017e-006,0.056330680847168,-0.998412191867828,-0.0736886709928513,-0.127775147557259,-0.989062011241913,-4.66982191937859e-006,-0.146814033389091,-0.989164113998413,1.22193819152017e-006,0.056330680847168,-0.998412191867828,0.0258750654757023,0.0447488054633141,-0.998663127422333,-0.129365056753159,-0.074653223156929,-0.98878288269043,-0.0736886709928513,-0.127775147557259,-0.989062011241913,0.0258750654757023,0.0447488054633141,-0.998663127422333,0.0336019918322563,0.0193698201328516,-0.999247670173645,-0.151927977800369,-3.60393969458528e-005,-0.988391578197479,-0.129365056753159,-0.074653223156929,-0.98878288269043,0.0336019918322563,0.0193698201328516,-0.999247670173645,0.0206668972969055,-3.55749834852759e-005,-0.99978643655777,-0.133735150098801,0.07726139575243,-0.988000810146332,-0.151927977800369,-3.60393969458528e-005,-0.988391578197479,0.0206668972969055,-3.55749834852759e-005,-0.99978643655777,0.00148845219518989,-0.000766371376812458,-0.999998569488525,-0.0781013444066048,0.135406777262688,-0.987707138061523,
- -0.133735150098801,0.07726139575243,-0.988000810146332,0.00148845219518989,-0.000766371376812458,-0.999998569488525,-0.00644794572144747,0.011172316968441,-0.999916791915894,-0.0420304015278816,0.15686109662056,-0.986725926399231,-0.0781013444066048,0.135406777262688,-0.987707138061523,-0.00644794572144747,0.011172316968441,-0.999916791915894,-0.00493962643668056,0.0184327308088541,-0.999817907810211,0.0781460553407669,0.135372519493103,-0.987708210945129,0.0420231632888317,0.156861171126366,-0.9867262840271,0.00493913004174829,0.0184327270835638,-0.999817907810211,0.00644491938874125,0.0111682023853064,-0.999916911125183,0.133719280362129,0.0772844403982162,-0.988001227378845,0.0781460553407669,0.135372519493103,-0.987708210945129,0.00644491938874125,0.0111682023853064,-0.999916911125183,-0.0014799777418375,-0.00085472414502874,-0.999998569488525,0.151876464486122,3.83821934519801e-005,-0.988399565219879,0.133719280362129,0.0772844403982162,-0.988001227378845,-0.0014799777418375,-0.00085472414502874,-0.999998569488525,-0.0206883028149605,2.39944783970714e-005,-0.999786019325256,0.129300966858864,-0.0747581273317337,-0.988783359527588,0.151876464486122,3.83821934519801e-005,-0.988399565219879,-0.0206883028149605,2.39944783970714e-005,-0.999786019325256,-0.0336385779082775,0.0193811263889074,-0.999246120452881,0.0737534090876579,-0.127730160951614,-0.989062905311584,0.129300966858864,-0.0747581273317337,-0.988783359527588,-0.0336385779082775,0.0193811263889074,-0.999246120452881,-0.0258504040539265,0.0447683967649937,-0.998662948608398,-1,0,-2.84887846646598e-007,-1,0,-2.37406567293874e-007,-1,0,-1.89925302152005e-007,-1,0,-2.37406567293874e-007,0.998629212379456,-0.052342813462019,-1.57989035187711e-007,0.999383866786957,-0.0350997373461723,-1.03335992207576e-007,0.999383866786957,0.0350997373461723,0,0.998629212379456,0.052342813462019,-7.84436764433849e-008,0.0473381280899048,0.998878955841064,-1.07988668673897e-007,0.106854811310768,0.994274735450745,-1.10551830800887e-007,3.02790326145441e-008,1,-8.16595573382983e-008,
- 3.02790326145441e-008,1,0,9.85964447863807e-007,1,-0,3.27493893337305e-007,1,-0,-2.66977053797746e-006,1,0,-4.69587939733174e-006,1,0,5.89480976032064e-007,1,-0,-2.5824410840869e-006,1,0,0.998629212379456,-0.052342813462019,-1.57989035187711e-007,0.0473381280899048,-0.998878955841064,-1.7517321282412e-007,0.106854811310768,-0.994274735450745,-1.66497599707327e-007,0.999383866786957,-0.0350997373461723,-1.03335992207576e-007,0.0473381280899048,0.998878955841064,-1.07988668673897e-007,0.998629212379456,0.052342813462019,-7.84436764433849e-008,0.999383866786957,0.0350997373461723,0,0.106854811310768,0.994274735450745,-1.10551830800887e-007,3.02790326145441e-008,-1,-1.82549456440029e-007,0.106854811310768,-0.994274735450745,-1.66497599707327e-007,0.0473381280899048,-0.998878955841064,-1.7517321282412e-007,3.02790326145441e-008,-1,-2.01780053998846e-007,-7.105427357601e-015,0.764912545681,0.644134163856506,-0.00020308027160354,0.764912545681,0.644134163856506,3.14467069983948e-005,0.764912605285645,0.644134223461151,2.60752276517451e-005,0.764912545681,0.644134163856506,-0.000194388529052958,0.764912545681,0.644134163856506,-0.000323029467836022,0.764912486076355,0.644134163856506
- }
- BinormalsW: *9105 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *27315 {
- a: 0.643276631832123,0.765633821487427,0,0.643267095088959,0.765641987323761,0,0.64325749874115,0.765649914741516,-0,0.643267095088959,0.765641987323761,0,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,9.75446994289086e-008,1.16108907377566e-007,1,9.44458307117202e-008,1.12420302400551e-007,1,9.75446852180539e-008,1.1610892158842e-007,1,1.00643553935242e-007,1.19797519460008e-007,1,0.643247842788696,0.765658020973206,-0,0.643247842788696,0.765658020973206,-0,0.643247842788696,0.765658020973206,-0,0.643247842788696,0.765658020973206,-0,-2.97637576807119e-008,2.50085090414132e-008,1,-3.00840916622747e-008,2.52776644060759e-008,1,-2.97637594570688e-008,2.50085072650563e-008,1,-2.94434272518629e-008,2.47393536767504e-008,1,0.643267095088959,0.765641868114471,0,0.643264591693878,0.765644073486328,0,0.643262028694153,0.76564610004425,-0,0.643264591693878,0.765644073486328,0,-5.63707835965488e-008,4.736332215316e-008,1,-2.81853935746312e-008,2.36816593002231e-008,1,-0,-0,1,-2.81853917982744e-008,2.368166107658e-008,1,0.643266201019287,0.765642583370209,-0,0.643253207206726,0.765653491020203,-0,0.64324015378952,0.765664458274841,-0,0.643253207206726,0.765653491020203,-0,-7.84825644473131e-008,-2.44300252916219e-007,1,-7.1165722204114e-009,-1.59357256279691e-007,1,6.42493844793535e-008,-7.44142454323082e-008,1,-7.11657932583876e-009,-1.59357256279691e-007,1,0.643265426158905,0.765643239021301,0,0.643268465995789,0.765640735626221,0,0.643271505832672,0.765638291835785,-0,0.643268465995789,0.765640735626221,0,-5.31582713847456e-007,-1.64072929464965e-007,1,-9.72529619502893e-007,2.06439992211926e-007,1,-5.31582713847456e-007,-1.64072986308383e-007,1,-9.06357868757368e-008,-5.3458586535271e-007,1,-2.44929800885529e-008,2.05792396457127e-008,1,-3.63130894243113e-008,3.05106127029831e-008,1,-4.81331987600697e-008,4.04419822075397e-008,1,-3.63130894243113e-008,3.05106127029831e-008,1,1.1137274924522e-007,1.32558241716652e-007,1,-4.21949195583693e-008,1.28756113326745e-007,1,-1.07613935540485e-007,5.08931599085827e-008,1,4.595382563366e-008,5.4695195927934e-008,1,
- 3.89296559433205e-008,4.63371421233205e-008,1,5.83944625986987e-008,6.9505688315985e-008,1,7.78592692540769e-008,9.26742274032222e-008,1,5.83944625986987e-008,6.9505688315985e-008,1,0.643274188041687,0.765635907649994,0,0.643264472484589,0.765644192695618,0,0.643254697322845,0.765652418136597,-0,0.643264472484589,0.765644192695618,0,1.22243786477411e-014,1.45502049129923e-014,1,1.41235325656908e-008,1.69398589378034e-007,1,-6.102764160687e-008,2.32536962130325e-007,1,-7.51512345686933e-008,6.3138280381736e-008,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-1.43558764875706e-007,2.8434971710567e-008,1,-5.88776003951352e-007,-2.30544841883784e-007,1,-7.22252195828332e-007,-1.18419819727933e-007,1,-2.77033535667215e-007,1.40560430850201e-007,1,-1.03276795471174e-006,-7.78114213062509e-007,1,-6.46994578801241e-007,-2.89212493953528e-007,1,-2.46595675434946e-007,1.87402150686466e-007,1,-6.32368369224423e-007,-3.01499824217899e-007,1,1.68949782164418e-007,3.21316008466965e-007,1,1.5301174016713e-007,1.82119094915834e-007,1,7.786036348989e-008,9.26716978710829e-008,1,9.37984196980324e-008,2.3186859721136e-007,1,0.643239796161652,0.76566481590271,-0,0.643257915973663,0.765649676322937,-0,0.643276035785675,0.765634477138519,-0,0.643257915973663,0.765649676322937,-0,-4.65576590613637e-008,3.91097145779895e-008,1,-4.65576590613637e-008,3.91097145779895e-008,1,-2.94445840154367e-007,-2.55984616615024e-007,1,-2.94444760129409e-007,-2.55983337638099e-007,1,-9.73253566627363e-009,-1.15843059589338e-008,1,-2.43313298398107e-008,-2.89607537951042e-008,1,-3.89301249015261e-008,-4.63372025194531e-008,1,-2.43313298398107e-008,-2.89607537951042e-008,1,-2.10912531883878e-007,3.35291872488597e-007,1,6.64154299556685e-007,3.65925743039952e-008,1,8.7913616653168e-007,2.92473515628444e-007,1,4.07256095513731e-009,5.91170874031377e-007,1,0.643259644508362,0.765648245811462,0,0.643260598182678,0.765647292137146,0,0.643261671066284,0.765646398067474,-0,0.643260598182678,0.765647292137146,0,8.24306255253759e-007,-7.66298171583912e-007,1,6.65161337565223e-007,-1.05572084407868e-007,1,
- 2.46449332053089e-007,2.46134732151404e-007,1,4.05594192898207e-007,-4.14590971331563e-007,1,-0,-0,1,-1.9212409085867e-007,-2.28725141937502e-007,1,-1.92123394526789e-007,-2.28724303497074e-007,1,-0,-0,1,-3.09506532403248e-007,-1.80263384663704e-007,1,-6.95079478418847e-008,5.83901282880106e-008,1,-4.63387159754802e-008,3.89268244305185e-008,1,-2.8633775173148e-007,-1.99727196559252e-007,1,-1.84555261739661e-007,1.15534007250062e-007,1,-2.91971407051506e-008,-3.47519630850002e-008,1,-3.89295173874871e-008,-4.63359448588108e-008,1,-1.94287736121623e-007,1.03950114294094e-007,1,-2.12036752600397e-007,2.57191288710601e-007,1,3.8930767942702e-008,4.63371705450299e-008,1,3.8930767942702e-008,4.63371705450299e-008,1,-2.12036226798773e-007,2.57190890806669e-007,1,0.643258035182953,0.765649437904358,-0,0.643259048461914,0.765648722648621,-0,0.64326000213623,0.765647947788239,-0,0.643259048461914,0.765648722648621,-0,-1.30727784153351e-007,-1.55581375338443e-007,1,0,0,1,0,0,1,-1.30727670466513e-007,-1.55581233229896e-007,1,1.83006481080383e-008,-3.51361464367983e-008,1,-9.73241487400855e-009,-1.15841052306109e-008,1,-9.73241487400855e-009,-1.15841052306109e-008,1,1.83006552134657e-008,-3.51361535422257e-008,1,2.10764543595587e-008,1.4037833295788e-007,1,7.78587434524525e-008,9.26729342154431e-008,1,7.78587434524525e-008,9.26729342154431e-008,1,2.10764241614925e-008,1.40378347168735e-007,1,0.643261551856995,0.765646636486053,0,0.643260538578033,0.76564747095108,0,0.643259525299072,0.765648186206818,-0,0.643260538578033,0.76564747095108,0,5.5938283338719e-008,1.93191471709042e-008,1,4.65457929976765e-008,-3.91111107944653e-008,1,6.98186397585232e-008,-5.86666253354906e-008,1,7.92111336522794e-008,-2.36369146477955e-010,1,-4.65441587493842e-008,3.91105565711314e-008,1,-4.65441338803885e-008,3.91105885455545e-008,1,-4.65441338803885e-008,3.91105885455545e-008,1,-4.65441587493842e-008,3.91105565711314e-008,1,-1.95155010374037e-007,8.49153138915426e-008,1,-2.91974817656637e-008,-3.47527162603001e-008,1,-1.94649913964895e-008,-2.31684804674615e-008,1,
- -1.85422578624639e-007,9.64996047514433e-008,1,-8.7559541839255e-008,1.52607270820226e-007,1,5.83949706367548e-008,6.95054396260275e-008,1,7.78599442696759e-008,9.26739005535637e-008,1,-6.80944864939192e-008,1.75775653588062e-007,1,0.643259465694427,0.765648245811462,0,0.643259465694427,0.765648245811462,0,0.643259465694427,0.765648245811462,-0,0.643259465694427,0.765648245811462,0,-9.11571333972461e-008,-1.08524886854866e-007,1,0,0,1,0,0,1,-9.11571049755366e-008,-1.08524851327729e-007,1,-0,-0,1,-6.52497647024575e-008,-7.76824222725736e-008,1,-6.52497220698933e-008,-7.76823796400095e-008,1,-0,-0,1,-3.27327533966582e-008,-1.44807373203548e-007,1,5.10432371925162e-008,-4.28811475217117e-008,1,4.99572152534711e-008,-4.196878578e-008,1,-3.38187575721349e-008,-1.43894965276559e-007,1,-8.53724486660212e-008,6.18460092027817e-008,1,-7.29948457234286e-009,-8.6881781768966e-009,1,-9.73264580039768e-009,-1.1584236681017e-008,1,-8.78056454212128e-008,5.89499791203707e-008,1,7.78574289483913e-008,9.26734387007855e-008,1,-4.43041017206269e-008,1.95304863837009e-007,1,-4.43041798803279e-008,1.95304920680428e-007,1,7.78574289483913e-008,9.26734387007855e-008,1,0.643270075321198,0.765639364719391,-0,0.643261909484863,0.76564621925354,-0,0.643253803253174,0.765653014183044,-0,0.643261909484863,0.76564621925354,-0,-4.65425529228014e-008,3.91066627969394e-008,1,-4.65425529228014e-008,3.91066627969394e-008,1,-1.55275245106168e-007,-9.03012491448862e-008,1,-1.55275202473604e-007,-9.03011923014674e-008,1,-1.28473601535006e-007,8.81778987604775e-008,1,-2.43315554371293e-008,-2.89604695780099e-008,1,-3.89304837256077e-008,-4.63367477721022e-008,1,-1.4307258311419e-007,7.08016827388747e-008,1,-4.48211636694396e-008,1.95743737663179e-007,1,7.78595037331797e-008,9.26732042216827e-008,1,7.78595037331797e-008,9.26732042216827e-008,1,-4.48210997205933e-008,1.9574368081976e-007,1,0.643266916275024,0.765642046928406,0,0.643263638019562,0.765644788742065,0,0.643260359764099,0.765647530555725,-0,0.643263638019562,0.765644788742065,0,6.98262212495138e-008,-5.8663712110274e-008,1,
- 4.65508662728098e-008,-3.91091496965146e-008,1,2.32754810980396e-008,-1.95546157044646e-008,1,4.65508449565277e-008,-3.9109167460083e-008,1,-0,-0,1,-1.64863152463113e-007,-1.96214770653569e-007,1,-1.64863038776275e-007,-1.96214642755876e-007,1,-0,-0,1,-1.64414046821548e-007,-7.53764872740703e-009,1,-6.9505389888036e-008,5.83920645169655e-008,1,-4.63370106729144e-008,3.89281140655839e-008,1,-1.41245749318841e-007,-2.70016755621327e-008,1,-2.02286489781045e-008,-2.2527171239517e-008,1,-2.91980768452049e-008,-3.47526523114539e-008,1,-3.89307643899883e-008,-4.63368650116536e-008,1,-2.99613596155268e-008,-3.41113661761483e-008,1,3.89291230362687e-008,4.63361367053494e-008,1,3.8929119483555e-008,4.63361402580631e-008,1,3.8929119483555e-008,4.63361402580631e-008,1,3.89291230362687e-008,4.63361367053494e-008,1,0.643262445926666,0.765645742416382,-0,0.64325737953186,0.765649974346161,-0,0.643252372741699,0.76565420627594,-0,0.64325737953186,0.765649974346161,-0,7.41918952940068e-008,8.83324773326422e-008,1,0,0,1,0,0,1,7.41919166102889e-008,8.83324915434969e-008,1,-1.12528319107241e-007,7.47791375488305e-008,1,-9.73234293155656e-009,-1.15841771730629e-008,1,-9.73234293155656e-009,-1.15841771730629e-008,1,-1.12528326212669e-007,7.47791304434031e-008,1,7.78587647687345e-008,9.26729200045884e-008,1,7.7858715030743e-008,9.26729555317252e-008,1,7.7858715030743e-008,9.26729555317252e-008,1,7.78587647687345e-008,9.26729200045884e-008,1,0.64325624704361,0.765650987625122,0,0.643257915973663,0.765649676322937,0,0.643259525299072,0.765648186206818,-0,0.643257915973663,0.765649676322937,0,1.00972643579667e-008,-3.52343860754445e-008,1,4.65441338803885e-008,-3.91110752673285e-008,1,6.9816152858948e-008,-5.86665720447854e-008,1,3.33693286336256e-008,-5.47898295621962e-008,1,-4.65441019059654e-008,3.91123116116887e-008,1,-1.15697652347535e-007,-4.31805666778473e-008,1,-1.15697609714971e-007,-4.31805240452832e-008,1,-4.65441019059654e-008,3.91123116116887e-008,1,4.98139769433692e-008,-1.20895293775902e-007,1,-2.91974817656637e-008,-3.47527162603001e-008,1,
- -1.94649913964895e-008,-2.31684804674615e-008,1,5.95464584307592e-008,-1.09311052653993e-007,1,3.89299970038337e-008,4.63366234271234e-008,1,5.83949741894685e-008,6.9504913824403e-008,1,7.78599513751033e-008,9.26731971162553e-008,1,5.83949741894685e-008,6.95049067189757e-008,1,0.643259465694427,0.765648245811462,0,0.643260896205902,0.765647172927856,0,0.643262267112732,0.765645921230316,-0,0.643260896205902,0.765647172927856,0,6.79417127003035e-008,8.0886380260381e-008,1,0,0,1,0,0,1,6.79417340165855e-008,8.08863944712357e-008,1,-0,-0,1,2.63223007834767e-008,3.13359258541368e-008,1,2.63222972307631e-008,3.13359223014231e-008,1,-0,-0,1,-1.5496061323006e-008,-1.24277875102052e-007,1,5.10394748687304e-008,-4.28844586508603e-008,1,4.99535310893862e-008,-4.1972025854875e-008,1,-1.65819926678523e-008,-1.23365424542499e-007,1,-2.13264836901317e-008,8.03716027064638e-009,1,-7.29948457234286e-009,-8.68815597243611e-009,1,-9.73264580039768e-009,-1.15842082593076e-008,1,-2.37596431418297e-008,5.14110709559645e-009,1,7.78583455485204e-008,9.26732184325374e-008,1,-3.84550098431191e-008,1.90392469789913e-007,1,-3.84550560283969e-008,1.90392484000768e-007,1,7.78583455485204e-008,9.26732184325374e-008,1,0.643271028995514,0.765638589859009,-0,0.643265128135681,0.76564347743988,-0,0.643259346485138,0.765648484230042,-0,0.643265128135681,0.76564347743988,-0,-4.65407801186757e-008,3.91097181307032e-008,1,-4.65407801186757e-008,3.91097181307032e-008,1,-2.26485075138783e-009,9.17982845294318e-008,1,-2.26485541432453e-009,9.17982845294318e-008,1,-9.73226121914195e-009,-1.15840759207231e-008,1,-2.43306352842865e-008,-2.89601853609156e-008,1,-3.89290129021447e-008,-4.63362930247513e-008,1,-2.43306441660707e-008,-2.89601800318451e-008,1,-4.18890309106246e-008,1.93286837202322e-007,1,7.7862509328952e-008,9.26716765548008e-008,1,7.7862509328952e-008,9.26716765548008e-008,1,-4.18890273579109e-008,1.93286822991467e-007,1,0.643256425857544,0.765650808811188,0,0.643268465995789,0.765640676021576,0,0.643280565738678,0.765630543231964,-0,0.643268465995789,0.765640676021576,0,
- 6.98135664833899e-008,-5.86567452387499e-008,1,4.65423433126944e-008,-3.91046057757194e-008,1,2.32712196179818e-008,-1.9552343744067e-008,1,4.65424108142543e-008,-3.91045240633048e-008,1,-0,-0,1,-4.91322715845399e-008,-5.84874015885362e-008,1,-4.91322573736852e-008,-5.84873802722541e-008,1,-0,-0,1,-1.35627004738126e-007,2.67287934008209e-008,1,-6.95053827826086e-008,5.83927004527141e-008,1,-4.63370071202007e-008,3.89285368385117e-008,1,-1.12458565126872e-007,7.26471194312239e-009,1,7.56859392936349e-008,-1.03108405369312e-007,1,-2.91971709032168e-008,-3.47528654742746e-008,1,-3.89295564673375e-008,-4.63371492287479e-008,1,6.59535430713731e-008,-1.14692682018358e-007,1,-7.42043866353015e-008,1.4138628046112e-007,1,3.89295600200512e-008,4.63363249991744e-008,1,3.89295600200512e-008,4.63363249991744e-008,1,-7.42043582135921e-008,1.41386266250265e-007,1,0.643248021602631,0.765658020973206,-0,0.643251359462738,0.765655219554901,-0,0.643254697322845,0.765652298927307,-0,0.643251359462738,0.765655219554901,-0,6.4590260251407e-008,7.68899184322436e-008,1,0,0,1,0,0,1,6.45902815676891e-008,7.68899397485256e-008,1,6.37744221876346e-008,-7.90220511248663e-008,1,-1.13767235632167e-008,-1.68471572692397e-007,1,-8.65278693140681e-008,-2.57921101365355e-007,1,-1.13767271159304e-008,-1.68471558481542e-007,1,1.00242473877188e-007,1.19317064672941e-007,1,1.00242473877188e-007,1.19317064672941e-007,1,1.00242473877188e-007,1.19317064672941e-007,1,1.00242473877188e-007,1.19317064672941e-007,1,0.643261015415192,0.765646934509277,0,0.643257737159729,0.765649855136871,0,0.643254399299622,0.765652656555176,-0,0.643257737159729,0.765649855136871,0,2.32746604211798e-008,-1.95545073466974e-008,1,4.65492213663765e-008,-3.91089329809802e-008,1,6.98237840879301e-008,-5.86633603916198e-008,1,4.65492213663765e-008,-3.91089329809802e-008,1,-1.19092639749852e-007,-4.72499124271053e-008,1,-4.3942613103809e-008,-1.10382906370887e-007,1,3.12074206476609e-008,-1.73515900314669e-007,1,-4.39426202092363e-008,-1.10382920581742e-007,1,0.639651536941528,0.768665015697479,0,
- 0.639621198177338,0.768690288066864,-0,0.639651536941528,0.768665015697479,0,0.639681875705719,0.768639743328094,0,0.64325487613678,0.765652120113373,-0,0.643274009227753,0.765636026859283,-0,0.643293142318726,0.765619933605194,-0,0.643274009227753,0.765636026859283,-0,0.64324826002121,0.765657663345337,0,0.643253087997437,0.765653610229492,0,0.643257856369019,0.765649616718292,-0,0.643253087997437,0.765653610229492,0,-7.47076214224762e-008,6.27709724199121e-008,1,-7.37249763460568e-008,6.19453288663863e-008,1,-7.27423170587826e-008,6.11196853128604e-008,1,-7.37249763460568e-008,6.19453288663863e-008,1,0.640504121780396,0.767911493778229,-0.00814145058393478,0.64609694480896,0.763241529464722,0.00459027010947466,0.65646493434906,0.754238545894623,0.013342060148716,0.649203956127167,0.760496497154236,0.0133964223787189,-0.646015822887421,-0.76313704252243,-0.0168958678841591,-0.645977854728699,-0.763222932815552,-0.0142591390758753,-0.643191814422607,-0.765460133552551,-0.0193668976426125,-0.643106281757355,-0.765428066253662,-0.0231119841337204,-0.641324639320374,-0.767220258712769,-0.00870791357010603,-0.6404709815979,-0.76794958114624,-0.00711243506520987,-0.645140290260315,-0.763418257236481,-0.0314109176397324,-0.646988987922668,-0.76213002204895,-0.0237301848828793,-0.64790678024292,-0.76159405708313,-0.0138326222077012,-0.642193496227264,-0.766538977622986,0.00234608980827034,-0.646530568599701,-0.762692391872406,-0.0172767844051123,-0.64339405298233,-0.765534520149231,-0.0010037476895377,-0.641973376274109,-0.766726613044739,0.000713489949703217,-0.647083282470703,-0.762253165245056,-0.0159165561199188,-0.641680061817169,-0.766968965530396,0.00228325184434652,-0.647048771381378,-0.762198209762573,-0.0195378251373768,0.00308429962024093,0.0129389287903905,-0.999911546707153,-0.005608722101897,-0.0108701605349779,-0.999925255775452,0.00141810066998005,-0.00248960545286536,-0.999995946884155,0.00105780328158289,0.0107320537790656,-0.999941885471344,-0.00500588584691286,-0.00241263187490404,-0.999984622001648,-0.00835403706878424,-0.00563195487484336,-0.999949336051941,
- -0.0128683550283313,-0.0107961958274245,-0.999858975410461,0.0121237831190228,0.016943009570241,-0.999782919883728,0.00237485906109214,0.00464426027610898,-0.999986469745636,-0.013842673972249,-0.0119625898078084,-0.999832630157471,-0.0146151287481189,-0.0121512757614255,-0.999819338321686,-0.0151941906660795,-0.0121540371328592,-0.999810755252838,0.00256622023880482,0.00591777078807354,-0.999979197978973,0.00104639620985836,0.00709592737257481,-0.999974250793457,-0.00263753975741565,-0.0106783006340265,-0.999939501285553,-0.00572780519723892,-0.00794766563922167,-0.999952077865601,0.0165806375443935,0.020420528948307,0.999653995037079,0.00189320079516619,0.00442301854491234,0.999988436698914,0.000408481020713225,0.00266379490494728,0.999996364116669,0.0151050314307213,0.0186642687767744,0.999711811542511,0.00380393816158175,2.36072742154647e-006,0.999992728233337,0.00555794034153223,0.00224125175736845,0.999982059001923,0.0197061635553837,0.01760034263134,0.999650895595551,0.0179366711527109,0.0153793320059776,0.999720871448517,0.00465910276398063,0.00298063503578305,0.999984741210938,0.0023412921000272,0.00483859144151211,0.999985575675964,0.0181034803390503,0.0191375073045492,0.999652981758118,0.0196271669119596,0.0178574733436108,0.999647974967957,0.016746312379837,0.0142977489158511,0.999757528305054,0.0151574602350593,0.0156270992010832,0.999763011932373,-0.000623341999016702,0.0013145114062354,0.999998927116394,0.00145900540519506,-0.000499229063279927,0.999998807907104,0.0066281259059906,0.00562024349346757,-0.999962329864502,-0.00373556790873408,-0.0056125451810658,-0.999977350234985,-0.00374027481302619,-0.00560808880254626,-0.999977350234985,0.00662920065224171,0.0056215226650238,-0.999962329864502,0.643270552158356,0.765639066696167,-0,0.643269002437592,0.765640377998352,-0,0.643268465995789,0.765640735626221,-0,0.643269419670105,0.765639901161194,-0,0.643269240856171,0.765640199184418,-0,0.00662784790620208,0.00562008237466216,-0.999962270259857,-0.00374118331819773,-0.00560826621949673,-0.999977350234985,
- -0.00369778275489807,-0.00563795771449804,-0.999977290630341,0.00662692729383707,0.00561905652284622,-0.999962270259857,-0.00310063106007874,-0.00487452233210206,-0.999983310699463,-0.00294821034185588,-0.00498817395418882,-0.999983191490173,0.00662538735195994,0.00562067655846477,-0.999962270259857,0.00662630749866366,0.0056198937818408,-0.999962270259857,-0.00334568577818573,-0.00467158341780305,-0.999983429908752,0.00663004443049431,0.00561953941360116,-0.999962329864502,0.00663037085905671,0.00561926374211907,-0.999962329864502,-0.00294675561599433,-0.0049890810623765,-0.999983191490173,-0.812524259090424,-0.582927405834198,0,-0.256229966878891,-0.966615796089172,0,-0.285709857940674,-0.958316147327423,0,-0.298697054386139,-0.954347968101501,0,-0.541904985904694,-0.840439677238464,0,-0.996468305587769,0.083970807492733,0,0.643249034881592,0.765657067298889,0,0.643241763114929,0.765663146972656,-0,0.643225312232971,0.765676975250244,-0,0.643245100975037,0.765660345554352,0,0.643256962299347,0.765650391578674,-0,0.643248319625854,0.765657603740692,0,-0.641973376274109,-0.766726613044739,0.000713489949703217,-0.647048771381378,-0.762198209762573,-0.0195378251373768,-0.645140290260315,-0.763418257236481,-0.0314109176397324,-0.6404709815979,-0.76794958114624,-0.00711243506520987,-0.641324639320374,-0.767220258712769,-0.00870791357010603,-0.646988987922668,-0.76213002204895,-0.0237301848828793,-0.64790678024292,-0.76159405708313,-0.0138326222077012,-0.64339405298233,-0.765534520149231,-0.0010037476895377,0.00256622023880482,0.00591777078807354,-0.999979197978973,-0.00572780519723892,-0.00794766563922167,-0.999952077865601,-0.00500588584691286,-0.00241263187490404,-0.999984622001648,0.00237485906109214,0.00464426027610898,-0.999986469745636,0.0121237831190228,0.016943009570241,-0.999782919883728,-0.0128683550283313,-0.0107961958274245,-0.999858975410461,-0.0151941906660795,-0.0121540371328592,-0.999810755252838,0.00437275320291519,0.0116553511470556,-0.999922513961792,0.016746312379837,0.0142977489158511,0.999757528305054,
- 0.00145900540519506,-0.000499229063279927,0.999998807907104,0.00380393816158175,2.36072742154647e-006,0.999992728233337,0.0179366711527109,0.0153793320059776,0.999720871448517,0.0197061635553837,0.01760034263134,0.999650895595551,0.00555794034153223,0.00224125175736845,0.999982059001923,0.00465910276398063,0.00298063503578305,0.999984741210938,0.0196271669119596,0.0178574733436108,0.999647974967957,0.00662692729383707,0.00561905652284622,-0.999962270259857,-0.00369778275489807,-0.00563795771449804,-0.999977290630341,-0.00310063106007874,-0.00487452233210206,-0.999983310699463,0.00662630749866366,0.0056198937818408,-0.999962270259857,0.00237485906109214,0.00464426027610898,-0.999986469745636,0.0121237831190228,0.016943009570241,-0.999782919883728,0.00617931503802538,0.00430802162736654,-0.999971628189087,0.00508918054401875,0.00352346291765571,-0.999980866909027,0.00617931503802538,0.00430802162736654,-0.999971628189087,0.0121237831190228,0.016943009570241,-0.999782919883728,0.00437275320291519,0.0116553511470556,-0.999922513961792,0.00857689417898655,0.00869079027324915,-0.999925494194031,0.00119631190318614,0.0139329098165035,-0.999902307987213,0.0074377004057169,0.00954530946910381,-0.999926805496216,0.00857689417898655,0.00869079027324915,-0.999925494194031,0.00437275320291519,0.0116553511470556,-0.999922513961792,0.00104188988916576,0.00476991944015026,-0.999988079071045,0.00308429962024093,0.0129389287903905,-0.999911546707153,0.00105780328158289,0.0107320537790656,-0.999941885471344,0.000541562330909073,0.00399114191532135,-0.999991953372955,0.00724257249385118,0.00423367507755756,-0.999964892864227,0.00683428486809134,0.00445939647033811,-0.999966740608215,0.00104639620985836,0.00709592737257481,-0.999974250793457,0.00256622023880482,0.00591777078807354,-0.999979197978973,0.00724257249385118,0.00423367507755756,-0.999964892864227,0.00256622023880482,0.00591777078807354,-0.999979197978973,0.00237485906109214,0.00464426027610898,-0.999986469745636,0.00508918054401875,0.00352346291765571,-0.999980866909027,0.00508918054401875,0.00352346291765571,-0.999980866909027,
- 0.00617931503802538,0.00430802162736654,-0.999971628189087,-0.00701168598607183,-0.0104285683482885,-0.999921083450317,-0.00680613145232201,-0.0103830611333251,-0.999922931194305,-0.00701168598607183,-0.0104285683482885,-0.999921083450317,0.00617931503802538,0.00430802162736654,-0.999971628189087,0.00857689417898655,0.00869079027324915,-0.999925494194031,-0.00914955791085958,-0.0150554180145264,-0.999844789505005,0.0074377004057169,0.00954530946910381,-0.999926805496216,-0.00577930314466357,-0.0177097711712122,-0.999826550483704,-0.00914955791085958,-0.0150554180145264,-0.999844789505005,0.00857689417898655,0.00869079027324915,-0.999925494194031,-0.00106709578540176,-0.0150838838890195,-0.999885618686676,0.00104188988916576,0.00476991944015026,-0.999988079071045,0.000541562330909073,0.00399114191532135,-0.999991953372955,-0.00468709599226713,-0.0195987857878208,-0.999796867370605,-0.00233920267783105,-0.0100318705663085,-0.999947011470795,0.00157089624553919,-0.0134282112121582,-0.999908685684204,0.00683428486809134,0.00445939647033811,-0.999966740608215,0.00724257249385118,0.00423367507755756,-0.999964892864227,-0.00233920267783105,-0.0100318705663085,-0.999947011470795,0.00724257249385118,0.00423367507755756,-0.999964892864227,0.00508918054401875,0.00352346291765571,-0.999980866909027,-0.00680613145232201,-0.0103830611333251,-0.999922931194305,-0.00680613145232201,-0.0103830611333251,-0.999922931194305,-0.00701168598607183,-0.0104285683482885,-0.999921083450317,0.000746178557164967,0.000987474457360804,-0.999999225139618,0.000844025809783489,0.000905200315173715,-0.999999225139618,0.000746178557164967,0.000987474457360804,-0.999999225139618,-0.00701168598607183,-0.0104285683482885,-0.999921083450317,-0.00914955791085958,-0.0150554180145264,-0.999844789505005,-0.000859557127114385,0.000804441457148641,-0.999999284744263,-0.00577930314466357,-0.0177097711712122,-0.999826550483704,-0.00108757719863206,0.000913713069166988,-0.999998986721039,-0.000859557127114385,0.000804441457148641,-0.999999284744263,-0.00914955791085958,-0.0150554180145264,-0.999844789505005,
- -0.00091367558343336,-0.00108755438122898,-0.999998986721039,-0.00106709578540176,-0.0150838838890195,-0.999885618686676,-0.00468709599226713,-0.0195987857878208,-0.999796867370605,-0.000904903863556683,-0.00107711344026029,-0.999999046325684,0.000989470281638205,-0.000744799035601318,-0.999999225139618,0.00109898310620338,-0.000923398067243397,-0.999999046325684,0.00157089624553919,-0.0134282112121582,-0.999908685684204,-0.00233920267783105,-0.0100318705663085,-0.999947011470795,0.000989470281638205,-0.000744799035601318,-0.999999225139618,-0.00233920267783105,-0.0100318705663085,-0.999947011470795,-0.00680613145232201,-0.0103830611333251,-0.999922931194305,0.000844025809783489,0.000905200315173715,-0.999999225139618,-0.00572780519723892,-0.00794766563922167,-0.999952077865601,0.000787026016041636,-0.000644925748929381,-0.999999582767487,0.000996847171336412,0.00076999282464385,-0.999999225139618,-0.00500588584691286,-0.00241263187490404,-0.999984622001648,0.00141810066998005,-0.00248960545286536,-0.999995946884155,-0.005608722101897,-0.0108701605349779,-0.999925255775452,0.00347167672589421,0.00413235602900386,-0.999985456466675,-0.00785632152110338,-0.00935142394155264,0.999925434589386,0.0029943201225251,0.0080602690577507,0.999963045120239,-0.000132759640109725,0.00591117516160011,0.999982535839081,-0.0121112242341042,-0.0104242274537683,0.999872267246246,-0.0117779700085521,-0.0102927200496197,0.999877572059631,-0.0114637017250061,-0.0113892247900367,0.999869406223297,-0.000386328028980643,8.20969871710986e-005,0.999999940395355,0.0029943201225251,0.0080602690577507,0.999963045120239,-0.0117779700085521,-0.0102927200496197,0.999877572059631,-0.0108824279159307,-0.0119467712938786,0.999869406223297,0.00103303021751344,-0.00125338463112712,0.999998688697815,-0.000386328028980643,8.20969871710986e-005,0.999999940395355,-0.0114637017250061,-0.0113892247900367,0.999869406223297,-0.0118402866646647,-0.0111991297453642,0.999867081642151,0.00415615504607558,0.00227298960089684,0.999988794326782,0.00596562027931213,0.00436128303408623,0.999972701072693,
- -0.0110469125211239,-0.0102442326024175,0.999886512756348,-0.00488385325297713,-0.00371378590352833,0.999981164932251,-0.00253170076757669,-0.00550804892554879,0.999981641769409,-0.0113060558214784,-0.0124508114531636,0.999858558177948,-0.012977977283299,-0.0110362619161606,0.999854922294617,-0.0121112242341042,-0.0104242274537683,0.999872267246246,-0.000132759640109725,0.00591117516160011,0.999982535839081,-0.00488385325297713,-0.00371378590352833,0.999981164932251,-0.012977977283299,-0.0110362619161606,0.999854922294617,0.0258958544582129,0.0238840747624636,0.999379277229309,0.0232106260955334,0.0216774474829435,0.999495506286621,-0.000132759640109725,0.00591117516160011,0.999982535839081,0.0029943201225251,0.0080602690577507,0.999963045120239,-0.000386328028980643,8.20969871710986e-005,0.999999940395355,0.0223208758980036,0.01594871096313,0.999623596668243,0.0258958544582129,0.0238840747624636,0.999379277229309,0.0029943201225251,0.0080602690577507,0.999963045120239,0.00103303021751344,-0.00125338463112712,0.999998688697815,0.0242807455360889,0.0140644731000066,0.999606251716614,0.0223208758980036,0.01594871096313,0.999623596668243,-0.000386328028980643,8.20969871710986e-005,0.999999940395355,0.00415615504607558,0.00227298960089684,0.999988794326782,0.0232364162802696,0.0227814335376024,0.999470472335815,0.0248682163655758,0.0249781552702188,0.999378740787506,0.00596562027931213,0.00436128303408623,0.999972701072693,0.0220550093799829,0.0172341894358397,0.999608278274536,0.0249854996800423,0.0148854870349169,0.999576985836029,-0.00253170076757669,-0.00550804892554879,0.999981641769409,-0.00488385325297713,-0.00371378590352833,0.999981164932251,-0.000132759640109725,0.00591117516160011,0.999982535839081,0.0232106260955334,0.0216774474829435,0.999495506286621,0.0220550093799829,0.0172341894358397,0.999608278274536,-0.00488385325297713,-0.00371378590352833,0.999981164932251,-0.0117779700085521,-0.0102927200496197,0.999877572059631,-0.0121112242341042,-0.0104242274537683,0.999872267246246,0.00555794034153223,0.00224125175736845,0.999982059001923,
- 0.00380393816158175,2.36072742154647e-006,0.999992728233337,0.00145900540519506,-0.000499229063279927,0.999998807907104,-0.0114637017250061,-0.0113892247900367,0.999869406223297,-0.0117779700085521,-0.0102927200496197,0.999877572059631,0.00380393816158175,2.36072742154647e-006,0.999992728233337,-0.000623341999016702,0.0013145114062354,0.999998927116394,-0.0108824279159307,-0.0119467712938786,0.999869406223297,-0.0114637017250061,-0.0113892247900367,0.999869406223297,0.00145900540519506,-0.000499229063279927,0.999998807907104,0.00189320079516619,0.00442301854491234,0.999988436698914,-0.0118402866646647,-0.0111991297453642,0.999867081642151,-0.0110469125211239,-0.0102442326024175,0.999886512756348,0.000408481020713225,0.00266379490494728,0.999996364116669,-0.012977977283299,-0.0110362619161606,0.999854922294617,-0.0113060558214784,-0.0124508114531636,0.999858558177948,0.0023412921000272,0.00483859144151211,0.999985575675964,0.00465910276398063,0.00298063503578305,0.999984741210938,0.00555794034153223,0.00224125175736845,0.999982059001923,-0.0121112242341042,-0.0104242274537683,0.999872267246246,-0.012977977283299,-0.0110362619161606,0.999854922294617,0.00465910276398063,0.00298063503578305,0.999984741210938,-0.00342581258155406,-0.00272578629665077,-0.999990463256836,0.00489209871739149,0.00754564860835671,-0.999959588050842,0.0035259104333818,0.00577014405280352,-0.999977111816406,-0.00345033523626626,-0.00270396540872753,-0.999990403652191,0.00478132627904415,0.00705013377591968,-0.999963760375977,-0.0039750556461513,-0.0033226974774152,-0.999986588954926,-0.00396203715354204,-0.00330704473890364,-0.999986708164215,0.00477576069533825,0.00704577332362533,-0.999963760375977,-0.00342253432609141,-0.00272885081358254,-0.999990463256836,0.00346134533174336,0.00583333289250731,-0.999976992607117,0.00345569686032832,0.00583736645057797,-0.999976992607117,-0.00342669058591127,-0.00272666104137897,-0.999990463256836,0.0049697863869369,0.0068556247279048,-0.99996417760849,0.00477830367162824,0.00704390229657292,-0.999963879585266,
- -0.00396007020026445,-0.00330719794146717,-0.999986708164215,-0.00400441791862249,-0.00329170888289809,-0.999986529350281,-0.00345033523626626,-0.00270396540872753,-0.999990403652191,0.0035259104333818,0.00577014405280352,-0.999977111816406,0.0049697863869369,0.0068556247279048,-0.99996417760849,-0.00400441791862249,-0.00329170888289809,-0.999986529350281,-0.00374118331819773,-0.00560826621949673,-0.999977350234985,-0.00342581258155406,-0.00272578629665077,-0.999990463256836,-0.00345033523626626,-0.00270396540872753,-0.999990403652191,-0.00369778275489807,-0.00563795771449804,-0.999977290630341,-0.0039750556461513,-0.0033226974774152,-0.999986588954926,-0.00334568577818573,-0.00467158341780305,-0.999983429908752,-0.00294675561599433,-0.0049890810623765,-0.999983191490173,-0.00396203715354204,-0.00330704473890364,-0.999986708164215,-0.00373556790873408,-0.0056125451810658,-0.999977350234985,-0.00342253432609141,-0.00272885081358254,-0.999990463256836,-0.00342669058591127,-0.00272666104137897,-0.999990463256836,-0.00374027481302619,-0.00560808880254626,-0.999977350234985,-0.00400441791862249,-0.00329170888289809,-0.999986529350281,-0.00396007020026445,-0.00330719794146717,-0.999986708164215,-0.00294821034185588,-0.00498817395418882,-0.999983191490173,-0.00310063106007874,-0.00487452233210206,-0.999983310699463,-0.00369778275489807,-0.00563795771449804,-0.999977290630341,-0.00345033523626626,-0.00270396540872753,-0.999990403652191,-0.00400441791862249,-0.00329170888289809,-0.999986529350281,-0.00310063106007874,-0.00487452233210206,-0.999983310699463,0.00489209871739149,0.00754564860835671,-0.999959588050842,0.000760769529733807,-0.000639170873910189,-0.999999523162842,0.001019686460495,-0.000774996064137667,-0.999999225139618,0.0035259104333818,0.00577014405280352,-0.999977111816406,0.00375977111980319,0.00447529880329967,-0.999983012676239,0.00478132627904415,0.00705013377591968,-0.999963760375977,0.00477576069533825,0.00704577332362533,-0.999963760375977,0.00375637970864773,0.00447363080456853,-0.999982953071594,0.00346134533174336,0.00583333289250731,-0.999976992607117,
- 0.000763536023441702,-0.000641479389742017,-0.999999523162842,0.000760892522521317,-0.000639258534647524,-0.999999523162842,0.00345569686032832,0.00583736645057797,-0.999976992607117,0.00402407022193074,0.00429933052510023,-0.99998265504837,0.00375676760450006,0.00447147618979216,-0.999982953071594,0.00477830367162824,0.00704390229657292,-0.999963879585266,0.0049697863869369,0.0068556247279048,-0.99996417760849,0.0035259104333818,0.00577014405280352,-0.999977111816406,0.001019686460495,-0.000774996064137667,-0.999999225139618,0.00402407022193074,0.00429933052510023,-0.99998265504837,0.0049697863869369,0.0068556247279048,-0.99996417760849,0.63463968038559,0.771670699119568,-0.0419162511825562,0.634588897228241,0.771706223487854,-0.0420309901237488,0.644030749797821,0.764995634555817,-0.0024571418762207,0.642620742321014,0.766171157360077,-0.00452697416767478,0.634732306003571,0.77158260345459,-0.0421328656375408,0.64198100566864,0.766678094863892,0.00806900300085545,0.644030749797821,0.764995634555817,-0.0024571418762207,0.634588897228241,0.771706223487854,-0.0420309901237488,0.635006010532379,0.771368384361267,-0.0419306717813015,0.639090120792389,0.76905882358551,-0.0105997668579221,0.64198100566864,0.766678094863892,0.00806900300085545,0.634732306003571,0.77158260345459,-0.0421328656375408,0.634630978107452,0.771677374839783,-0.041925098747015,0.643205761909485,0.765637516975403,-0.00924643315374851,0.64327996969223,0.765575170516968,-0.00924630276858807,0.63458263874054,0.771704614162445,-0.0421540625393391,0.640569567680359,0.767858803272247,0.00797607190907002,0.639089643955231,0.769059181213379,-0.0105997007340193,0.635005354881287,0.77136904001236,-0.0419306941330433,0.634748160839081,0.771569073200226,-0.042143277823925,0.63463968038559,0.771670699119568,-0.0419162511825562,0.642620742321014,0.766171157360077,-0.00452697416767478,0.640569567680359,0.767858803272247,0.00797607190907002,0.634748160839081,0.771569073200226,-0.042143277823925,0.642620742321014,0.766171157360077,-0.00452697416767478,0.644030749797821,0.764995634555817,-0.0024571418762207,
- 0.647686243057251,0.761552035808563,0.023260772228241,0.647668302059174,0.761574029922485,0.0230362247675657,0.64198100566864,0.766678094863892,0.00806900300085545,0.647602736949921,0.76162314414978,0.0232583358883858,0.647686243057251,0.761552035808563,0.023260772228241,0.644030749797821,0.764995634555817,-0.0024571418762207,0.639090120792389,0.76905882358551,-0.0105997668579221,0.647733271121979,0.761502146720886,0.0235829781740904,0.647602736949921,0.76162314414978,0.0232583358883858,0.64198100566864,0.766678094863892,0.00806900300085545,0.643205761909485,0.765637516975403,-0.00924643315374851,0.647695779800415,0.761548280715942,0.0231173131614923,0.64770120382309,0.761531591415405,0.0235099829733372,0.64327996969223,0.765575170516968,-0.00924630276858807,0.647605240345001,0.76162189245224,0.0232264921069145,0.647732675075531,0.761502623558044,0.0235830061137676,0.639089643955231,0.769059181213379,-0.0105997007340193,0.640569567680359,0.767858803272247,0.00797607190907002,0.642620742321014,0.766171157360077,-0.00452697416767478,0.647668302059174,0.761574029922485,0.0230362247675657,0.647605240345001,0.76162189245224,0.0232264921069145,0.640569567680359,0.767858803272247,0.00797607190907002,0.647668302059174,0.761574029922485,0.0230362247675657,0.647686243057251,0.761552035808563,0.023260772228241,0.642883956432343,0.7659632563591,0.000789385172538459,0.643462121486664,0.765477955341339,-0.000269194570137188,0.647602736949921,0.76162314414978,0.0232583358883858,0.643523812294006,0.765408992767334,-0.00512691307812929,0.642883956432343,0.7659632563591,0.000789385172538459,0.647686243057251,0.761552035808563,0.023260772228241,0.647733271121979,0.761502146720886,0.0235829781740904,0.645072400569916,0.764093279838562,0.00655062450096011,0.643523812294006,0.765408992767334,-0.00512691307812929,0.647602736949921,0.76162314414978,0.0232583358883858,0.647695779800415,0.761548280715942,0.0231173131614923,0.643261969089508,0.765637814998627,0.00358504359610379,0.643277227878571,0.765624940395355,0.00358521472662687,0.64770120382309,0.761531591415405,0.0235099829733372,
- 0.644257843494415,0.764790892601013,-0.00517270807176828,0.645071804523468,0.764093935489655,0.0065505625680089,0.647732675075531,0.761502623558044,0.0235830061137676,0.647605240345001,0.76162189245224,0.0232264921069145,0.647668302059174,0.761574029922485,0.0230362247675657,0.643462121486664,0.765477955341339,-0.000269194570137188,0.644257843494415,0.764790892601013,-0.00517270807176828,0.647605240345001,0.76162189245224,0.0232264921069145,0.643462121486664,0.765477955341339,-0.000269194570137188,0.642883956432343,0.7659632563591,0.000789385172538459,0.640378773212433,0.767902553081512,-0.0155143085867167,0.640378832817078,0.767902553081512,-0.0155139323323965,0.643523812294006,0.765408992767334,-0.00512691307812929,0.640377521514893,0.767903327941895,-0.0155334239825606,0.640378773212433,0.767902553081512,-0.0155143085867167,0.642883956432343,0.7659632563591,0.000789385172538459,0.645072400569916,0.764093279838562,0.00655062450096011,0.640375316143036,0.767905175685883,-0.0155357997864485,0.640377521514893,0.767903327941895,-0.0155334239825606,0.643523812294006,0.765408992767334,-0.00512691307812929,0.643261969089508,0.765637814998627,0.00358504359610379,0.640371263027191,0.767908096313477,-0.0155559591948986,0.640371203422546,0.767908036708832,-0.0155556099489331,0.643277227878571,0.765624940395355,0.00358521472662687,0.640380084514618,0.767901122570038,-0.0155332963913679,0.640374779701233,0.767905473709106,-0.0155358929187059,0.645071804523468,0.764093935489655,0.0065505625680089,0.644257843494415,0.764790892601013,-0.00517270807176828,0.643462121486664,0.765477955341339,-0.000269194570137188,0.640378832817078,0.767902553081512,-0.0155139323323965,0.640380084514618,0.767901122570038,-0.0155332963913679,0.644257843494415,0.764790892601013,-0.00517270807176828,-0.644115567207336,-0.764888405799866,-0.00780567014589906,-0.642315030097961,-0.766383230686188,-0.00938404258340597,-0.643660366535187,-0.765199482440948,0.0130889527499676,-0.643688797950745,-0.765175700187683,0.0130765354260802,-0.64191085100174,-0.766762375831604,0.0050704013556242,
- -0.643454968929291,-0.765367448329926,0.0133636239916086,-0.643660366535187,-0.765199482440948,0.0130889527499676,-0.642315030097961,-0.766383230686188,-0.00938404258340597,-0.642316222190857,-0.766399264335632,-0.00787640828639269,-0.643417298793793,-0.765398502349854,0.0133967902511358,-0.643454968929291,-0.765367448329926,0.0133636239916086,-0.64191085100174,-0.766762375831604,0.0050704013556242,-0.643229484558105,-0.765569388866425,-0.0126272775232792,-0.643669188022614,-0.765180289745331,0.0137497270479798,-0.643669307231903,-0.765180349349976,0.013749728910625,-0.643218219280243,-0.765578866004944,-0.0126274721696973,-0.643888890743256,-0.765002131462097,0.0133689697831869,-0.643926978111267,-0.764969706535339,0.0134021127596498,-0.642809867858887,-0.765985190868378,-0.00787875428795815,-0.643643260002136,-0.765308439731598,0.00513279717415571,-0.644115567207336,-0.764888405799866,-0.00780567014589906,-0.643688797950745,-0.765175700187683,0.0130765354260802,-0.643888890743256,-0.765002131462097,0.0133689697831869,-0.643643260002136,-0.765308439731598,0.00513279717415571,-0.638380169868469,-0.769564270973206,-0.0155366277322173,-0.638481020927429,-0.769489526748657,-0.015097345225513,-0.642315030097961,-0.766383230686188,-0.00938404258340597,-0.644115567207336,-0.764888405799866,-0.00780567014589906,-0.638380169868469,-0.769564270973206,-0.0155366277322173,-0.644115567207336,-0.764888405799866,-0.00780567014589906,-0.643643260002136,-0.765308439731598,0.00513279717415571,-0.638495206832886,-0.769377171993256,-0.0195616837590933,-0.642809867858887,-0.765985190868378,-0.00787875428795815,-0.640561699867249,-0.767900705337524,-0.00300118024460971,-0.638495206832886,-0.769377171993256,-0.0195616837590933,-0.643643260002136,-0.765308439731598,0.00513279717415571,-0.642542839050293,-0.766181349754334,-0.0102342069149017,-0.643229484558105,-0.765569388866425,-0.0126272775232792,-0.643218219280243,-0.765578866004944,-0.0126274721696973,-0.642563343048096,-0.766189277172089,-0.00813638512045145,-0.640063464641571,-0.768317401409149,0.00269009033218026,
- -0.642316222190857,-0.766399264335632,-0.00787640828639269,-0.64191085100174,-0.766762375831604,0.0050704013556242,-0.638814628124237,-0.769186794757843,-0.0163530316203833,-0.638814628124237,-0.769186794757843,-0.0163530316203833,-0.64191085100174,-0.766762375831604,0.0050704013556242,-0.642315030097961,-0.766383230686188,-0.00938404258340597,-0.638481020927429,-0.769489526748657,-0.015097345225513,-0.648369669914246,-0.761249721050262,-0.0107481218874455,-0.648031771183014,-0.761478126049042,-0.0143514182418585,-0.638481020927429,-0.769489526748657,-0.015097345225513,-0.638380169868469,-0.769564270973206,-0.0155366277322173,-0.649977505207062,-0.759924650192261,-0.00661029713228345,-0.638814628124237,-0.769186794757843,-0.0163530316203833,-0.638481020927429,-0.769489526748657,-0.015097345225513,-0.648031771183014,-0.761478126049042,-0.0143514182418585,-0.649968385696411,-0.759242057800293,-0.0330539792776108,-0.640063464641571,-0.768317401409149,0.00269009033218026,-0.638814628124237,-0.769186794757843,-0.0163530316203833,-0.649977505207062,-0.759924650192261,-0.00661029713228345,-0.644122123718262,-0.764761507511139,-0.0156978499144316,-0.642542839050293,-0.766181349754334,-0.0102342069149017,-0.642563343048096,-0.766189277172089,-0.00813638512045145,-0.644117414951324,-0.764701962471008,-0.0185394529253244,-0.638495206832886,-0.769377171993256,-0.0195616837590933,-0.640561699867249,-0.767900705337524,-0.00300118024460971,-0.650617957115173,-0.759034216403961,-0.0237382147461176,-0.651553571224213,-0.758581876754761,-0.00559797463938594,-0.648369669914246,-0.761249721050262,-0.0107481218874455,-0.638380169868469,-0.769564270973206,-0.0155366277322173,-0.638495206832886,-0.769377171993256,-0.0195616837590933,-0.651553571224213,-0.758581876754761,-0.00559797463938594,-0.646530568599701,-0.762692391872406,-0.0172767844051123,-0.650452256202698,-0.758312940597534,-0.043282475322485,-0.647130906581879,-0.761148810386658,-0.0432890094816685,-0.64339405298233,-0.765534520149231,-0.0010037476895377,-0.650803923606873,-0.75919246673584,-0.00900184828788042,
- -0.650711357593536,-0.759097099304199,-0.0186103153973818,-0.650287449359894,-0.758613109588623,-0.0404052957892418,-0.645977854728699,-0.763222932815552,-0.0142591390758753,-0.646015822887421,-0.76313704252243,-0.0168958678841591,0.642251789569855,0.766234576702118,-0.0199295971542597,0.643652319908142,0.765110969543457,-0.0177969112992287,0.634588897228241,0.771706223487854,-0.0420309901237488,0.63463968038559,0.771670699119568,-0.0419162511825562,0.641295671463013,0.767256915569305,-0.00752515625208616,0.634732306003571,0.77158260345459,-0.0421328656375408,0.634588897228241,0.771706223487854,-0.0420309901237488,0.643652319908142,0.765110969543457,-0.0177969112992287,0.646097600460052,0.763240873813629,0.00459145754575729,0.635006010532379,0.771368384361267,-0.0419306717813015,0.634732306003571,0.77158260345459,-0.0421328656375408,0.641295671463013,0.767256915569305,-0.00752515625208616,0.651591539382935,0.758438050746918,-0.014147118665278,0.634630978107452,0.771677374839783,-0.041925098747015,0.63458263874054,0.771704614162445,-0.0421540625393391,0.651456713676453,0.758553862571716,-0.0141463819891214,0.634748160839081,0.771569073200226,-0.042143277823925,0.635005354881287,0.77136904001236,-0.0419306941330433,0.64609694480896,0.763241529464722,0.00459027010947466,0.640504121780396,0.767911493778229,-0.00814145058393478,0.642251789569855,0.766234576702118,-0.0199295971542597,0.63463968038559,0.771670699119568,-0.0419162511825562,0.634748160839081,0.771569073200226,-0.042143277823925,0.640504121780396,0.767911493778229,-0.00814145058393478,-0.646988987922668,-0.76213002204895,-0.0237301848828793,-0.645140290260315,-0.763418257236481,-0.0314109176397324,-0.648031771183014,-0.761478126049042,-0.0143514182418585,-0.648369669914246,-0.761249721050262,-0.0107481218874455,-0.646988987922668,-0.76213002204895,-0.0237301848828793,-0.648369669914246,-0.761249721050262,-0.0107481218874455,-0.651553571224213,-0.758581876754761,-0.00559797463938594,-0.64790678024292,-0.76159405708313,-0.0138326222077012,-0.650617957115173,-0.759034216403961,-0.0237382147461176,
- -0.642193496227264,-0.766538977622986,0.00234608980827034,-0.64790678024292,-0.76159405708313,-0.0138326222077012,-0.651553571224213,-0.758581876754761,-0.00559797463938594,-0.643191814422607,-0.765460133552551,-0.0193668976426125,-0.644122123718262,-0.764761507511139,-0.0156978499144316,-0.644117414951324,-0.764701962471008,-0.0185394529253244,-0.643106281757355,-0.765428066253662,-0.0231119841337204,-0.641680061817169,-0.766968965530396,0.00228325184434652,-0.649968385696411,-0.759242057800293,-0.0330539792776108,-0.649977505207062,-0.759924650192261,-0.00661029713228345,-0.647048771381378,-0.762198209762573,-0.0195378251373768,-0.647048771381378,-0.762198209762573,-0.0195378251373768,-0.649977505207062,-0.759924650192261,-0.00661029713228345,-0.648031771183014,-0.761478126049042,-0.0143514182418585,-0.645140290260315,-0.763418257236481,-0.0314109176397324,0.656464338302612,0.754237771034241,0.01342355273664,0.656464278697968,0.754237711429596,0.0134222442284226,0.651591539382935,0.758438050746918,-0.014147118665278,0.651456713676453,0.758553862571716,-0.0141463819891214,0.64555948972702,0.763596415519714,0.0131697617471218,0.645559728145599,0.76359623670578,0.0131691675633192,0.643652319908142,0.765110969543457,-0.0177969112992287,0.642251789569855,0.766234576702118,-0.0199295971542597,0.64920836687088,0.760496616363525,0.0131717948243022,0.656465291976929,0.754238367080688,0.0133433016017079,0.646097600460052,0.763240873813629,0.00459145754575729,0.641295671463013,0.767256915569305,-0.00752515625208616,0.645559728145599,0.76359623670578,0.0131691675633192,0.64920836687088,0.760496616363525,0.0131717948243022,0.641295671463013,0.767256915569305,-0.00752515625208616,0.643652319908142,0.765110969543457,-0.0177969112992287,0.649203956127167,0.760496497154236,0.0133964223787189,0.64555948972702,0.763596415519714,0.0131697617471218,0.642251789569855,0.766234576702118,-0.0199295971542597,0.640504121780396,0.767911493778229,-0.00814145058393478,0,-0,-1,0,-7.16502370323724e-007,-1,0,-3.99909254156228e-007,-1,0,0,-1,0,1.16638489089382e-007,-1,
- 0,-3.99909254156228e-007,-1,-1.39169600288369e-008,-3.55917552374851e-011,-1,-4.63070719547432e-008,1.79689862989108e-009,-1,-5.67057298894724e-008,2.14610773596746e-009,-1,-3.47923858612376e-008,-8.89794071756711e-011,-1,9.93756827938341e-008,4.36466462971907e-009,-1,1.1133421651266e-007,2.83969014969188e-010,-1,1.1133421651266e-007,2.83969098235914e-010,-1,9.93433957319212e-008,4.26808810516377e-009,-1,9.72128599840971e-010,-3.80137691990967e-007,-1,6.4808614030909e-010,-2.53425298524235e-007,-1,3.24081178559865e-010,-1.26712919268357e-007,-1,6.48161024852101e-010,-2.53425298524235e-007,-1,4.25113588775616e-009,1.03408837048846e-007,-1,-5.49791812076705e-009,1.18970532980711e-007,-1,-5.49256284898547e-009,1.18971016149771e-007,-1,4.24694501788281e-009,1.03407501228503e-007,-1,0.999996662139893,0.00259455107152462,-0,0.999996662139893,0.002561952220276,0,0.999996900558472,0.00252874870784581,0,0.999996840953827,0.00252466299571097,0,0.999996781349182,0.00253865635022521,0,0.999996781349182,0.00257651158608496,0,-5.67057298894724e-008,2.14610773596746e-009,-1,-4.63070719547432e-008,1.79689862989108e-009,-1,-2.67694177935596e-009,5.7983452705912e-008,-1,-2.67965516442814e-009,5.79857264426664e-008,-1,9.93756827938341e-008,4.36466462971907e-009,-1,9.93433957319212e-008,4.26808810516377e-009,-1,4.25113588775616e-009,1.03408837048846e-007,-1,4.24694501788281e-009,1.03407501228503e-007,-1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-2.47655236762512e-007,-2.94766493880161e-007,1,-2.66383946012638e-008,-9.83299173640262e-007,1,2.21016719592626e-007,-6.88532281856169e-007,1,-0,0,1,-3.49976562574739e-006,2.43658359977417e-006,1,-4.78463903164084e-007,-1.01403863084215e-007,1,-5.76611955693807e-006,-2.61346031038556e-007,1,-8.78734590514796e-006,2.27665304919356e-006,1,-5.35668186785188e-006,4.10938991990406e-006,1,-3.96363884647144e-006,5.24538791069062e-007,1,-1.3813018995279e-006,-1.64450057127397e-006,1,-2.77440221907455e-006,1.9403332771617e-006,1,-3.53980652789687e-007,2.97446490549191e-007,1,-8.90219808979964e-008,7.48046957710358e-008,1,
- 1.75936733626259e-007,-1.47838633779429e-007,1,-8.9022151428253e-008,7.48044470810783e-008,1,-1.06022969248443e-006,7.58056273753027e-007,1,-7.40006669275317e-007,1.29145377059103e-007,1,-2.42511134729284e-007,-2.88722986852008e-007,1,-5.62739728593442e-007,3.40187000347214e-007,1,-4.16646003031929e-007,-2.47891193794203e-007,1,-3.91134960864292e-007,3.28605466393128e-007,1,-6.85621103002632e-007,-2.19175859683673e-008,1,-7.11130269337446e-007,-5.9841391930604e-007,1,-4.4159244794173e-007,1.50271759480347e-007,1,-9.43097745675914e-007,5.7165260614056e-007,1,-6.90288686655549e-007,-1.45713173083095e-007,1,-1.88781285714867e-007,-5.67093138670316e-007,1,-9.08732715743099e-007,4.28797704898898e-007,1,-1.23303686905274e-006,1.72856005065114e-008,1,-1.22045992156927e-006,6.71828992437895e-009,1,-8.96155711416213e-007,4.18230513332674e-007,1,-2.70071382146853e-007,8.65449862885725e-008,1,-6.06914682066417e-007,1.40983047458576e-007,1,-8.31151169222721e-007,3.29419066247283e-007,1,-4.94310882004356e-007,2.74981260872664e-007,1,2.63223007834767e-008,3.13359258541368e-008,1,1.07949933436657e-008,1.21198070246464e-007,1,-4.25653290392347e-008,1.6602069763394e-007,1,-2.70380695610584e-008,7.615884101142e-008,1,-1.74845766309772e-007,2.80491647686176e-008,1,-4.81495931126119e-007,-3.48839606090223e-008,1,-3.23616603736809e-007,1.53037149175361e-007,1,-1.69661671378663e-008,2.15970274553001e-007,1,-9.98033087284966e-008,1.73763027078166e-007,1,-1.16600652688703e-007,1.87878399060537e-007,1,-4.19157970554807e-008,2.42649434767372e-007,1,-2.51184459898468e-008,2.28534076995857e-007,1,-5.84593351504736e-007,3.91326040016793e-007,1,-3.76997604689677e-007,9.48344904827536e-008,1,-1.09265627656896e-007,-1.30071626358585e-007,1,-3.16862809768281e-007,1.6641934053041e-007,1,-0.0250035393983126,-0.029760617762804,0.999244272708893,-0.0125042488798499,-0.0148831177502871,0.999811112880707,-2.33629791068779e-007,8.99487417882483e-009,1,-0.0125042498111725,-0.0148831177502871,0.999811112880707,-6.5492517023813e-005,5.47801173524931e-005,1,
- -0.00026570912450552,0.00022299746342469,0.999999940395355,-6.5492517023813e-005,5.47801064385567e-005,1,0.000134724090457894,-0.000113437235995661,1,-5.79906327402568e-007,1.38414065986581e-007,1,-3.60792114406649e-007,-4.56624675848616e-008,1,-1.41677858778166e-007,-2.29738944312885e-007,1,-3.6079208598494e-007,-4.56624391631522e-008,1,0.0193200074136257,0.018119178712368,0.999649167060852,0.00664172926917672,0.00988777354359627,0.999929070472717,-0.00267198076471686,-0.00118960265535861,0.999995648860931,0.0177193619310856,0.0164679381996393,0.999707460403442,0.00431532226502895,0.000526869611348957,0.999990522861481,0.00866916961967945,0.00543275941163301,0.999947607517242,0.0199780147522688,0.0173949841409922,0.999649167060852,0.0179543010890484,0.0153627898544073,0.999720811843872,0.00841904804110527,0.0063948780298233,0.999944031238556,0.00634588487446308,0.00798371434211731,0.999947965145111,0.0188576858490705,0.020035233348608,0.999621450901031,0.0204495750367641,0.0187364928424358,0.99961531162262,0.0195555426180363,0.0180305689573288,0.999646186828613,0.0181635972112417,0.0192052330821753,0.999650597572327,0.00191331328824162,0.00271124835126102,0.999994516372681,0.00368286506272852,0.00127192225772887,0.999992430210114,0.00627410970628262,0.00591766834259033,-0.99996280670166,-0.0037355674430728,-0.00561254564672709,-0.999977350234985,-0.00374027458019555,-0.00560808926820755,-0.999977350234985,0.00627254135906696,0.00592116778716445,-0.99996280670166,0.00627123983576894,0.00591969257220626,-0.99996280670166,-0.00374118331819773,-0.00560826621949673,-0.999977350234985,-0.00369778345339,-0.00563795678317547,-0.999977290630341,0.00615305686369538,0.00597921526059508,-0.999963164329529,-0.00310063175857067,-0.00487452326342463,-0.999983310699463,-0.0029482115060091,-0.00498817535117269,-0.999983191490173,0.00487238587811589,0.00353416567668319,-0.999981880187988,0.0047523146495223,0.00361770717427135,-0.999982178211212,-0.00334568414837122,-0.0046715815551579,-0.999983429908752,0.00487888464704156,0.00353510561399162,-0.999981939792633,
- 0.00487698707729578,0.00353218265809119,-0.999981880187988,-0.0029467549175024,-0.00498907919973135,-0.999983191490173,0.0195555426180363,0.0180305689573288,0.999646186828613,0.00368286506272852,0.00127192225772887,0.999992430210114,0.00431532226502895,0.000526869611348957,0.999990522861481,0.0179543010890484,0.0153627898544073,0.999720811843872,0.0199780147522688,0.0173949841409922,0.999649167060852,0.00866916961967945,0.00543275941163301,0.999947607517242,0.00841904804110527,0.0063948780298233,0.999944031238556,0.0204495750367641,0.0187364928424358,0.99961531162262,0.00615305686369538,0.00597921526059508,-0.999963164329529,-0.00369778345339,-0.00563795678317547,-0.999977290630341,-0.00310063175857067,-0.00487452326342463,-0.999983310699463,0.0047523146495223,0.00361770717427135,-0.999982178211212,0.00368286506272852,0.00127192225772887,0.999992430210114,-0.010660314001143,-0.0134221771731973,0.999853014945984,-0.00936353486031294,-0.0142960231751204,0.999854028224945,0.00431532226502895,0.000526869611348957,0.999990522861481,0.00191331328824162,0.00271124835126102,0.999994516372681,-0.012695649638772,-0.0116814514622092,0.999851167201996,-0.010660314001143,-0.0134221771731973,0.999853014945984,0.00368286506272852,0.00127192225772887,0.999992430210114,0.00664172926917672,0.00988777354359627,0.999929070472717,-0.0112074119970202,-0.00991436373442411,0.999888122081757,-0.0126934228464961,-0.0116831976920366,0.999851286411285,-0.00267198076471686,-0.00118960265535861,0.999995648860931,0.00866916961967945,0.00543275941163301,0.999947607517242,-0.00722435768693686,-0.0118216658011079,0.999904036521912,-0.00764424446970224,-0.00983609911054373,0.999922394752502,0.00841904804110527,0.0063948780298233,0.999944031238556,-0.00656977575272322,-0.00717064924538136,-0.999952673912048,0.00448373658582568,0.00683534750714898,-0.999966621398926,0.00396219035610557,0.00633062934502959,-0.999972105026245,-0.0054962569847703,-0.0055329529568553,-0.99996954202652,-0.00374118331819773,-0.00560826621949673,-0.999977350234985,-0.00184301496483386,-0.00140826450660825,-0.999997317790985,
- -0.00656977575272322,-0.00717064924538136,-0.999952673912048,-0.00369778345339,-0.00563795678317547,-0.999977290630341,-0.00490493373945355,-0.00512404879555106,-0.99997490644455,-0.00334568414837122,-0.0046715815551579,-0.999983429908752,-0.0029467549175024,-0.00498907919973135,-0.999983191490173,-0.00486233830451965,-0.00515020405873656,-0.999974966049194,-0.0037355674430728,-0.00561254564672709,-0.999977350234985,-0.00838234461843967,-0.00933635886758566,-0.999921381473541,-0.00236621382646263,-0.00216762907803059,-0.999994814395905,-0.00374027458019555,-0.00560808926820755,-0.999977350234985,-0.0054962569847703,-0.0055329529568553,-0.99996954202652,-0.00538501748815179,-0.0056059118360281,-0.999969840049744,-0.0029482115060091,-0.00498817535117269,-0.999983191490173,-0.00310063175857067,-0.00487452326342463,-0.999983310699463,-0.00369778345339,-0.00563795678317547,-0.999977290630341,-0.00656977575272322,-0.00717064924538136,-0.999952673912048,-0.0054962569847703,-0.0055329529568553,-0.99996954202652,-0.00310063175857067,-0.00487452326342463,-0.999983310699463,-0.00184301496483386,-0.00140826450660825,-0.999997317790985,0.00344939762726426,0.0056235296651721,-0.999978244304657,0.00448373658582568,0.00683534750714898,-0.999966621398926,-0.00656977575272322,-0.00717064924538136,-0.999952673912048,-0.00838234461843967,-0.00933635886758566,-0.999921381473541,0.00343431625515223,0.00522624980658293,-0.999980449676514,0.00336928828619421,0.00514879543334246,-0.999981164932251,-0.00236621382646263,-0.00216762907803059,-0.999994814395905,0.643023669719696,0.765522301197052,0.0222762003540993,0.64765477180481,0.761579036712646,0.0232546795159578,0.647670805454254,0.761565208435059,0.0232593659311533,0.647994458675385,0.761271893978119,0.023840581998229,0.654130339622498,0.756214916706085,0.015890009701252,0.638705432415009,0.769251763820648,0.0175239406526089,0.647733271121979,0.761502146720886,0.0235831569880247,0.64765477180481,0.761579036712646,0.0232546795159578,0.643023669719696,0.765522301197052,0.0222762003540993,
- 0.647607684135437,0.761620879173279,0.0231921058148146,0.647733509540558,0.761502683162689,0.0235559418797493,0.648000299930573,0.761265754699707,0.0238757375627756,0.647991120815277,0.761273622512817,0.0238738059997559,0.647654294967651,0.76158595085144,0.0230381358414888,0.647670805454254,0.761565208435059,0.0232593659311533,0.642883956432343,0.765963196754456,0.000789387500844896,0.643462300300598,0.765477776527405,-0.000269216892775148,0.64765477180481,0.761579036712646,0.0232546795159578,0.643523812294006,0.765408992767334,-0.0051272171549499,0.642883956432343,0.765963196754456,0.000789387500844896,0.647670805454254,0.761565208435059,0.0232593659311533,0.647733271121979,0.761502146720886,0.0235831569880247,0.645072400569916,0.764093279838562,0.00655063055455685,0.643523812294006,0.765408992767334,-0.0051272171549499,0.64765477180481,0.761579036712646,0.0232546795159578,0.647692084312439,0.761551380157471,0.0231175776571035,0.643261730670929,0.765637934207916,0.00358504359610379,0.643276929855347,0.76562511920929,0.00358521426096559,0.647695958614349,0.761533081531525,0.0236079022288322,0.64425790309906,0.764790892601013,-0.00517339166253805,0.645071804523468,0.764093935489655,0.00655022542923689,0.647733509540558,0.761502683162689,0.0235559418797493,0.647607684135437,0.761620879173279,0.0231921058148146,0.647654294967651,0.76158595085144,0.0230381358414888,0.643462300300598,0.765477776527405,-0.000269216892775148,0.64425790309906,0.764790892601013,-0.00517339166253805,0.647607684135437,0.761620879173279,0.0231921058148146,0.643462300300598,0.765477776527405,-0.000269216892775148,0.642883956432343,0.765963196754456,0.000789387500844896,0.640378952026367,0.767902433872223,-0.0155142936855555,0.640378952026367,0.767902553081512,-0.0155139407142997,0.643523812294006,0.765408992767334,-0.0051272171549499,0.640377521514893,0.767903327941895,-0.0155335199087858,0.640378952026367,0.767902433872223,-0.0155142936855555,0.642883956432343,0.765963196754456,0.000789387500844896,0.645072400569916,0.764093279838562,0.00655063055455685,
- 0.640375316143036,0.767905175685883,-0.0155358985066414,0.640377521514893,0.767903327941895,-0.0155335199087858,0.643523812294006,0.765408992767334,-0.0051272171549499,0.643261730670929,0.765637934207916,0.00358504359610379,0.640371263027191,0.767907977104187,-0.0155559573322535,0.640371263027191,0.767907977104187,-0.0155556099489331,0.643276929855347,0.76562511920929,0.00358521426096559,0.640380084514618,0.767901062965393,-0.0155338607728481,0.640374720096588,0.767905473709106,-0.0155368484556675,0.645071804523468,0.764093935489655,0.00655022542923689,0.64425790309906,0.764790892601013,-0.00517339166253805,0.643462300300598,0.765477776527405,-0.000269216892775148,0.640378952026367,0.767902553081512,-0.0155139407142997,0.640380084514618,0.767901062965393,-0.0155338607728481,0.64425790309906,0.764790892601013,-0.00517339166253805,-3.90363297242402e-008,-9.98330307311335e-011,-1,-6.5341950516995e-008,2.47295828259553e-009,-1,-4.75698271884539e-008,6.54777121411598e-010,-1,-1.44420644332399e-008,-3.69347226414352e-011,-1,9.24778333910581e-008,3.97312271971373e-009,-1,1.2142831451456e-007,3.09715086910245e-010,-1,1.15563175029365e-007,2.94755553298387e-010,-1,1.13567054427222e-007,2.14804751763609e-009,-1,1.00917074696838e-009,-3.94576943563152e-007,-1,6.72740030349672e-010,-2.63035474290518e-007,-1,3.3634967033791e-010,-1.31494019228739e-007,-1,6.72820799074714e-010,-2.63035474290518e-007,-1,9.24778333910581e-008,3.97312271971373e-009,-1,1.13567054427222e-007,2.14804751763609e-009,-1,4.2107912712197e-009,7.37060688038582e-008,-1,3.49940476596089e-009,8.51229842169232e-008,-1,-2.58217340842748e-008,-3.07332683746608e-008,1,-2.46559768157795e-008,-2.934577025826e-008,1,-2.58217340842748e-008,-3.07332683746608e-008,1,-2.6987493129127e-008,-3.2120762938348e-008,1,-1.05328194877075e-006,-2.37819975268394e-007,1,-7.49175001146796e-007,1.24152109037823e-007,1,-4.45068224053102e-007,4.86124349663442e-007,1,-7.49175057990215e-007,1.24152165881242e-007,1,-3.42961101296169e-007,-4.08179289479449e-007,1,-8.06006710263318e-007,-1.91183033848574e-008,1,
- -1.26905229080876e-006,3.69942625866315e-007,1,-8.06006710263318e-007,-1.91183460174216e-008,1,5.01321579804426e-008,-4.21227746016939e-008,1,5.14124494088719e-008,-4.319852209278e-008,1,5.26927408373012e-008,-4.4274258925725e-008,1,5.14124494088719e-008,-4.31985185400663e-008,1,-8.32554380991724e-009,-9.91001947170389e-009,1,-4.33855529280436e-009,-5.16424814023253e-009,1,-8.32554292173882e-009,-9.91001947170389e-009,1,-1.23125305506733e-008,-1.4655790359086e-008,1,-2.84651910931188e-008,-3.38804859723041e-008,1,-1.07264757076564e-008,-1.27671073713032e-008,1,-2.84651946458325e-008,-3.38804824195904e-008,1,-4.62039118076518e-008,-5.49938583560561e-008,1,8.74323831112633e-008,1.0406690620357e-007,1,9.08611355043831e-008,1.08148000776964e-007,1,9.42898950029303e-008,1.12229095350358e-007,1,9.08611355043831e-008,1.08148000776964e-007,1,2.56523922104179e-008,-2.15509281531467e-008,1,5.20323197861217e-008,-4.37130722730217e-008,1,7.84122491381822e-008,-6.58752128401829e-008,1,5.20323197861217e-008,-4.37130722730217e-008,1,-7.69636727682155e-008,6.46506919110834e-008,1,-1.0197658184552e-007,8.56619379874246e-008,1,-7.69636727682155e-008,6.46506919110834e-008,1,-5.19507601381974e-008,4.36394529401696e-008,1,-6.8259737417975e-007,-2.10342676609798e-008,1,-9.32578132051276e-007,-3.18571011348467e-007,1,-6.82597317336331e-007,-2.10342960826893e-008,1,-4.32616531043095e-007,2.76502476026508e-007,1,-9.16716885512869e-007,-2.26565333605322e-007,1,-6.4945459143928e-007,9.15625264497066e-008,1,-3.82192212100563e-007,4.09690358083026e-007,1,-6.4945459143928e-007,9.15625122388519e-008,1,-1.26584166082466e-006,-3.28679061745163e-009,1,-1.27240730307676e-006,2.22838369978717e-009,1,-1.2789730590157e-006,7.74348496435096e-009,1,-1.2724074167636e-006,2.22831042506755e-009,1,-7.84002850195975e-007,-1.83098094908019e-007,1,-5.56221948500024e-007,8.80163284477931e-008,1,-3.28440989960654e-007,3.59130694960186e-007,1,-5.56221948500024e-007,8.80163284477931e-008,1,-3.58091796215376e-008,-4.30282902641466e-008,1,-2.15660573843479e-008,-2.59137618030536e-008,1,
- -3.58091831742513e-008,-4.30282867114329e-008,1,-5.00523071877979e-008,-6.01428169488827e-008,1,4.0106030496645e-008,-3.37016530238543e-008,1,6.13572552765618e-008,-5.15593541194903e-008,1,8.26084871619059e-008,-6.94170552151263e-008,1,6.13572552765618e-008,-5.15593541194903e-008,1,-8.08691709153209e-008,6.7914641022071e-008,1,-7.96814774162158e-008,6.69172095513204e-008,1,-8.08691709153209e-008,6.79146339166437e-008,1,-8.20568573089986e-008,6.89120653873943e-008,1,-3.34580398941853e-008,-3.98238206855694e-008,1,0,-0,1,-3.34580398941853e-008,-3.98238242382831e-008,1,-6.69160797883706e-008,-7.96476484765662e-008,1,1.28127325638161e-007,5.09573283125064e-007,1,-2.38715216482888e-008,3.28672854266188e-007,1,-1.75870354723884e-007,1.47772439618166e-007,1,-2.3871507437434e-008,3.28672854266188e-007,1,1.41510014373125e-007,1.68436145031592e-007,1,2.07853112499379e-008,2.69861857304932e-007,1,-9.9939384767822e-008,3.71287597999981e-007,1,2.07853148026516e-008,2.69861857304932e-007,1,-1.09818865112743e-008,-1.30717525692603e-008,1,-6.75596778521026e-009,-8.04163668988167e-009,1,-1.09818856230959e-008,-1.30717525692603e-008,1,-1.52078047932491e-008,-1.81018684486389e-008,1,0,0,1,3.12378247713241e-008,3.7181617784654e-008,1,6.24756566480755e-008,7.4363235569308e-008,1,3.12378283240378e-008,3.7181617784654e-008,1,6.46259721293063e-008,-5.43017790732847e-008,1,4.8856094281291e-008,-4.10511873383257e-008,1,3.30862164332757e-008,-2.7800592050653e-008,1,4.8856094281291e-008,-4.10511873383257e-008,1,-0.0128683550283313,-0.0107961958274245,-0.999858975410461,-0.00835403706878424,-0.00563195487484336,-0.999949336051941,-0.0136915734037757,-0.0113904513418674,-0.999841511249542,-0.0151941906660795,-0.0121540371328592,-0.999810755252838,-0.0146151287481189,-0.0121512757614255,-0.999819338321686,-0.0129099432379007,-0.0121630812063813,-0.999842762947083,0.00119631190318614,0.0139329098165035,-0.999902307987213,0.00437275320291519,0.0116553511470556,-0.999922513961792,-0.0151941906660795,-0.0121540371328592,-0.999810755252838,-0.0128683550283313,-0.0107961958274245,-0.999858975410461,
- -0.0136915734037757,-0.0113904513418674,-0.999841511249542,-0.013842673972249,-0.0119625898078084,-0.999832630157471,0.000996847171336412,0.00076999282464385,-0.999999225139618,-0.00835403706878424,-0.00563195487484336,-0.999949336051941,-0.00500588584691286,-0.00241263187490404,-0.999984622001648,-0.0146151287481189,-0.0121512757614255,-0.999819338321686,-0.00108975288458169,0.00091555155813694,-0.999998986721039,-0.0129099432379007,-0.0121630812063813,-0.999842762947083,-0.644965589046478,-0.763065159320831,-0.0418466068804264,-0.645056962966919,-0.763188362121582,-0.038015354424715,-0.6404709815979,-0.76794958114624,-0.00711243506520987,-0.641324639320374,-0.767220258712769,-0.00870791357010603,-0.647130906581879,-0.761148810386658,-0.0432890094816685,-0.644965589046478,-0.763065159320831,-0.0418466068804264,-0.641324639320374,-0.767220258712769,-0.00870791357010603,-0.64339405298233,-0.765534520149231,-0.0010037476895377,-0.646718800067902,-0.761803269386292,-0.0375572480261326,-0.651203632354736,-0.75797563791275,-0.0375051908195019,-0.652034938335419,-0.757365465164185,-0.0353292673826218,-0.647083282470703,-0.762253165245056,-0.0159165561199188,-0.641973376274109,-0.766726613044739,0.000713489949703217,-0.645056962966919,-0.763188362121582,-0.038015354424715,-0.646718800067902,-0.761803269386292,-0.0375572480261326,-0.641973376274109,-0.766726613044739,0.000713489949703217,-0.6404709815979,-0.76794958114624,-0.00711243506520987,8.88390019326835e-008,1.06765824625654e-007,1,9.44705007555058e-008,1.13533701551205e-007,1,1.00102006683755e-007,1.20301578476756e-007,1,9.44705078609331e-008,1.13533701551205e-007,1,-0.651699721813202,-0.758228898048401,0.0194005947560072,-0.650711357593536,-0.759097099304199,-0.0186103153973818,-0.650803923606873,-0.75919246673584,-0.00900184828788042,-0.651203632354736,-0.75797563791275,-0.0375051908195019,-0.654890835285187,-0.755351364612579,0.0237127710133791,-0.652034938335419,-0.757365465164185,-0.0353292673826218,0,0,-1,0,0,-1,0,0,-1,0,0,-1,4.21885260948329e-007,-1.65994288181537e-006,1,
- -2.21082927964744e-007,-2.42521650761773e-006,1,-6.42968302599911e-007,-7.65273171055014e-007,1,-2.47130417394209e-014,2.07634338325255e-014,1,0,0,1,0,0,1,-0,0,1,0,0,1,4.62852170812766e-007,-2.06004938263504e-006,1,-1.80111769054747e-007,-1.51986375840352e-006,1,1.22243786477411e-014,1.45502049129923e-014,1,6.42964266717172e-007,-5.40187556907767e-007,1,5.3058333833178e-006,-5.96746417613758e-007,1,3.87505360777141e-006,6.05180389356974e-007,1,4.97626217565994e-007,-5.10184577251493e-007,1,1.92843367585738e-006,-1.71211604538257e-006,1,-3.1987872262107e-007,-1.36947392093134e-007,1,3.76798811885237e-006,4.72896454084548e-006,1,-4.22026346313942e-007,-5.1119968702551e-008,1,-4.50983270638972e-006,-4.91702758154133e-006,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-6.16496936345357e-006,4.72883385782552e-007,1,-6.40980897514964e-006,1.81468919890904e-007,1,-3.09655706587364e-006,-3.0993194286566e-006,1,-2.85172086478269e-006,-2.80791186924034e-006,1,-1.08413678390207e-006,-1.49205379784689e-006,1,-2.72263991973887e-006,-1.1576838687688e-007,1,-3.21421407534217e-006,2.62594471678312e-006,1,-1.57572105763393e-006,1.24965765735396e-006,1,-2.89726585833705e-006,6.1316029587033e-008,1,-1.36455651045253e-006,-1.22618496334326e-006,1,-1.94563313016261e-006,1.19415415156254e-006,1,-3.47830064129084e-006,2.48166065830446e-006,1,-1.2176981272205e-006,1.50489483985439e-007,1,-1.64744596986566e-006,-3.61021022854402e-007,1,-5.94839946188586e-007,-3.72808841575534e-007,1,-1.6509059719283e-007,1.38702091589948e-007,1,-1.39277756261436e-006,9.04690580227907e-007,1,-2.47837624556269e-006,-3.87420698189089e-007,1,-2.55289046435792e-006,-2.5289918994531e-006,1,-1.46730633332481e-006,-1.23688437270175e-006,1,-1.80627887402807e-006,3.22369686500679e-007,1,-1.06186314496881e-006,-3.03134470414079e-007,1,1.40573845897052e-007,-3.83543437010303e-007,1,-6.03846615376824e-007,2.41958503011119e-007,1,-3.8708744654059e-008,-2.72875524842675e-007,1,9.8732975573057e-008,-1.09283924132342e-007,1,-1.22378111200305e-007,-2.02580523023244e-007,1,-2.59819870507272e-007,-3.66171974519602e-007,1,
- -2.55231960011315e-008,4.47221538024678e-007,1,7.47683088775375e-008,5.6659547453819e-007,1,3.53500809069374e-007,5.36053050836927e-007,1,2.53209293532564e-007,4.16679085901706e-007,1,1.83749378379616e-007,9.27407768358535e-008,1,4.78830024519539e-008,2.06905397703849e-007,1,-1.77040149651475e-007,2.15084355659201e-007,1,-4.11737808292401e-008,1.00919677947786e-007,1,-8.42531392208912e-007,8.68786287355761e-008,1,-1.14836586817546e-006,-2.77146625649038e-007,1,-4.62060540940001e-007,-2.32773089692273e-007,1,-1.56225127057041e-007,1.31252335222598e-007,1,-3.56726673089725e-007,4.84442011838837e-007,1,-6.99189172337356e-007,7.68231558367916e-008,1,-7.20427181022387e-007,-6.00671171469003e-007,1,-3.7796598917339e-007,-1.93052642316616e-007,1,-1.10479618342652e-006,3.18661562914713e-007,1,-7.0244681182885e-007,-1.93032008155569e-008,1,-9.11571333972461e-008,-1.08524886854866e-007,1,-4.93511720378592e-007,2.29439038434975e-007,1,-9.29640975755319e-007,2.55587508490862e-007,1,-5.67032202525297e-007,-4.90472302772105e-008,1,-3.05105274378548e-008,-1.46674267398339e-007,1,-3.93125247910575e-007,1.57959433977339e-007,1,-5.92593778492301e-007,-1.94830207078667e-007,1,-7.6511469160323e-007,-4.00173746584187e-007,1,-4.21671188632899e-007,-3.38432840862879e-007,1,-2.49149138653593e-007,-1.33088718712315e-007,1,-6.24582185082545e-007,-4.75740051797402e-008,1,-3.60004008825854e-007,2.67336702108878e-007,1,-4.0061868844532e-007,-2.35740387211081e-007,1,-6.65195784677053e-007,-5.5065106607799e-007,1,-2.9032560178166e-007,3.88759872294031e-007,1,-5.4807378546684e-007,8.19741643454108e-008,1,-5.66838764370914e-007,-4.25592673991559e-007,1,-3.09091973349496e-007,-1.18807122362341e-007,1,0,0,1,4.26501358674614e-008,-3.58320839666249e-008,1,8.53003214729142e-008,-7.16641039844035e-008,1,4.26501607364571e-008,-3.58320519922017e-008,1,-5.59068723759992e-007,6.18809963270905e-008,1,-9.1729117457362e-007,3.62830633093836e-007,1,-4.29965268722299e-007,2.15555246541044e-007,1,-7.17404873284977e-008,-8.53939070566412e-008,1,-2.27830412313779e-008,-2.29536283313792e-008,1,
- 4.04212613602795e-007,4.85267264593858e-007,1,-2.14956088484541e-008,-2.40351312186249e-008,1,-4.4848786728835e-007,-5.32255398866255e-007,1,6.43631210550666e-008,7.66093961601655e-008,1,3.21815605275333e-008,3.83046980800827e-008,1,-0,0,1,3.21815498693923e-008,3.83047051855101e-008,1,7.70850306253124e-007,-2.51146644814071e-007,1,4.83009898744058e-007,-9.38793931481996e-009,1,7.41918952940068e-008,8.83324773326422e-008,1,3.62029169309608e-007,-1.53426796600797e-007,1,-4.7202871655827e-007,-3.81738729515746e-008,1,-2.64834994823104e-007,2.08442557436683e-007,1,-3.16912235120981e-007,-1.68493784258317e-007,1,-5.24105189469992e-007,-4.15110008589181e-007,1,-1.09544863846622e-007,-1.30387704189161e-007,1,3.93983938806741e-008,4.68946481646526e-008,1,1.8834154502656e-007,2.24177242102996e-007,1,3.9398361906251e-008,4.6894676586362e-008,1,3.40743255833331e-008,-9.39012991807431e-008,1,7.26993931721154e-008,-1.26357562635349e-007,1,1.30296157863086e-007,-1.36237119363614e-007,1,9.16709836928931e-008,-1.03780507743068e-007,1,3.8678194869135e-007,3.61166101470189e-008,1,4.85533007577033e-007,1.53655875578806e-007,1,2.66575796104007e-007,1.37108031594835e-007,1,1.67825206176531e-007,1.95690041948637e-008,1,1.03053331201863e-007,1.22659699286487e-007,1,5.1526662048218e-008,6.13298496432435e-008,1,-0,0,1,5.15266549427906e-008,6.13298567486709e-008,1,6.20212006197107e-007,-2.02418135586413e-007,1,3.88543440976719e-007,-7.82640796614942e-009,1,6.79417127003035e-008,8.0886380260381e-008,1,2.99608586828981e-007,-1.13705610260695e-007,1,-1.00668735569798e-007,-2.2104644870069e-007,1,-3.20304451406628e-007,-3.65059946716428e-008,1,-4.57031916312189e-007,2.46708026452325e-007,1,-2.37397372870873e-007,6.21673947875934e-008,1,6.16181949908423e-009,8.26007919840777e-008,1,-4.14988434727093e-008,2.58731880364849e-008,1,2.67714490576054e-008,6.52852989446728e-008,1,7.44321013712579e-008,1.22012963288398e-007,1,-1.72564114109264e-008,-2.0539882683579e-008,1,-1.09324478358985e-008,-1.30126229791472e-008,1,-1.72564078582127e-008,-2.05398862362927e-008,1,
- -2.35803696568837e-008,-2.80671468289029e-008,1,-1.72992031366448e-007,3.2635895763633e-007,1,-3.03199612972094e-007,1.71387057434913e-007,1,-2.91015368247827e-007,-1.03221829306221e-007,1,-1.60808198756968e-007,5.17499074703665e-008,1,2.61410466606549e-008,-2.19633893294713e-008,1,5.30378798657694e-008,-4.45617800437503e-008,1,7.99345798441209e-008,-6.71603288537881e-008,1,5.30377910479274e-008,-4.45618866251607e-008,1,-3.91471530747367e-007,1.42934581504051e-007,1,-1.43540788144492e-007,-6.53528147154248e-008,1,-3.42845339673659e-007,2.00815151174538e-007,1,-5.90774618558498e-007,4.09103193987903e-007,1,2.99449709473265e-007,-4.66388243580695e-008,1,4.44040352931552e-007,1.25463969880002e-007,1,1.96085878201302e-007,4.02011650635359e-008,1,5.14956575159431e-008,-1.31901600752826e-007,1,-1.96574276856154e-007,2.49918855388387e-007,1,-2.96583721137722e-007,1.30882213511541e-007,1,-2.71403933993497e-007,-9.33320691842709e-008,1,-1.71394972880989e-007,2.5704387951464e-008,1,5.10177926571487e-007,-1.58033543584679e-007,1,3.2170646591112e-007,2.87364798623457e-010,1,6.4590260251407e-008,7.68899184322436e-008,1,2.53059909027797e-007,-8.14312528518713e-008,1,-0.0254338383674622,-0.0302730798721313,0.999218046665192,-0.0127195762470365,-0.015139521099627,0.999804437160492,-3.43791242585212e-007,-4.23606394406306e-008,1,-0.012719577178359,-0.015139521099627,0.999804437160492,0.0107675492763519,0.00384758622385561,0.999934673309326,0.00992073584347963,-0.00833569187670946,0.999916136264801,0.00446163536980748,-0.00365607161074877,0.999983429908752,-0.00572780519723892,-0.00794766563922167,-0.999952077865601,-0.00936353486031294,-0.0142960231751204,0.999854028224945,-0.00722435768693686,-0.0118216658011079,0.999904036521912,0.00866916961967945,0.00543275941163301,0.999947607517242,0.00431532226502895,0.000526869611348957,0.999990522861481,-0.00764424446970224,-0.00983609911054373,0.999922394752502,-0.00971891824156046,-0.0081477202475071,0.999919593334198,0.00634588487446308,0.00798371434211731,0.999947965145111,0.00841904804110527,0.0063948780298233,0.999944031238556,
- -0.00486233830451965,-0.00515020405873656,-0.999974966049194,0.00354936067014933,0.00524466531351209,-0.999979972839355,0.00347457965835929,0.00530737685039639,-0.999979972839355,-0.00490493373945355,-0.00512404879555106,-0.99997490644455,0.00396219035610557,0.00633062934502959,-0.999972105026245,0.00409991154447198,0.00616505928337574,-0.999972581863403,-0.00538501748815179,-0.0056059118360281,-0.999969840049744,-0.0054962569847703,-0.0055329529568553,-0.99996954202652,0.654130339622498,0.756214916706085,0.015890009701252,0.633951544761658,0.772211492061615,-0.042366873472929,0.643023669719696,0.765522301197052,0.0222762003540993,0.633951544761658,0.772211492061615,-0.042366873472929,0.633926153182983,0.772232353687286,-0.0423661805689335,0.638705432415009,0.769251763820648,0.0175239406526089,0.643023669719696,0.765522301197052,0.0222762003540993,0.633926928043365,0.772231101989746,-0.0423767082393169,0.648014187812805,0.761626124382019,0.00180771516170353,0.647804498672485,0.76175057888031,-0.00924517866224051,0.64799427986145,0.761272072792053,0.0238392576575279,0.647994458675385,0.761271893978119,0.023840581998229,0.647670805454254,0.761565208435059,0.0232593659311533,0.647654294967651,0.76158595085144,0.0230381358414888,0.648014187812805,0.761626124382019,0.00180771516170353,0.64799964427948,0.761265516281128,0.0239019356667995,0.647692084312439,0.761551380157471,0.0231175776571035,0.647695958614349,0.761533081531525,0.0236079022288322,0.647804498672485,0.76175057888031,-0.00924517866224051,0.647991120815277,0.761273622512817,0.0238738059997559,0.64799427986145,0.761272072792053,0.0238392576575279,0.647654294967651,0.76158595085144,0.0230381358414888,0.647607684135437,0.761620879173279,0.0231921058148146,4.2107912712197e-009,7.37060688038582e-008,-1,-6.39149844161579e-009,1.02272792901204e-007,-1,-6.31205088197362e-009,1.36587715360292e-007,-1,3.49940476596089e-009,8.51229842169232e-008,-1,-4.20875423401412e-009,6.73459652489328e-008,-1,-4.75698271884539e-008,6.54777121411598e-010,-1,-6.5341950516995e-008,2.47295828259553e-009,-1,
- -3.07645886543639e-009,6.65722694748183e-008,-1,0.643483281135559,0.765371382236481,-0.0116648077964783,0.645042181015015,0.764134585857391,-0.0043447082862258,0.647217154502869,0.761967778205872,0.0227002110332251,0.647211015224457,0.761972904205322,0.0226992517709732,0.642901659011841,0.765939891338348,0.0036944670137018,0.641245424747467,0.767335712909698,0.000580036954488605,0.64037948846817,0.767901957035065,-0.015514250844717,0.640378832817078,0.767902553081512,-0.0155139341950417,0.643415033817291,0.765469610691071,-0.00857008155435324,0.640377521514893,0.76790326833725,-0.015533147379756,0.64037948846817,0.767901957035065,-0.015514250844717,0.641245424747467,0.767335712909698,0.000580036954488605,0.64508181810379,0.764111280441284,0.00185286439955235,0.640375256538391,0.767905056476593,-0.0155368503183126,0.640377521514893,0.76790326833725,-0.015533147379756,0.643415033817291,0.765469610691071,-0.00857008155435324,0.642247319221497,0.766489148139954,0.00358480797149241,0.640370666980743,0.767908453941345,-0.0155559573322535,0.640370726585388,0.767908453941345,-0.0155556099489331,0.642259538173676,0.766478776931763,0.00358588784001768,0.640379965305328,0.767901122570038,-0.0155325904488564,0.640374779701233,0.767905473709106,-0.0155355744063854,0.645042181015015,0.764134585857391,-0.0043447082862258,0.643483281135559,0.765371382236481,-0.0116648077964783,0.642901659011841,0.765939891338348,0.0036944670137018,0.640378832817078,0.767902553081512,-0.0155139341950417,0.640379965305328,0.767901122570038,-0.0155325904488564,0.643483281135559,0.765371382236481,-0.0116648077964783,0.647204458713531,0.761979520320892,0.02266576141119,0.647208333015442,0.761976182460785,0.022665049880743,0.641245424747467,0.767335712909698,0.000580036954488605,0.642901659011841,0.765939891338348,0.0036944670137018,0.647208333015442,0.761976182460785,0.022665049880743,0.647214531898499,0.761969983577728,0.0227007810026407,0.643415033817291,0.765469610691071,-0.00857008155435324,0.641245424747467,0.767335712909698,0.000580036954488605,
- 0.647214531898499,0.761969983577728,0.0227007810026407,0.647220194339752,0.761965036392212,0.022701270878315,0.64508181810379,0.764111280441284,0.00185286439955235,0.643415033817291,0.765469610691071,-0.00857008155435324,0.647219479084015,0.761964976787567,0.0227277614176273,0.64721941947937,0.761964917182922,0.022725947201252,0.642247319221497,0.766489148139954,0.00358480797149241,0.642259538173676,0.766478776931763,0.00358588784001768,0.647211015224457,0.761972904205322,0.0226992517709732,0.647204458713531,0.761979520320892,0.02266576141119,0.642901659011841,0.765939891338348,0.0036944670137018,0.643483281135559,0.765371382236481,-0.0116648077964783,-1,-4.72663330697287e-008,-3.97104038540874e-008,-1,-0,0,-1,-4.72663401751561e-008,-3.97103967486601e-008,-1,-9.45326661394574e-008,-7.94208077081748e-008,-1,-3.58009765477618e-006,-3.23066092278168e-006,-1,-7.42291490496427e-007,-2.37429503613384e-006,-1,1.34305662413681e-006,-6.22305321940075e-007,-1,-1.49475022226397e-006,-1.47866705901833e-006,-1,2.34347453442751e-007,-2.78886204796436e-007,-1,1.17173001967785e-007,-1.39442818181124e-007,-1,0,0,-1,1.17173726721376e-007,-1.39443102398218e-007,-1,-2.61594948369748e-007,-2.19778968357787e-007,-1,-8.50629504611788e-008,-7.14657204525793e-008,-1,-2.61594749417782e-007,-2.19779053622915e-007,-1,-4.38126818380624e-007,-3.68092372582396e-007,-1,0,0,-1,9.06670365452555e-008,7.61745297950256e-008,-1,1.81334073090511e-007,1.52349059590051e-007,-1,9.06670436506829e-008,7.61745155841709e-008,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-2.01153682155564e-007,-8.8608743453733e-008,-1,-2.50478876751004e-007,-1.06914058051188e-006,-1,2.12038344216126e-007,-1.61962009315175e-006,-1,2.61364448306267e-007,-6.39082543330005e-007,-1,-5.5310852076218e-007,-6.20262426309637e-007,-1,-5.98991107381153e-007,-1.17966715151852e-006,-1,-2.96581504244386e-007,-9.25591336908838e-007,-1,-2.5070011133721e-007,-3.66188857015004e-007,-1,-3.55935796392259e-008,-2.99036351236737e-008,-1,-0,0,-1,-3.55935796392259e-008,-2.99036351236737e-008,-1,-7.11871592784519e-008,-5.98072702473473e-008,
- -1,-1.39686108013848e-007,-1.17363839535756e-007,-1,-7.79491671210053e-009,-6.54925358389846e-009,-1,1.24096118270245e-007,1.04265289735395e-007,-1,-7.79497355551939e-009,-6.54929976917629e-009,-1,-5.2364747205047e-008,6.23246521058718e-008,-1,-2.61823807079509e-008,3.11623189475085e-008,-1,0,0,-1,-2.61823736025235e-008,3.11623260529359e-008,-1,-3.45134480994602e-008,4.10816838325445e-008,-1,9.93704674101537e-008,-1.18281164418477e-007,-1,-3.45137358692682e-008,4.10818650209421e-008,-1,-1.6839705097027e-007,2.00444787878951e-007,-1,-2.57813557169584e-008,-2.16598454727546e-008,-1,-5.15627114339168e-008,-4.33196909455091e-008,-1,-2.57813557169584e-008,-2.16598454727546e-008,-1,-0,0,-1,-3.01083559861581e-007,-1.26054573001966e-007,-1,-3.36607968165481e-007,1.58440030872953e-007,-1,-2.17316326711625e-007,2.58663078511745e-007,-1,-1.81791904196871e-007,-2.58314685197547e-008,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,2.7506928290677e-008,1.55140838842271e-007,-1,-1.34613005187134e-008,-1.13095079967707e-008,-1,9.25334759926955e-008,7.77419941755397e-008,-1,1.33501728782903e-007,2.44192335685511e-007,-1,1.37547701228868e-007,1.15558627555856e-007,-1,6.87738506144342e-008,5.77793137779281e-008,-1,0,0,-1,6.87738506144342e-008,5.77793137779281e-008,-1,0,0,-1,-3.52983597906587e-008,4.20137666878873e-008,-1,-7.05967124758899e-008,8.40275404812019e-008,-1,-3.5298356237945e-008,4.20137702406009e-008,0.9999840259552,0.00478438008576632,0.00300528574734926,0.999993503093719,0.00308529264293611,0.00186951656360179,0.999993622303009,0.00291633070446551,0.00207180250436068,0.9999840259552,0.00481752958148718,0.00296611664816737,0.999991416931152,0.0033904102165252,0.0023691114038229,0.999991297721863,0.00355518027208745,0.00218441104516387,0.999975085258484,0.00593698024749756,0.00384577270597219,0.999974846839905,0.00598911568522453,0.00380234490148723,0.999988734722137,0.00395533349364996,0.00262158270925283,0.999999523162842,-0.000639284495264292,0.000760904862545431,0.999999165534973,-0.000775105436332524,0.00101983093190938,0.999995529651642,0.00258073653094471,0.00153920450247824,
- 0.999983012676239,0.00447539379820228,0.00375984725542367,0.999993622303009,0.00291633070446551,0.00207180250436068,0.999993503093719,0.00308529264293611,0.00186951656360179,0.999982953071594,0.00447372626513243,0.00375645607709885,0.999994277954102,0.00290985335595906,0.00175869185477495,0.999999523162842,-0.000641818391159177,0.000763939635362476,0.999999523162842,-0.000639596139080822,0.000761294562835246,0.999995887279511,0.00252218777313828,0.0014311196282506,0.99998265504837,0.00429936731234193,0.00402409769594669,0.999982953071594,0.00447150459513068,0.00375678692944348,0.999991297721863,0.00355518027208745,0.00218441104516387,0.999991416931152,0.0033904102165252,0.0023691114038229,0.999995529651642,0.00258073653094471,0.00153920450247824,0.999999165534973,-0.000775105436332524,0.00101983093190938,0.99998265504837,0.00429936731234193,0.00402409769594669,0.999991416931152,0.0033904102165252,0.0023691114038229,1,0,0,1,8.01644759462761e-008,-3.70596264787082e-009,1,1.60049694386544e-007,-1.00305959094271e-008,1,6.97348809808318e-008,3.99493238489868e-009,1,2.86514545422278e-009,-7.63865699582311e-008,1,7.63248908519643e-010,-5.98736349388673e-008,1,7.88315333011269e-008,-4.94050489407982e-009,1,7.81449784881261e-008,-3.61260088510562e-009,-1,-4.00159834157421e-008,-3.3620956685354e-008,-1,-8.00319668314842e-008,-6.72419133707081e-008,-1,-4.00159834157421e-008,-3.3620956685354e-008,-1,-0,0,0,-0.765649914741516,-0.64325749874115,0,-0.765641808509827,-0.643267154693604,0,-0.765633642673492,-0.643276870250702,0,-0.765641808509827,-0.643267154693604,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-5.24088704878523e-007,-3.48959019902395e-007,-1,-8.19687215880549e-008,-8.75155592439114e-007,-1,3.60151233280703e-007,-1.40135216497583e-006,-1,-8.19688068531832e-008,-8.75155649282533e-007,-1,3.20714690360546e-008,-9.32690113586432e-007,-1,-4.08483828095996e-007,-1.30280875509925e-006,-1,3.20714690360546e-008,-9.32690113586432e-007,-1,4.72626709324686e-007,-5.62571415230195e-007,0,-0.765661537647247,-0.643243670463562,
- 0,-0.765661716461182,-0.643243432044983,0,-0.76566207408905,-0.643243193626404,0,-0.765661716461182,-0.643243432044983,-1,-3.38150272227722e-008,-2.84101666636616e-008,-1,-0,0,-1,-3.38150272227722e-008,-2.84101666636616e-008,-1,-6.76300544455444e-008,-5.68203333273232e-008,0,-0.765646278858185,-0.643261790275574,0,-0.765644550323486,-0.64326399564743,0,-0.765642642974854,-0.643266141414642,0,-0.765644550323486,-0.64326399564743,-1,1.42248865131478e-007,1.1951124179177e-007,-1,1.30452960434013e-007,1.096008546142e-007,-1,1.18657084158258e-007,9.96904674366306e-008,-1,1.30452974644868e-007,1.09600847508773e-007,-1,-5.00734635977551e-008,5.96038951528044e-008,-1,-2.50367300225207e-008,2.9801949352759e-008,-1,0,0,-1,-2.50367317988776e-008,2.98019475764022e-008,-1,9.72518492403651e-008,-1.15774042797057e-007,-1,9.52075112081729e-008,-1.13340355767377e-007,-1,9.72518421349378e-008,-1.15774042797057e-007,-1,9.92961801671299e-008,-1.18207722721309e-007,-1,-8.14963883044584e-008,-6.84713228338296e-008,-1,-4.96684045003803e-008,-4.17302068456138e-008,-1,-8.14963954098857e-008,-6.84713157284023e-008,-1,-1.1332437566125e-007,-9.52124352693318e-008,0,-0.765660107135773,-0.643245339393616,0,-0.765649199485779,-0.643258333206177,0,-0.76563823223114,-0.643271386623383,0,-0.765649199485779,-0.643258333206177,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,2.76813807431608e-007,-1.91665066040514e-008,-1,4.29645069743856e-007,1.09236665934986e-007,-1,2.76813835853318e-007,-1.91665172621924e-008,-1,1.2398257354107e-007,-1.47569664932234e-007,0,-0.765640735626221,-0.643268585205078,0,-0.765642285346985,-0.643266558647156,0,-0.765644013881683,-0.643264532089233,0,-0.765642285346985,-0.643266558647156,-1,1.02919770483823e-007,8.64703082470442e-008,-1,1.38797986437567e-007,1.16614188527819e-007,-1,1.74676216602165e-007,1.46758068808595e-007,-1,1.38797986437567e-007,1.16614188527819e-007,-1,9.85858719104726e-008,8.28416091280815e-008,-1,1.78230592950968e-007,-1.19398144704519e-008,-1,2.57875313991462e-007,-1.06721266490695e-007,
- -1,1.78230592950968e-007,-1.19398215758793e-008,-1,5.0435266985005e-007,9.39805431698915e-007,-1,1.26286965951294e-006,1.57710201165173e-006,-1,5.0435266985005e-007,9.39805488542333e-007,-1,-2.54164206126006e-007,3.02508794902678e-007,0,-0.765652418136597,-0.643254697322845,0,-0.765642404556274,-0.643266439437866,0,-0.765632450580597,-0.643278300762177,0,-0.765642404556274,-0.643266439437866,-1,0,0,-1,7.72225092759982e-008,6.48776961043041e-008,-1,1.54445018551996e-007,1.29755392208608e-007,-1,7.72225092759982e-008,6.48776961043041e-008,-1,7.85865836405719e-007,6.60216414871684e-007,-1,5.03263720474934e-007,9.96602238956257e-007,-1,2.2066149085731e-007,1.33298794935399e-006,-1,5.03263777318352e-007,9.96602238956257e-007,-1,-1.56674147433478e-007,-6.3073184719542e-007,-1,-3.58987335857819e-007,-3.89908791476046e-007,-1,-5.61300623758143e-007,-1.49085806810945e-007,-1,-3.58987364279528e-007,-3.89908763054336e-007,-1,-7.11500376837648e-007,-4.40679968960467e-007,-1,-1.33627952436655e-006,-9.65551976150891e-007,-1,-7.11500376837648e-007,-4.40679997382176e-007,-1,-8.67212648358873e-008,8.41920027028209e-008,0,-0.765641093254089,-0.643268048763275,0,-0.765655517578125,-0.643250823020935,0,-0.765670001506805,-0.643233597278595,0,-0.765655517578125,-0.643250823020935,-1,-3.30573826090586e-008,-2.77731029285633e-008,-1,-3.15332329137163e-008,-2.64925912318859e-008,-1,-3.30573826090586e-008,-2.77731011522064e-008,-1,-3.45815287516871e-008,-2.90536146252407e-008,0,-0.765639364719391,-0.643270075321198,0,-0.765644133090973,-0.643264412879944,0,-0.765648901462555,-0.643258690834045,0,-0.765644133090973,-0.643264412879944,-1,-2.79485419696357e-007,3.42680948506313e-007,-1,-1.02615857144883e-007,4.91281525683007e-007,-1,7.4253712512018e-008,6.39882046016282e-007,-1,-1.02615878461165e-007,4.91281525683007e-007,-1,-4.14789155911421e-007,7.90915578363638e-007,-1,-1.47539438444255e-007,4.72752446967206e-007,-1,1.19710279022911e-007,1.54589329781629e-007,-1,-1.47539466865965e-007,4.72752446967206e-007,-1,5.34889181835752e-008,-6.36736885439859e-008,
- -1,5.28702841506856e-008,-6.29372678417894e-008,-1,5.34889181835752e-008,-6.36736885439859e-008,-1,5.4107548663751e-008,-6.44101092461824e-008,-1,-8.60738751384815e-008,3.93360693351497e-007,-1,1.2013646255582e-007,5.66609116958716e-007,-1,-8.60738751384815e-008,3.93360693351497e-007,-1,-2.92284227043638e-007,2.20112298165986e-007,0,-0.76564347743988,-0.643265128135681,0,-0.765644311904907,-0.643264174461365,0,-0.765645086765289,-0.643263220787048,0,-0.765644311904907,-0.643264174461365,-1,1.23034325838489e-007,-1.56663233497056e-008,-1,1.7820751452291e-007,3.06881631217948e-008,-1,2.33380703207331e-007,7.70426353824405e-008,-1,1.7820751452291e-007,3.06881560163674e-008,-1,2.84224739743877e-007,7.38134318112316e-008,-1,5.4249547076779e-008,3.47508773756999e-007,-1,-1.75725674012028e-007,6.21204151229904e-007,-1,5.4249547076779e-008,3.47508773756999e-007,-1,1.20978569384533e-007,-5.12669871000071e-008,-1,6.86906105329399e-008,-9.51968246454271e-008,-1,1.20978569384533e-007,-5.12669906527208e-008,-1,1.73266499814417e-007,-7.33712290923449e-009,0,-0.765650749206543,-0.643256664276123,0,-0.765649080276489,-0.643258631229401,0,-0.765647292137146,-0.643260598182678,0,-0.765649080276489,-0.643258631229401,-1,2.14458246716731e-008,-1.38035332497566e-007,-1,-1.24071959817229e-007,-2.60291841414073e-007,-1,-2.69589691015426e-007,-3.82548364541435e-007,-1,-1.2407193139552e-007,-2.60291841414073e-007,-1,6.99624251865316e-008,-4.56638076684612e-007,-1,-7.93115191299876e-008,-2.78991876712098e-007,-1,-2.28585463446507e-007,-1.01345705161293e-007,-1,-7.93115049191329e-008,-2.78991876712098e-007,-1,-4.12986587150499e-008,2.95563012286948e-007,-1,1.06491761187044e-007,4.19728507949912e-007,-1,-4.12986729259046e-008,2.95563040708657e-007,-1,-1.89089064406289e-007,1.71397502413129e-007,0,-0.765648245811462,-0.643259465694427,0,-0.765648186206818,-0.643259525299072,0,-0.765648126602173,-0.643259644508362,0,-0.765648186206818,-0.643259525299072,-1,-1.30052001168224e-007,-4.45744149146776e-007,-1,6.77728877462869e-008,-2.79542319958637e-007,
- -1,2.65597776660798e-007,-1.13340490770497e-007,-1,6.77729019571416e-008,-2.79542348380346e-007,-1,1.70262154597367e-007,1.43015640219346e-007,-1,1.1169397851063e-008,3.32417812387575e-007,-1,-1.47923344684386e-007,5.2181997034495e-007,-1,1.11694120619177e-008,3.32417812387575e-007,-1,-2.06063234031717e-007,-8.23350347900487e-008,-1,-5.38493978297083e-008,-2.63524157162465e-007,-1,9.83645023211466e-008,-4.44713236902317e-007,-1,-5.38493871715673e-008,-2.63524157162465e-007,-1,9.23510299344343e-008,-3.38509465791503e-007,-1,-1.02573523008687e-007,-5.02278624026076e-007,-1,9.23510299344343e-008,-3.38509465791503e-007,-1,2.87275554455846e-007,-1.74740279135222e-007,0,-0.765656471252441,-0.643249690532684,0,-0.765649914741516,-0.64325749874115,0,-0.765643298625946,-0.64326536655426,0,-0.765649914741516,-0.64325749874115,-1,-4.02803799204321e-008,-3.38421308754278e-008,-1,-1.09021112137953e-008,-9.15956199776247e-009,-1,-4.02803799204321e-008,-3.38421308754278e-008,-1,-6.96586468507121e-008,-5.85246979767362e-008,0,-0.765647709369659,-0.64326012134552,0,-0.765645265579224,-0.643263041973114,0,-0.765642881393433,-0.643266022205353,0,-0.765645265579224,-0.643263041973114,-1,9.58877564016802e-008,-5.44511294719996e-007,-1,3.07371891494768e-007,-3.66831585552063e-007,-1,1.70206305938336e-007,-4.82072096019692e-007,-1,-1.78443457343747e-007,-7.74992201968416e-007,-1,1.45433460829736e-007,-5.02885200148739e-007,-1,2.6679322218115e-007,-8.29266184609878e-007,-1,-1.81903203611e-009,-5.09554581640259e-007,-1,-2.70431200988241e-007,-1.89842936038076e-007,-1,-1.81901782525529e-009,-5.09554581640259e-007,-1,4.54101645175342e-008,-3.60661744025492e-007,-1,2.04655464131065e-007,-5.50218373973621e-007,-1,4.54101751756752e-008,-3.60661715603783e-007,-1,-1.13835120885142e-007,-1.71105114077363e-007,-1,-3.9351021996481e-008,-3.30611342747034e-008,-1,2.47341802150913e-007,2.07806579055614e-007,-1,-3.9351021996481e-008,-3.30611413801307e-008,-1,-3.26043817722166e-007,-2.73928890237585e-007,0,-0.765649855136871,-0.643257558345795,0,-0.765645623207092,-0.643262624740601,
- 0,-0.765641391277313,-0.643267631530762,0,-0.765645623207092,-0.643262624740601,-1,4.42449845650117e-008,3.71722350678283e-008,-1,4.30921787142324e-008,3.62037084755684e-008,-1,4.19393728634532e-008,3.52351818833085e-008,-1,4.30921787142324e-008,3.62037084755684e-008,-1,1.43202697699962e-007,1.20281242743658e-007,-1,9.21032494716201e-009,2.79807920833264e-007,-1,-1.24782047805638e-007,4.3933457050116e-007,-1,9.21032494716201e-009,2.79807920833264e-007,-1,-1.15841745085277e-008,-9.73234559609182e-009,-1,-1.15841753967061e-008,-9.7323447079134e-009,-1,-1.15841753967061e-008,-9.7323447079134e-009,-1,-1.15841745085277e-008,-9.73234559609182e-009,0,-0.765650749206543,-0.643256664276123,0,-0.765651285648346,-0.643256008625031,0,-0.765651702880859,-0.643255352973938,0,-0.765651285648346,-0.643256008625031,-1,9.26729413208705e-008,7.78587363470251e-008,-1,2.02433682261471e-007,-5.2786273130323e-008,-1,2.02433938056856e-007,-5.2786571558272e-008,-1,9.26729413208705e-008,7.78587363470251e-008,-1,-1.95555482918053e-008,2.32721397708247e-008,-1,-3.91109971076276e-008,4.65442013819484e-008,-1,-5.8666454805234e-008,6.98162523349311e-008,-1,-3.91110148711959e-008,4.65441800656663e-008,-1,-1.03957219721451e-007,-1.66769325460336e-007,-1,3.91122298992741e-008,-4.65441729602389e-008,-1,3.91122298992741e-008,-4.65441729602389e-008,-1,-1.03957532360255e-007,-1.66769581255721e-007,-1,-4.63369431713545e-008,-3.8929982792979e-008,-1,-3.47527091548727e-008,-2.91974924238048e-008,-1,-2.31684751383909e-008,-1.94649985019169e-008,-1,-3.47527091548727e-008,-2.91974906474479e-008,0,-0.765645921230316,-0.643262267112732,0,-0.765647053718567,-0.643260955810547,0,-0.765648126602173,-0.643259644508362,0,-0.765647053718567,-0.643260955810547,-1,4.63366163216961e-008,3.89300112146884e-008,-1,6.9504892508121e-008,5.83949955057506e-008,-1,9.26731757999733e-008,7.78599797968127e-008,-1,6.9504892508121e-008,5.83949955057506e-008,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-6.29424619091878e-008,-5.28721635362217e-008,-1,0,0,-1,0,0,-1,-6.29424405929058e-008,-5.28721457726533e-008,
- -1,-4.3796909210414e-008,5.21254008845062e-008,-1,-2.04437526463153e-007,-8.47004244519667e-008,-1,-2.03525246433856e-007,-8.57864748127213e-008,-1,-4.28844764144287e-008,5.1039457105162e-008,-1,-5.7921036855646e-009,-4.86632423246647e-009,-1,6.79266207725959e-008,-9.84894654720847e-008,-1,6.50305196359113e-008,-1.00922562751293e-007,-1,-8.68815508425769e-009,-7.29948590461049e-009,-1,8.92265674679038e-008,8.19608203528333e-008,-1,9.26731829054006e-008,7.78583881810846e-008,-1,9.26731829054006e-008,7.78583881810846e-008,-1,8.92265745733312e-008,8.19608132474059e-008,0,-0.765651881694794,-0.643255174160004,0,-0.765647172927856,-0.643260717391968,0,-0.765642523765564,-0.643266320228577,0,-0.765647172927856,-0.643260717391968,-1,-1.66736651152632e-008,-9.34173627342716e-008,-1,-1.66736775497611e-008,-9.34173698396989e-008,-1,3.91097181307032e-008,-4.65407801186757e-008,-1,3.91097181307032e-008,-4.65407801186757e-008,-1,-1.15840768089015e-008,-9.73226033096353e-009,-1,-2.89601800318451e-008,-2.43306423897138e-008,-1,-4.63362859193239e-008,-3.89290235602857e-008,-1,-2.89601818082019e-008,-2.43306423897138e-008,0,-0.765630722045898,-0.643280327320099,0,-0.765641272068024,-0.643267929553986,0,-0.765651702880859,-0.643255531787872,0,-0.765641272068024,-0.643267929553986,-1,9.26716978710829e-008,7.78624809072426e-008,-1,9.26716907656555e-008,7.78624880126699e-008,-1,9.26716907656555e-008,7.78624880126699e-008,-1,9.26716978710829e-008,7.78624809072426e-008,-1,-5.86568162930234e-008,6.9813509639971e-008,-1,-3.910457735401e-008,4.65423681816901e-008,-1,-1.95523295332123e-008,2.32712320524797e-008,-1,-3.91045702485826e-008,4.65423717344038e-008,-1,-8.06918407647572e-008,-6.77856775155306e-008,-1,0,0,-1,0,0,-1,-8.06918265539025e-008,-6.77856704101032e-008,-1,7.78567752490744e-008,-9.26738366047175e-008,-1,5.83926862418593e-008,-6.9505389888036e-008,-1,3.89285297330844e-008,-4.63370142256281e-008,-1,5.83926365038678e-008,-6.95054396260275e-008,-1,-2.31685941542992e-008,-1.94647711282414e-008,-1,-3.47528867905567e-008,-2.91971495869348e-008,
- -1,-4.63371740977436e-008,-3.89295280456281e-008,-1,-3.4752883237843e-008,-2.91971495869348e-008,0,-0.765647947788239,-0.643259882926941,0,-0.765650749206543,-0.643256545066834,0,-0.765653669834137,-0.643253207206726,0,-0.765650749206543,-0.643256545066834,-1,4.63363498681701e-008,3.89295280456281e-008,-1,-1.61638613604964e-008,1.13321135586375e-007,-1,-1.61638631368533e-008,1.13321142691802e-007,-1,4.63363498681701e-008,3.89295280456281e-008,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1.1260197396723e-007,1.03743587942517e-007,-1,-1.6939080182965e-007,-1.02826476222617e-008,-1,-2.5884048682201e-007,-8.54337756095447e-008,-1,-2.02051694486727e-007,2.85924688370187e-008,0,-0.765654563903809,-0.64325213432312,0,-0.765651881694794,-0.643255293369293,0,-0.765649080276489,-0.643258452415466,0,-0.765651881694794,-0.643255293369293,-1,1.19317078883796e-007,1.00242459666333e-007,-1,1.19317093094651e-007,1.00242452560906e-007,-1,1.19317093094651e-007,1.00242452560906e-007,-1,1.19317078883796e-007,1.00242459666333e-007,-1,-1.95544878067722e-008,2.32746746320345e-008,-1,-3.91088974538434e-008,4.65492533407996e-008,-1,-5.86633035482009e-008,6.98238338259216e-008,-1,-3.91088974538434e-008,4.65492533407996e-008,-1,4.33506830432862e-009,-7.57577680587929e-008,-1,-1.30309615542501e-007,-6.06839023475914e-008,-1,-1.93444151364019e-007,1.44664253909355e-008,-1,-5.87993689293853e-008,-6.07478511938098e-010,-1,-0,0,-1,-0,0,-1,-0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,0,-0.765615701675415,-0.643298387527466,0,-0.765631675720215,-0.643279194831848,0,-0.765647768974304,-0.643260061740875,0,-0.765631675720215,-0.643279194831848,-1,-4.68116866159107e-007,5.5712729363222e-007,-1,-1.19826552236191e-006,-5.63680089271656e-008,-1,-1.92841457646864e-006,-6.69863140956295e-007,-1,-1.19826563604875e-006,-5.63679520837468e-008,-1,-1.84256452939735e-006,5.44997533324931e-007,-1,-1.32714581013715e-006,-6.84871963585465e-008,-1,-8.11726863503281e-007,-6.81971755511768e-007,-1,-1.32714581013715e-006,-6.84871963585465e-008,
- -1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,0,-0.765652060508728,-0.643254935741425,0,-0.765655279159546,-0.643251180648804,0,-0.765658438205719,-0.643247365951538,0,-0.765655279159546,-0.643251180648804,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-4.43921095438782e-008,5.28322843251772e-008,-1,-8.87842190877564e-008,1.05664568650354e-007,-1,-4.43921095438782e-008,5.28322878778908e-008,0.999922573566437,0.0114615997299552,0.00484544364735484,0.999924838542938,-0.0109507795423269,-0.00551316374912858,0.999980688095093,-0.00604390539228916,-0.00140274770092219,0.999953329563141,0.00923860725015402,0.00281923706643283,0.999993741512299,-0.00100634375121444,-0.00338237569667399,0.99994283914566,-0.00624995166435838,-0.00866957101970911,0.999895036220551,0.0126794306561351,0.00701368041336536,0.999970436096191,0.00670868577435613,0.00378579553216696,-0,0.765658318996429,0.643247485160828,-0,0.765594005584717,0.643324017524719,-0,0.765583455562592,0.643336653709412,-0,0.765648007392883,0.643259763717651,-0,0.765658915042877,0.64324676990509,-0,0.76562112569809,0.643291890621185,0.999870240688324,-0.0105100870132446,-0.0122004980221391,0.99987256526947,-0.011459861882031,-0.0111140599474311,0.999981939792633,0.00283564697019756,-0.00530157890170813,0.999996602535248,0.000495342828799039,-0.00255522108636796,0.999998271465302,0.000744230637792498,0.00170126045122743,0.999995708465576,0.00278131244704127,-0.0009392432984896,0.999941885471344,-0.00991987250745296,-0.00422074971720576,0.999948143959045,-0.00830005388706923,-0.00590741680935025,-0.999990701675415,0.000548469892237335,0.00428461702540517,-0.999994874000549,-0.000151995773194358,0.00322564388625324,-0.999677777290344,0.0167691465467215,0.0190576761960983,-0.999754130840302,0.0143160931766033,0.0169379431754351,0,-0.76536613702774,-0.643595218658447,0,-0.764470756053925,-0.644658446311951,0,-0.765095412731171,-0.6439169049263,0,-0.765685141086578,-0.643215537071228,0,-0.765636563301086,-0.643273413181305,0,-0.765622138977051,-0.643290579319,-0.999996781349182,4.15582326240838e-005,0.00254468386992812,
- -0.999998450279236,0.0011105485027656,0.00132544001098722,-0.999654054641724,0.0204171389341354,0.0165806226432323,-0.999650597572327,0.0187421701848507,0.01863800175488,0.99996280670166,0.00591732934117317,0.00627451203763485,0.999977350234985,-0.00561270490288734,-0.00373537745326757,0.999977350234985,-0.0056082452647388,-0.00374008831568062,0.99996280670166,0.00592083064839244,0.00627294229343534,0.99996280670166,0.00591957895085216,0.00627137534320354,0.999977350234985,-0.00560836540535092,-0.00374106457456946,0.999977231025696,-0.00563805317506194,-0.00369765493087471,0.999963223934174,0.00597910769283772,0.0061531993560493,0,-0.766321063041687,-0.642457783222198,0,-0.783567309379578,-0.621306836605072,0,-0.783232748508453,-0.621728718280792,0,-0.765628755092621,-0.64328271150589,0,-0.777655899524689,-0.628690183162689,0.999983310699463,-0.00487444968894124,-0.00310056726448238,0.999983191490173,-0.00498810689896345,-0.0029481528326869,0.999981880187988,0.00353419315069914,0.00487241102382541,0.999982178211212,0.00361773837357759,0.00475234678015113,0.999983429908752,-0.00467147352173924,-0.00334559893235564,0.999981939792633,0.00353519781492651,0.00487896474078298,0.999981880187988,0.00353227509185672,0.00487706623971462,0.999983191490173,-0.00498897628858685,-0.00294666457921267,0.999998271465302,0.000744230637792498,0.00170126045122743,0.999948143959045,-0.00830005388706923,-0.00590741680935025,0.999993741512299,-0.00100634375121444,-0.00338237569667399,0.999970436096191,0.00670868577435613,0.00378579553216696,0.999895036220551,0.0126794306561351,0.00701368041336536,0.99994283914566,-0.00624995166435838,-0.00866957101970911,0.999870240688324,-0.0105100870132446,-0.0122004980221391,0.999996602535248,0.000495342828799039,-0.00255522108636796,0.999963223934174,0.00597910769283772,0.0061531993560493,0.999977231025696,-0.00563805317506194,-0.00369765493087471,0.999983310699463,-0.00487444968894124,-0.00310056726448238,0.999982178211212,0.00361773837357759,0.00475234678015113,0.999970436096191,0.00670868577435613,0.00378579553216696,
- 0.999895036220551,0.0126794306561351,0.00701368041336536,0.999113440513611,0.0316595137119293,0.0277533233165741,0.99958735704422,0.0213913582265377,0.0191739797592163,0.999981939792633,0.00283564697019756,-0.00530157890170813,0.998789131641388,0.0466226749122143,0.0157051142305136,0.998917818069458,0.039652731269598,0.0243081841617823,0.999996602535248,0.000495342828799039,-0.00255522108636796,0.999999225139618,0.000905503227841109,0.000844308873638511,0.999999344348907,0.000987061066552997,0.000745867495425045,0.99994283914566,-0.00624995166435838,-0.00866957101970911,0.999993741512299,-0.00100634375121444,-0.00338237569667399,0.999948143959045,-0.00830005388706923,-0.00590741680935025,0.999999284744263,-0.000708672392647713,0.000941477424930781,0.999999225139618,0.000905503227841109,0.000844308873638511,0.999993741512299,-0.00100634375121444,-0.00338237569667399,0.999941885471344,-0.00991987250745296,-0.00422074971720576,0.999999046325684,-0.000923340558074415,0.00109891558531672,0.999999284744263,-0.000708672392647713,0.000941477424930781,0.999948143959045,-0.00830005388706923,-0.00590741680935025,0.999924838542938,-0.0109507795423269,-0.00551316374912858,0.999999046325684,-0.00107708608265966,-0.000904879649169743,0.999999046325684,-0.00106667540967464,-0.000896133482456207,0.999980688095093,-0.00604390539228916,-0.00140274770092219,0.999999225139618,0.00084621727000922,-0.0009041937883012,0.999998986721039,0.000914448348339647,-0.00108845031354576,0.99987256526947,-0.011459861882031,-0.0111140599474311,0.999870240688324,-0.0105100870132446,-0.0122004980221391,0.99994283914566,-0.00624995166435838,-0.00866957101970911,0.999999344348907,0.000987061066552997,0.000745867495425045,0.999999225139618,0.00084621727000922,-0.0009041937883012,0.999870240688324,-0.0105100870132446,-0.0122004980221391,-0.99996292591095,0.00806014705449343,0.00299445213750005,-0.999982535839081,0.00591108063235879,-0.000132632310851477,-0.999872386455536,-0.010424206033349,-0.0121112577617168,-0.999877572059631,-0.0102926921099424,-0.0117779979482293,
- -0.999869406223297,-0.0113891707733274,-0.011463662609458,-0.999999940395355,8.19321430753917e-005,-0.000386445841286331,-0.99996292591095,0.00806014705449343,0.00299445213750005,-0.999877572059631,-0.0102926921099424,-0.0117779979482293,-0.999869406223297,-0.0119467154145241,-0.0108823822811246,-0.999998688697815,-0.00125353806652129,0.00103290041442961,-0.999999940395355,8.19321430753917e-005,-0.000386445841286331,-0.999869406223297,-0.0113891707733274,-0.011463662609458,-0.999867081642151,-0.0111990878358483,-0.0118403369560838,-0.999988675117493,0.00227298936806619,0.00415615551173687,-0.999972701072693,0.00436128256842494,0.00596562260761857,-0.999886512756348,-0.010244189761579,-0.0110469646751881,-0.999981284141541,-0.00371378404088318,-0.00488384533673525,-0.999981641769409,-0.00550803495571017,-0.00253168307244778,-0.999858558177948,-0.0124508226290345,-0.011306063272059,-0.999854922294617,-0.0110362777486444,-0.0129779921844602,-0.999872386455536,-0.010424206033349,-0.0121112577617168,-0.999982535839081,0.00591108063235879,-0.000132632310851477,-0.999981284141541,-0.00371378404088318,-0.00488384533673525,-0.999854922294617,-0.0110362777486444,-0.0129779921844602,-0.999379098415375,0.0238357000052929,0.0259480085223913,-0.999491930007935,0.0213026311248541,0.0237072389572859,-0.999982535839081,0.00591108063235879,-0.000132632310851477,-0.99996292591095,0.00806014705449343,0.00299445213750005,-0.999999940395355,8.19321430753917e-005,-0.000386445841286331,-0.999360144138336,0.0228525176644325,0.02751624584198,-0.999379098415375,0.0238357000052929,0.0259480085223913,-0.99996292591095,0.00806014705449343,0.00299445213750005,-0.999998688697815,-0.00125353806652129,0.00103290041442961,-0.99933785200119,0.0207461304962635,0.0298937615007162,-0.999360144138336,0.0228525176644325,0.02751624584198,-0.999999940395355,8.19321430753917e-005,-0.000386445841286331,-0.999988675117493,0.00227298936806619,0.00415615551173687,-0.999429821968079,0.0186558999121189,0.0281456615775824,-0.999337494373322,0.0207477882504463,0.0299020912498236,
- -0.999972701072693,0.00436128256842494,0.00596562260761857,-0.999544382095337,0.0188558138906956,0.0235720816999674,-0.999514400959015,0.0165623929351568,0.026394285261631,-0.999981641769409,-0.00550803495571017,-0.00253168307244778,-0.999981284141541,-0.00371378404088318,-0.00488384533673525,-0.999982535839081,0.00591108063235879,-0.000132632310851477,-0.999491930007935,0.0213026311248541,0.0237072389572859,-0.999544382095337,0.0188558138906956,0.0235720816999674,-0.999981284141541,-0.00371378404088318,-0.00488384533673525,-0.999877572059631,-0.0102926921099424,-0.0117779979482293,-0.999872386455536,-0.010424206033349,-0.0121112577617168,-0.999994874000549,-0.000151995773194358,0.00322564388625324,-0.999990701675415,0.000548469892237335,0.00428461702540517,-0.99999737739563,-0.00187611219007522,0.00129215908236802,-0.999869406223297,-0.0113891707733274,-0.011463662609458,-0.999877572059631,-0.0102926921099424,-0.0117779979482293,-0.999990701675415,0.000548469892237335,0.00428461702540517,-0.99999988079071,-0.000605812470894307,-0.00011491041368572,-0.999869406223297,-0.0119467154145241,-0.0108823822811246,-0.999869406223297,-0.0113891707733274,-0.011463662609458,-0.99999737739563,-0.00187611219007522,0.00129215908236802,-0.999998331069946,8.79012150107883e-005,-0.00181430112570524,-0.999867081642151,-0.0111990878358483,-0.0118403369560838,-0.999886512756348,-0.010244189761579,-0.0110469646751881,-0.999945878982544,0.00882200431078672,0.00551740033552051,-0.999854922294617,-0.0110362777486444,-0.0129779921844602,-0.999858558177948,-0.0124508226290345,-0.011306063272059,-0.999998450279236,0.0011105485027656,0.00132544001098722,-0.999996781349182,4.15582326240838e-005,0.00254468386992812,-0.999994874000549,-0.000151995773194358,0.00322564388625324,-0.999872386455536,-0.010424206033349,-0.0121112577617168,-0.999854922294617,-0.0110362777486444,-0.0129779921844602,-0.999996781349182,4.15582326240838e-005,0.00254468386992812,0.999990463256836,-0.00272591062821448,-0.00342566450126469,0.999959588050842,0.00754550006240606,0.00489227520301938,
- 0.999977171421051,0.00576998805627227,0.00352611672133207,0.999990403652191,-0.00270409346558154,-0.00345016666688025,0.999880909919739,-0.00159413006622344,0.0153484847396612,0.999986588954926,-0.0033228206448257,-0.00397515902295709,0.999986708164215,-0.00330716790631413,-0.00396214006468654,0.999612390995026,-0.0103007536381483,0.0258653499186039,0.999990463256836,-0.00272861518897116,-0.0034228153526783,0.999797701835632,-0.00707950117066503,0.0188305955380201,0.999801874160767,-0.00693695154041052,0.0186602063477039,0.999990463256836,-0.0027264254167676,-0.00342697091400623,0.999941051006317,0.0017109188484028,0.0107162520289421,0.999619662761688,-0.0101163899526,0.025656720623374,0.999986708164215,-0.00330718257464468,-0.00396005716174841,0.999986529350281,-0.00329167186282575,-0.00400438345968723,0.999990403652191,-0.00270409346558154,-0.00345016666688025,0.999977171421051,0.00576998805627227,0.00352611672133207,0.999941051006317,0.0017109188484028,0.0107162520289421,0.999986529350281,-0.00329167186282575,-0.00400438345968723,0.999977350234985,-0.00560836540535092,-0.00374106457456946,0.999990463256836,-0.00272591062821448,-0.00342566450126469,0.999990403652191,-0.00270409346558154,-0.00345016666688025,0.999977231025696,-0.00563805317506194,-0.00369765493087471,0.999986588954926,-0.0033228206448257,-0.00397515902295709,0.999983429908752,-0.00467147352173924,-0.00334559893235564,0.999983191490173,-0.00498897628858685,-0.00294666457921267,0.999986708164215,-0.00330716790631413,-0.00396214006468654,0.999977350234985,-0.00561270490288734,-0.00373537745326757,0.999990463256836,-0.00272861518897116,-0.0034228153526783,0.999990463256836,-0.0027264254167676,-0.00342697091400623,0.999977350234985,-0.0056082452647388,-0.00374008831568062,0.999986529350281,-0.00329167186282575,-0.00400438345968723,0.999986708164215,-0.00330718257464468,-0.00396005716174841,0.999983191490173,-0.00498810689896345,-0.0029481528326869,0.999983310699463,-0.00487444968894124,-0.00310056726448238,0.999977231025696,-0.00563805317506194,-0.00369765493087471,
- 0.999990403652191,-0.00270409346558154,-0.00345016666688025,0.999986529350281,-0.00329167186282575,-0.00400438345968723,0.999983310699463,-0.00487444968894124,-0.00310056726448238,0.999959588050842,0.00754550006240606,0.00489227520301938,1,0,-0,1,0,0,0.999977171421051,0.00576998805627227,0.00352611672133207,1,0,0,0.999880909919739,-0.00159413006622344,0.0153484847396612,0.999612390995026,-0.0103007536381483,0.0258653499186039,0.99962717294693,-0.0175621714442968,0.020904652774334,0.999797701835632,-0.00707950117066503,0.0188305955380201,0.998524248600006,-0.0349341109395027,0.0415804833173752,0.998524248600006,-0.0349339656531811,0.041580606251955,0.999801874160767,-0.00693695154041052,0.0186602063477039,1,-0,0,0.999634802341461,-0.0173827633261681,0.0206897463649511,0.999619662761688,-0.0101163899526,0.025656720623374,0.999941051006317,0.0017109188484028,0.0107162520289421,0.999977171421051,0.00576998805627227,0.00352611672133207,1,0,0,1,-0,0,0.999941051006317,0.0017109188484028,0.0107162520289421,1,-3.55917136041217e-011,-1.39169600288369e-008,1,1.73573511119685e-009,-4.6275783205374e-008,1,2.20127338579346e-009,-5.672805514223e-008,1,-8.8979414114565e-011,-3.47923858612376e-008,1,4.23401758098407e-009,9.93319630993028e-008,1,2.83969014969188e-010,1.1133421651266e-007,1,2.83969014969188e-010,1.1133421651266e-007,1,4.36466462971907e-009,9.93756756884068e-008,0,0.0025531689170748,0.999996840953827,0,0.00254491064697504,0.999996781349182,0,0.00256558950059116,0.999996662139893,0,0.00261094560846686,0.999996602535248,0,0.0025800580624491,0.999996662139893,0,0.00254633068107069,0.999996781349182,1,-3.80137691990967e-007,9.72128599840971e-010,1,-2.53425298524235e-007,6.4808614030909e-010,1,-1.26712919268357e-007,3.2404373628836e-010,1,-2.53425298524235e-007,6.4808614030909e-010,1,1.03407522544785e-007,4.24701029899666e-009,1,1.18971009044344e-007,-5.49262857418853e-009,1,1.18970355345027e-007,-5.49993828258266e-009,1,1.03409348639616e-007,4.25275992199659e-009,1,2.20127338579346e-009,-5.672805514223e-008,1,1.73573511119685e-009,-4.6275783205374e-008,
- 1,5.79865861993767e-008,-2.68068922615328e-009,1,5.79834811276214e-008,-2.67697242151144e-009,1,4.23401758098407e-009,9.93319630993028e-008,1,4.36466462971907e-009,9.93756756884068e-008,1,1.03407522544785e-007,4.24701029899666e-009,1,1.03409348639616e-007,4.25275992199659e-009,-1,-1.39668395604531e-006,-1.17369904728548e-006,-1,-2.7350998266229e-007,-2.51025926445436e-006,-1,2.10328312277852e-006,-2.79341406894673e-006,-1,9.80106733550201e-007,-1.45681985941337e-006,-1,-6.9368570621009e-007,4.5103163870408e-008,-1,-5.39090876827686e-007,-1.38937480187451e-007,-1,-6.29424619091878e-008,-5.28721635362217e-008,-1,-2.17538158153729e-007,1.3116864749918e-007,-1,-1.90078935702331e-007,-1.27864240084818e-007,-1,-1.56759778491278e-008,1.86587563177909e-008,-1,-1.77849713622891e-007,-1.42420546467292e-007,-1,-3.52252840229994e-007,-2.88943539317188e-007,-1,-4.25937230374984e-007,-3.40050192448871e-008,-1,-4.69299180849703e-007,1.75959105064294e-008,-1,-3.0204913059606e-007,2.46180917429228e-007,-1,-2.58687180121342e-007,1.94579996559696e-007,-1,-3.35210074808856e-007,-2.81596499007719e-007,-1,-4.37489006799296e-007,-1.59844518066166e-007,-1,-2.85248660247817e-007,1.7571811383732e-007,-1,-1.82970254059001e-007,5.3966214608181e-008,-1,3.10483301291242e-007,-1.11782817668882e-007,-1,2.63803713096422e-007,-5.62189157449211e-008,-1,5.5389680397866e-008,-1.36529195060575e-007,-1,1.0206951372993e-007,-1.92093182249664e-007,0.99997341632843,0.00613399688154459,0.00396198453381658,0.999977111816406,0.00573326274752617,0.00361986458301544,0.999988734722137,0.00395533349364996,0.00262158270925283,0.999995529651642,0.00258073653094471,0.00153920450247824,0.999988675117493,0.00411948701366782,0.0023850561119616,0.999983489513397,0.00489654764533043,0.00303812208585441,0.999994277954102,0.00290985335595906,0.00175869185477495,0.999995887279511,0.00252218777313828,0.0014311196282506,0.999974846839905,0.00598911568522453,0.00380234490148723,0.99997341632843,0.00613399688154459,0.00396198453381658,0.999995529651642,0.00258073653094471,0.00153920450247824,
- 0.999991416931152,0.0033904102165252,0.0023691114038229,1,-7.67654759203928e-011,-3.00167180000699e-008,1,7.63248908519643e-010,-5.98736349388673e-008,1,2.86514545422278e-009,-7.63865699582311e-008,1,-1.3332962511825e-010,-5.21341334547287e-008,1,2.2835644486463e-009,1.27614129041831e-007,1,3.06393493909596e-010,1.20126045999314e-007,1,3.42698147637321e-010,1.34359851244881e-007,1,3.76734199392104e-009,8.83835440390612e-008,1,-2.73438359954525e-007,6.99265700898621e-010,1,-2.733692667789e-007,6.9908889788195e-010,1,-2.73300145181565e-007,6.98912205887581e-010,1,-2.733692667789e-007,6.99088953393101e-010,1,6.97348809808318e-008,3.99493238489868e-009,1,2.2835644486463e-009,1.27614129041831e-007,1,3.76734199392104e-009,8.83835440390612e-008,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1.42865488328425e-007,1.20023258887159e-007,-1,2.85730976656851e-007,2.40046517774317e-007,-1,1.42865488328425e-007,1.20023258887159e-007,-1,0,-0,-1,6.73343905077672e-008,-8.01383137627454e-008,-1,3.36671988065973e-008,-4.0069153328659e-008,-1,0,0,-1,3.36671988065973e-008,-4.00691568813727e-008,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,4.18683292480182e-008,-4.98309624674675e-008,-1,2.09341646240091e-008,-2.49154812337338e-008,-1,0,0,-1,2.09341646240091e-008,-2.49154812337338e-008,-1,-7.12719270268281e-008,8.48418011401009e-008,-1,-3.56359670661277e-008,4.24209005700504e-008,-1,0,0,-1,-3.5635963513414e-008,4.24209005700504e-008,-1,5.12928409079905e-007,1.08404684340258e-007,-1,7.12793337243056e-007,2.76325522463594e-007,-1,5.12928409079905e-007,1.0840467723483e-007,-1,3.13063480916753e-007,-5.9516143124938e-008,-1,6.33054142440415e-008,-7.53610294168539e-008,-1,4.79224162575065e-008,-5.7048552548622e-008,-1,3.25394147182578e-008,-3.87360898912448e-008,-1,4.79224127047928e-008,-5.70485596540493e-008,-1,-8.03183723974144e-008,-6.74665940891828e-008,-1,-1.28642497543296e-007,-9.9371657569236e-009,-1,-1.76966594267469e-007,4.75922696807629e-008,-1,-1.28642483332442e-007,-9.93715865149625e-009,-1,1.61655449915088e-007,-1.25367137115973e-007,-1,8.18810050873253e-008,-3.04313054755312e-008,
- -1,2.10656603272241e-009,6.45045403757649e-008,-1,8.18810121927527e-008,-3.04312983701038e-008,-1,-1.83639457418394e-007,-1.54252134620947e-007,-1,-8.80894646115848e-009,-3.62390380814759e-007,-1,1.66021493441804e-007,-5.70528698062844e-007,-1,-8.8089606720132e-009,-3.62390380814759e-007,-1,9.17800306865502e-008,-2.40475912960392e-007,-1,2.51019002917019e-007,-1.06695722479344e-007,-1,9.17800377919775e-008,-2.40475912960392e-007,-1,-6.74589344384913e-008,-3.74256103441439e-007,-1,2.66223025846557e-008,-1.97183027239589e-007,-1,1.55437149373938e-007,-3.50486857314536e-007,-1,2.84251996163221e-007,-5.03790658967773e-007,-1,1.55437135163083e-007,-3.50486828892826e-007,-1,-6.82131116036544e-008,-1.36898350433512e-007,-1,6.54105747344147e-008,-2.95929339699796e-007,-1,1.99034261072484e-007,-4.54960343176936e-007,-1,6.54105463127053e-008,-2.95929368121506e-007,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999764144420624,0.0169076826423407,0.0136302690953016,-0.999711811542511,0.0186640340834856,0.0151059478521347,-0.999998331069946,8.79012150107883e-005,-0.00181430112570524,-0.999945878982544,0.00882200431078672,0.00551740033552051,-0.999762177467346,0.015180628746748,0.0156531073153019,-0.999764204025269,0.0169096756726503,0.0136313969269395,-0.99999988079071,-0.000605812470894307,-0.00011491041368572,-0.99999737739563,-0.00187611219007522,0.00129215908236802,-0.999754130840302,0.0143160931766033,0.0169379431754351,-0.999762177467346,0.015180628746748,0.0156531073153019,-0.99999737739563,-0.00187611219007522,0.00129215908236802,-0.999990701675415,0.000548469892237335,0.00428461702540517,-0.999650597572327,0.0187421701848507,0.01863800175488,-0.999677777290344,0.0167691465467215,0.0190576761960983,-0.999994874000549,-0.000151995773194358,0.00322564388625324,-0.999996781349182,4.15582326240838e-005,0.00254468386992812,0.998917818069458,0.039652731269598,0.0243081841617823,0.999113440513611,0.0316595137119293,0.0277533233165741,0.999895036220551,0.0126794306561351,0.00701368041336536,0.999996602535248,0.000495342828799039,-0.00255522108636796,
- 0.999536514282227,0.0302128568291664,0.00373804057016969,0.9992516040802,0.0374185107648373,0.00979835446923971,0.999922573566437,0.0114615997299552,0.00484544364735484,0.999953329563141,0.00923860725015402,0.00281923706643283,0.999630331993103,0.0233347937464714,0.0139566967263818,0.999523043632507,0.0303497202694416,0.00570548791438341,0.999995708465576,0.00278131244704127,-0.0009392432984896,0.999998271465302,0.000744230637792498,0.00170126045122743,0.99958735704422,0.0213913582265377,0.0191739797592163,0.999630331993103,0.0233347937464714,0.0139566967263818,0.999998271465302,0.000744230637792498,0.00170126045122743,0.999970436096191,0.00670868577435613,0.00378579553216696,0,-0.768640398979187,-0.639681160449982,0,-0.768665432929993,-0.63965106010437,0,-0.768690466880798,-0.639620959758759,0,-0.768665432929993,-0.63965106010437,-1,0,-0,-1,0,-0,-1,0,-0,0.0116623267531395,-0.7630735039711,-0.646206438541412,0.0142583092674613,-0.763102829456329,-0.646119832992554,0.0193669646978378,-0.765460729598999,-0.643191158771515,0.023112066090107,-0.76542866230011,-0.643105626106262,0.00869174487888813,-0.767107725143433,-0.641459405422211,0.00716452673077583,-0.767559230327606,-0.64093804359436,0.0314108990132809,-0.76341849565506,-0.645140051841736,0.0237301643937826,-0.762129843235016,-0.646989166736603,0.0138322943821549,-0.761594355106354,-0.647906482219696,-0.0023457866627723,-0.766539573669434,-0.642192780971527,0.0213312543928623,-0.762653291225433,-0.646455585956573,0.00451080407947302,-0.765594303607941,-0.64330792427063,-0.000501768488902599,-0.766730725765228,-0.641968488693237,0.0160425417125225,-0.763152360916138,-0.646019399166107,-0.00228338711895049,-0.766969621181488,-0.641679406166077,0.0195374488830566,-0.762198507785797,-0.64704841375351,-0.000501768488902599,-0.766730725765228,-0.641968488693237,0.0195374488830566,-0.762198507785797,-0.64704841375351,0.0314108990132809,-0.76341849565506,-0.645140051841736,0.00716452673077583,-0.767559230327606,-0.64093804359436,0.00869174487888813,-0.767107725143433,-0.641459405422211,
- 0.0237301643937826,-0.762129843235016,-0.646989166736603,0.0138322943821549,-0.761594355106354,-0.647906482219696,0.00451080407947302,-0.765594303607941,-0.64330792427063,-0.0141599653288722,-0.776784002780914,-0.629607915878296,-0.0116875898092985,-0.767801702022552,-0.640581011772156,0.0164743456989527,-0.77121913433075,-0.6363565325737,0.0164156649261713,-0.770666539669037,-0.637027084827423,-0.00661371694877744,-0.789218842983246,-0.614076495170593,0.00746684987097979,-0.767153978347778,-0.641419470310211,0.00638616178184748,-0.765650629997253,-0.643225014209747,-0.00920883100479841,-0.790137767791748,-0.612860083580017,0.0192428380250931,-0.770382046699524,-0.637292146682739,0.0193338878452778,-0.77046149969101,-0.637193322181702,-0.00333050056360662,-0.766040802001953,-0.642783284187317,-0.00202256254851818,-0.765577077865601,-0.643341064453125,0.00325918942689896,-0.762811541557312,-0.646612703800201,0.0205043628811836,-0.76968115568161,-0.638099193572998,0.0192428380250931,-0.770382046699524,-0.637292146682739,-0.00202256254851818,-0.765577077865601,-0.643341064453125,-0.00572596769779921,-0.762850821018219,-0.646549046039581,0.0205922164022923,-0.767094612121582,-0.641203463077545,0.0205043628811836,-0.76968115568161,-0.638099193572998,0.00325918942689896,-0.762811541557312,-0.646612703800201,-0.00316738383844495,-0.765667676925659,-0.643228590488434,0.0222586300224066,-0.765506625175476,-0.643043041229248,0.0222569238394499,-0.765506625175476,-0.643043100833893,-0.0032936364877969,-0.765667617321014,-0.643227994441986,0.0204931907355785,-0.771093606948853,-0.636392056941986,0.0205742288380861,-0.768873333930969,-0.6390700340271,-0.00364435068331659,-0.76452624797821,-0.644582211971283,0.00468487199395895,-0.765219688415527,-0.643752157688141,-0.00333050056360662,-0.766040802001953,-0.642783284187317,0.0193338878452778,-0.77046149969101,-0.637193322181702,0.0204931907355785,-0.771093606948853,-0.636392056941986,0.00468487199395895,-0.765219688415527,-0.643752157688141,0.00468487199395895,-0.765219688415527,-0.643752157688141,
- -0.00364435068331659,-0.76452624797821,-0.644582211971283,-0.0304405447095633,-0.773510098457336,-0.633052527904511,-0.0295874215662479,-0.778387248516083,-0.627086758613586,-0.0365721359848976,-0.765123963356018,-0.64284348487854,-0.00316738383844495,-0.765667676925659,-0.643228590488434,-0.0032936364877969,-0.765667617321014,-0.643227994441986,-0.032695434987545,-0.7652268409729,-0.642929971218109,-0.0235504116863012,-0.775597989559174,-0.630787789821625,-0.00572596769779921,-0.762850821018219,-0.646549046039581,0.00325918942689896,-0.762811541557312,-0.646612703800201,-0.0269173253327608,-0.779155194759369,-0.626252830028534,-0.0269173253327608,-0.779155194759369,-0.626252830028534,0.00325918942689896,-0.762811541557312,-0.646612703800201,-0.00202256254851818,-0.765577077865601,-0.643341064453125,-0.0302750617265701,-0.7806556224823,-0.624227643013,-0.00333050056360662,-0.766040802001953,-0.642783284187317,-0.026918675750494,-0.781432688236237,-0.623408734798431,-0.0302750617265701,-0.7806556224823,-0.624227643013,-0.00202256254851818,-0.765577077865601,-0.643341064453125,-0.026918675750494,-0.781432688236237,-0.623408734798431,-0.00333050056360662,-0.766040802001953,-0.642783284187317,0.00468487199395895,-0.765219688415527,-0.643752157688141,-0.0295874215662479,-0.778387248516083,-0.627086758613586,-0.0302750617265701,-0.7806556224823,-0.624227643013,-0.026918675750494,-0.781432688236237,-0.623408734798431,-0.00661371694877744,-0.789218842983246,-0.614076495170593,-0.00920883100479841,-0.790137767791748,-0.612860083580017,-0.0269173253327608,-0.779155194759369,-0.626252830028534,-0.0302750617265701,-0.7806556224823,-0.624227643013,-0.00920883100479841,-0.790137767791748,-0.612860083580017,-0.0129743115976453,-0.778733670711517,-0.627220511436462,-0.0235504116863012,-0.775597989559174,-0.630787789821625,-0.0269173253327608,-0.779155194759369,-0.626252830028534,-0.0129743115976453,-0.778733670711517,-0.627220511436462,-0.0112870698794723,-0.765774786472321,-0.643009781837463,-0.0365721359848976,-0.765123963356018,-0.64284348487854,
- -0.032695434987545,-0.7652268409729,-0.642929971218109,-0.0177113804966211,-0.765518546104431,-0.643170058727264,0.00508885504677892,-0.765628695487976,-0.643262565135956,-0.0295874215662479,-0.778387248516083,-0.627086758613586,-0.0304405447095633,-0.773510098457336,-0.633052527904511,-0.0116875898092985,-0.767801702022552,-0.640581011772156,-0.0141599653288722,-0.776784002780914,-0.629607915878296,-0.00661371694877744,-0.789218842983246,-0.614076495170593,-0.026918675750494,-0.781432688236237,-0.623408734798431,-0.0295874215662479,-0.778387248516083,-0.627086758613586,-0.0141599653288722,-0.776784002780914,-0.629607915878296,-0.0229103118181229,0.761617124080658,0.647622108459473,-0.0232039764523506,0.761507511138916,0.647740542888641,-0.023880697786808,0.761269390583038,0.647995889186859,-0.0238802116364241,0.761275231838226,0.647988975048065,-0.023198401555419,0.761846125125885,0.647342562675476,-0.0231214985251427,0.761896848678589,0.647285521030426,-0.000788439356256276,0.765962898731232,0.642884314060211,0.000270065676886588,0.765477418899536,0.643462657928467,-0.0227510500699282,0.761637687683105,0.647603571414948,0.00512787513434887,0.76540869474411,0.64352411031723,-0.000788439356256276,0.765962898731232,0.642884314060211,-0.0231214985251427,0.761896848678589,0.647285521030426,-0.0229168329387903,0.761505246162415,0.647753477096558,-0.0065500745549798,0.764093101024628,0.645072758197784,0.00512787513434887,0.76540869474411,0.64352411031723,-0.0227510500699282,0.761637687683105,0.647603571414948,-0.0233150869607925,0.761799812316895,0.647392928600311,-0.00358432019129395,0.765637695789337,0.643262147903442,-0.0035844910889864,0.765624761581421,0.643277406692505,-0.0233155079185963,0.761792540550232,0.647401511669159,0.00517279095947742,0.764790654182434,0.644258081912994,-0.00655051646754146,0.764093697071075,0.645072042942047,-0.0232039764523506,0.761507511138916,0.647740542888641,-0.0229103118181229,0.761617124080658,0.647622108459473,-0.023198401555419,0.761846125125885,0.647342562675476,0.000270065676886588,0.765477418899536,0.643462657928467,
- 0.00517279095947742,0.764790654182434,0.644258081912994,-0.0229103118181229,0.761617124080658,0.647622108459473,0.000270065676886588,0.765477418899536,0.643462657928467,-0.000788439356256276,0.765962898731232,0.642884314060211,0.0155143197625875,0.767902672290802,0.640378594398499,0.0155139490962029,0.767902314662933,0.640379011631012,0.00512787513434887,0.76540869474411,0.64352411031723,0.0155350705608726,0.767903447151184,0.640377342700958,0.0155143197625875,0.767902672290802,0.640378594398499,-0.000788439356256276,0.765962898731232,0.642884314060211,-0.0065500745549798,0.764093101024628,0.645072758197784,0.0155367664992809,0.76790463924408,0.640375733375549,0.0155350705608726,0.767903447151184,0.640377342700958,0.00512787513434887,0.76540869474411,0.64352411031723,-0.00358432019129395,0.765637695789337,0.643262147903442,0.0155574046075344,0.767907738685608,0.640371561050415,0.0155570562928915,0.767907738685608,0.640371561050415,-0.0035844910889864,0.765624761581421,0.643277406692505,0.0155334752053022,0.767901122570038,0.640380084514618,0.0155360549688339,0.767905235290527,0.640375196933746,-0.00655051646754146,0.764093697071075,0.645072042942047,0.00517279095947742,0.764790654182434,0.644258081912994,0.000270065676886588,0.765477418899536,0.643462657928467,0.0155139490962029,0.767902314662933,0.640379011631012,0.0155334752053022,0.767901122570038,0.640380084514618,0.00517279095947742,0.764790654182434,0.644258081912994,-0.00793657265603542,-0.766285955905914,-0.64245069026947,-0.00652762409299612,-0.764995157718658,-0.644002974033356,0.0124011002480984,-0.765206038951874,-0.64366602897644,0.0123891206458211,-0.765182435512543,-0.643694281578064,0.00466356985270977,-0.765718162059784,-0.64315938949585,0.0121398521587253,-0.765375792980194,-0.643469214439392,0.0124011002480984,-0.765206038951874,-0.64366602897644,-0.00652762409299612,-0.764995157718658,-0.644002974033356,-0.00712030800059438,-0.766411483287811,-0.642310500144959,0.0121104549616575,-0.765410423278809,-0.643428504467011,0.0121398521587253,-0.765375792980194,-0.643469214439392,
- 0.00466356985270977,-0.765718162059784,-0.64315938949585,-0.0120366243645549,-0.765584111213684,-0.643223285675049,0.0117972018197179,-0.76519900560379,-0.643685758113861,0.011796023696661,-0.765199065208435,-0.643685698509216,-0.0120352869853377,-0.765575587749481,-0.643233478069305,0.0121462186798453,-0.76501476764679,-0.643898248672485,0.0121175199747086,-0.76498156785965,-0.643938183784485,-0.0071243061684072,-0.765997707843781,-0.642803966999054,0.00461167981848121,-0.766341388225555,-0.642417013645172,-0.00793657265603542,-0.766285955905914,-0.64245069026947,0.0123891206458211,-0.765182435512543,-0.643694281578064,0.0121462186798453,-0.76501476764679,-0.643898248672485,0.00461167981848121,-0.766341388225555,-0.642417013645172,-0.025882625952363,-0.769272983074188,-0.6383957862854,-0.0306586567312479,-0.769117593765259,-0.638371527194977,-0.00652762409299612,-0.764995157718658,-0.644002974033356,-0.00793657265603542,-0.766285955905914,-0.64245069026947,-0.025882625952363,-0.769272983074188,-0.6383957862854,-0.00793657265603542,-0.766285955905914,-0.64245069026947,0.00461167981848121,-0.766341388225555,-0.642417013645172,-0.0273833610117435,-0.768826603889465,-0.638870775699615,-0.0071243061684072,-0.765997707843781,-0.642803966999054,-0.0208308156579733,-0.767735600471497,-0.640428006649017,-0.0273833610117435,-0.768826603889465,-0.638870775699615,0.00461167981848121,-0.766341388225555,-0.642417013645172,-0.0243157483637333,-0.76598185300827,-0.642402112483978,-0.0120366243645549,-0.765584111213684,-0.643223285675049,-0.0120352869853377,-0.765575587749481,-0.643233478069305,-0.0314880087971687,-0.765846312046051,-0.642252266407013,-0.0265087932348251,-0.768046975135803,-0.639844536781311,-0.00712030800059438,-0.766411483287811,-0.642310500144959,0.00466356985270977,-0.765718162059784,-0.64315938949585,-0.030589435249567,-0.769287407398224,-0.638170182704926,-0.030589435249567,-0.769287407398224,-0.638170182704926,0.00466356985270977,-0.765718162059784,-0.64315938949585,-0.00652762409299612,-0.764995157718658,-0.644002974033356,
- -0.0306586567312479,-0.769117593765259,-0.638371527194977,0.0107481591403484,-0.761250734329224,-0.64836847782135,0.0143531421199441,-0.761479139328003,-0.648030459880829,-0.0306586567312479,-0.769117593765259,-0.638371527194977,-0.025882625952363,-0.769272983074188,-0.6383957862854,0.00660737976431847,-0.759924232959747,-0.64997798204422,-0.030589435249567,-0.769287407398224,-0.638170182704926,-0.0306586567312479,-0.769117593765259,-0.638371527194977,0.0143531421199441,-0.761479139328003,-0.648030459880829,0.0330528989434242,-0.759241759777069,-0.649968862533569,-0.0265087932348251,-0.768046975135803,-0.639844536781311,-0.030589435249567,-0.769287407398224,-0.638170182704926,0.00660737976431847,-0.759924232959747,-0.64997798204422,0.0156979337334633,-0.764760732650757,-0.644123077392578,-0.0243157483637333,-0.76598185300827,-0.642402112483978,-0.0314880087971687,-0.765846312046051,-0.642252266407013,0.0185379795730114,-0.764701187610626,-0.644118249416351,-0.0273833610117435,-0.768826603889465,-0.638870775699615,-0.0208308156579733,-0.767735600471497,-0.640428006649017,0.023737920448184,-0.759033739566803,-0.650618433952332,0.00559738976880908,-0.758581399917603,-0.65155416727066,0.0107481591403484,-0.761250734329224,-0.64836847782135,-0.025882625952363,-0.769272983074188,-0.6383957862854,-0.0273833610117435,-0.768826603889465,-0.638870775699615,0.00559738976880908,-0.758581399917603,-0.65155416727066,0.0139833381399512,-0.765149772167206,-0.643700480461121,0.0137809216976166,-0.763260900974274,-0.645943403244019,0.00716452673077583,-0.767559230327606,-0.64093804359436,0.00869174487888813,-0.767107725143433,-0.641459405422211,0.0139833381399512,-0.765149772167206,-0.643700480461121,0.00869174487888813,-0.767107725143433,-0.641459405422211,0.00451080407947302,-0.765594303607941,-0.64330792427063,0.0281859915703535,-0.763886868953705,-0.64473432302475,0.0213312543928623,-0.762653291225433,-0.646455585956573,0.0100747151300311,-0.758914470672607,-0.651112377643585,0.0281859915703535,-0.763886868953705,-0.64473432302475,
- 0.00451080407947302,-0.765594303607941,-0.64330792427063,0.00901045836508274,-0.758943974971771,-0.651093602180481,0.0104420520365238,-0.758936822414398,-0.65108060836792,0.0142583092674613,-0.763102829456329,-0.646119832992554,0.0116623267531395,-0.7630735039711,-0.646206438541412,0.0306849163025618,-0.763798117637634,-0.644725322723389,0.0195271354168653,-0.760642945766449,-0.64887672662735,0.0160425417125225,-0.763152360916138,-0.646019399166107,-0.000501768488902599,-0.766730725765228,-0.641968488693237,0.0306849163025618,-0.763798117637634,-0.644725322723389,-0.000501768488902599,-0.766730725765228,-0.641968488693237,0.00716452673077583,-0.767559230327606,-0.64093804359436,0.0137809216976166,-0.763260900974274,-0.645943403244019,0.0100747151300311,-0.758914470672607,-0.651112377643585,-0.0271123219281435,-0.75288325548172,-0.65759539604187,-0.0268598739057779,-0.760687828063965,-0.648561894893646,0.0281859915703535,-0.763886868953705,-0.64473432302475,0.0237301643937826,-0.762129843235016,-0.646989166736603,0.0314108990132809,-0.76341849565506,-0.645140051841736,0.0143531421199441,-0.761479139328003,-0.648030459880829,0.0107481591403484,-0.761250734329224,-0.64836847782135,0.0237301643937826,-0.762129843235016,-0.646989166736603,0.0107481591403484,-0.761250734329224,-0.64836847782135,0.00559738976880908,-0.758581399917603,-0.65155416727066,0.0138322943821549,-0.761594355106354,-0.647906482219696,0.023737920448184,-0.759033739566803,-0.650618433952332,-0.0023457866627723,-0.766539573669434,-0.642192780971527,0.0138322943821549,-0.761594355106354,-0.647906482219696,0.00559738976880908,-0.758581399917603,-0.65155416727066,0.0193669646978378,-0.765460729598999,-0.643191158771515,0.0156979337334633,-0.764760732650757,-0.644123077392578,0.0185379795730114,-0.764701187610626,-0.644118249416351,0.023112066090107,-0.76542866230011,-0.643105626106262,-0.00228338711895049,-0.766969621181488,-0.641679406166077,0.0330528989434242,-0.759241759777069,-0.649968862533569,0.00660737976431847,-0.759924232959747,-0.64997798204422,
- 0.0195374488830566,-0.762198507785797,-0.64704841375351,0.0195374488830566,-0.762198507785797,-0.64704841375351,0.00660737976431847,-0.759924232959747,-0.64997798204422,0.0143531421199441,-0.761479139328003,-0.648030459880829,0.0314108990132809,-0.76341849565506,-0.645140051841736,0.0278644450008869,-0.765342175960541,-0.643020272254944,0.0274593494832516,-0.765350699424744,-0.643027484416962,0.00508885504677892,-0.765628695487976,-0.643262565135956,-0.0177113804966211,-0.765518546104431,-0.643170058727264,0.00394523330032825,-0.766794919967651,-0.64188015460968,0.00389448809437454,-0.766719341278076,-0.641970634460449,-0.0112870698794723,-0.765774786472321,-0.643009781837463,-0.0129743115976453,-0.778733670711517,-0.627220511436462,0.00638616178184748,-0.765650629997253,-0.643225014209747,0.00394523330032825,-0.766794919967651,-0.64188015460968,-0.0129743115976453,-0.778733670711517,-0.627220511436462,-0.00920883100479841,-0.790137767791748,-0.612860083580017,0.0164156649261713,-0.770666539669037,-0.637027084827423,0.00746684987097979,-0.767153978347778,-0.641419470310211,-0.00661371694877744,-0.789218842983246,-0.614076495170593,-0.0141599653288722,-0.776784002780914,-0.629607915878296,-0.0238420926034451,0.761277377605438,0.647987961769104,-0.0238623544573784,0.761276364326477,0.647988438606262,-0.0231214985251427,0.761896848678589,0.647285521030426,-0.023198401555419,0.761846125125885,0.647342562675476,-0.0238623544573784,0.761276364326477,0.647988438606262,-0.0238950550556183,0.761265873908997,0.647999584674835,-0.0227510500699282,0.761637687683105,0.647603571414948,-0.0231214985251427,0.761896848678589,0.647285521030426,-0.0238950550556183,0.761265873908997,0.647999584674835,-0.0238960273563862,0.761267602443695,0.647997558116913,-0.0229168329387903,0.761505246162415,0.647753477096558,-0.0227510500699282,0.761637687683105,0.647603571414948,-0.0239053033292294,0.761267185211182,0.647997498512268,-0.0239044614136219,0.761267185211182,0.647997558116913,-0.0233150869607925,0.761799812316895,0.647392928600311,-0.0233155079185963,0.761792540550232,0.647401511669159,
- -0.0238802116364241,0.761275231838226,0.647988975048065,-0.0238420926034451,0.761277377605438,0.647987961769104,-0.023198401555419,0.761846125125885,0.647342562675476,-0.0229103118181229,0.761617124080658,0.647622108459473,-0.023472486063838,-0.765762805938721,-0.642694592475891,-0.0231190826743841,-0.766498565673828,-0.641829907894135,0.0137809216976166,-0.763260900974274,-0.645943403244019,0.0139833381399512,-0.765149772167206,-0.643700480461121,-0.0268598739057779,-0.760687828063965,-0.648561894893646,-0.023472486063838,-0.765762805938721,-0.642694592475891,0.0139833381399512,-0.765149772167206,-0.643700480461121,0.0281859915703535,-0.763886868953705,-0.64473432302475,-0.0193208921700716,-0.758231997489929,-0.651698470115662,-0.0192584041506052,-0.758232951164246,-0.651699244976044,0.0104420520365238,-0.758936822414398,-0.65108060836792,0.00901045836508274,-0.758943974971771,-0.651093602180481,-0.0236473865807056,-0.76289963722229,-0.646084189414978,-0.0235795434564352,-0.755397081375122,-0.654842913150787,0.0195271354168653,-0.760642945766449,-0.64887672662735,0.0306849163025618,-0.763798117637634,-0.644725322723389,-0.0231190826743841,-0.766498565673828,-0.641829907894135,-0.0236473865807056,-0.76289963722229,-0.646084189414978,0.0306849163025618,-0.763798117637634,-0.644725322723389,0.0137809216976166,-0.763260900974274,-0.645943403244019,-0.53479939699173,-0.667145073413849,-0.5185626745224,-0.61158561706543,-0.5916588306427,-0.5252645611763,-0.610107421875,-0.587388217449188,-0.531736612319946,-0.535343170166016,-0.666876435279846,-0.518346905708313,-0.584780097007751,-0.612680077552795,-0.53165328502655,-0.587872087955475,-0.611594140529633,-0.529489457607269,-0.550896286964417,-0.644658446311951,-0.530027091503143,-0.551045835018158,-0.643652558326721,-0.531093120574951,-0.609475314617157,-0.580525875091553,-0.539934813976288,-0.627461433410645,-0.54562646150589,-0.55550342798233,-0.523325204849243,-0.666115880012512,-0.531432390213013,-0.545812368392944,-0.641723453998566,-0.538776397705078,-0.5461585521698,-0.640682518482208,-0.53966361284256,
- -0.52715128660202,-0.664244711399078,-0.529991090297699,-0.615422964096069,-0.547126471996307,-0.567368686199188,-0.598494172096252,-0.585334897041321,-0.546980679035187,-0.5461585521698,-0.640682518482208,-0.53966361284256,-0.598494172096252,-0.585334897041321,-0.546980679035187,-0.584780097007751,-0.612680077552795,-0.53165328502655,-0.551045835018158,-0.643652558326721,-0.531093120574951,-0.550896286964417,-0.644658446311951,-0.530027091503143,-0.587872087955475,-0.611594140529633,-0.529489457607269,-0.609475314617157,-0.580525875091553,-0.539934813976288,-0.545812368392944,-0.641723453998566,-0.538776397705078,-0.520638167858124,-0.65157288312912,-0.551714360713959,-0.523886680603027,-0.646824598312378,-0.554220914840698,-0.529889047145844,-0.639914751052856,-0.556531012058258,-0.545257091522217,-0.612555682659149,-0.572250127792358,-0.534163177013397,-0.63195127248764,-0.561522424221039,-0.548170328140259,-0.60340404510498,-0.579148411750793,-0.548148512840271,-0.603249788284302,-0.5793297290802,-0.534255266189575,-0.630813539028168,-0.562712907791138,-0.545812368392944,-0.641723453998566,-0.538776397705078,-0.523325204849243,-0.666115880012512,-0.531432390213013,-0.523886680603027,-0.646824598312378,-0.554220914840698,-0.520638167858124,-0.65157288312912,-0.551714360713959,-0.510131061077118,-0.649503469467163,-0.563836336135864,-0.53479939699173,-0.667145073413849,-0.5185626745224,-0.535343170166016,-0.666876435279846,-0.518346905708313,-0.516000270843506,-0.648960590362549,-0.559100806713104,-0.529188215732574,-0.641014158725739,-0.555932283401489,-0.525511145591736,-0.647133409976959,-0.552319228649139,-0.52715128660202,-0.664244711399078,-0.529991090297699,-0.5461585521698,-0.640682518482208,-0.53966361284256,-0.529188215732574,-0.641014158725739,-0.555932283401489,-0.5461585521698,-0.640682518482208,-0.53966361284256,-0.551045835018158,-0.643652558326721,-0.531093120574951,-0.534255266189575,-0.630813539028168,-0.562712907791138,-0.550896286964417,-0.644658446311951,-0.530027091503143,-0.534163177013397,-0.63195127248764,-0.561522424221039,
- -0.534255266189575,-0.630813539028168,-0.562712907791138,-0.551045835018158,-0.643652558326721,-0.531093120574951,-0.534163177013397,-0.63195127248764,-0.561522424221039,-0.550896286964417,-0.644658446311951,-0.530027091503143,-0.545812368392944,-0.641723453998566,-0.538776397705078,-0.520638167858124,-0.65157288312912,-0.551714360713959,-0.548852860927582,-0.603371024131775,-0.578536093235016,-0.548709690570831,-0.603483200073242,-0.57855486869812,-0.55567067861557,-0.621760964393616,-0.551945149898529,-0.554984331130981,-0.621325433254242,-0.553124964237213,-0.548896789550781,-0.63143402338028,-0.547725677490234,-0.548520982265472,-0.6025750041008,-0.579679250717163,-0.548852860927582,-0.603371024131775,-0.578536093235016,-0.554984331130981,-0.621325433254242,-0.553124964237213,-0.541120707988739,-0.655396819114685,-0.526918649673462,-0.53531152009964,-0.626617848873138,-0.566384613513947,-0.548520982265472,-0.6025750041008,-0.579679250717163,-0.548896789550781,-0.63143402338028,-0.547725677490234,-0.554259538650513,-0.659586131572723,-0.507683634757996,-0.570933759212494,-0.650366306304932,-0.501057326793671,-0.562956035137177,-0.650697708129883,-0.50958114862442,-0.550359547138214,-0.65963751077652,-0.511842548847198,-0.547598600387573,-0.604314684867859,-0.578739643096924,-0.549345195293427,-0.600972473621368,-0.580561757087708,-0.548841714859009,-0.639442682266235,-0.538410425186157,-0.551489174365997,-0.625031709671021,-0.552444577217102,-0.55567067861557,-0.621760964393616,-0.551945149898529,-0.548709690570831,-0.603483200073242,-0.57855486869812,-0.547598600387573,-0.604314684867859,-0.578739643096924,-0.551489174365997,-0.625031709671021,-0.552444577217102,-0.551489174365997,-0.625031709671021,-0.552444577217102,-0.548841714859009,-0.639442682266235,-0.538410425186157,-0.602691411972046,-0.577479839324951,-0.550708770751953,-0.562601864337921,-0.646549642086029,-0.515221118927002,-0.58232444524765,-0.623745799064636,-0.521382093429565,-0.554259538650513,-0.659586131572723,-0.507683634757996,-0.550359547138214,-0.65963751077652,-0.511842548847198,
- -0.573776006698608,-0.628370046615601,-0.525292456150055,-0.602448701858521,-0.581414222717285,-0.546820998191834,-0.541120707988739,-0.655396819114685,-0.526918649673462,-0.548896789550781,-0.63143402338028,-0.547725677490234,-0.561551809310913,-0.651537001132965,-0.510057866573334,-0.561551809310913,-0.651537001132965,-0.510057866573334,-0.548896789550781,-0.63143402338028,-0.547725677490234,-0.554984331130981,-0.621325433254242,-0.553124964237213,-0.565769016742706,-0.644095659255981,-0.514826476573944,-0.55567067861557,-0.621760964393616,-0.551945149898529,-0.566542267799377,-0.64418363571167,-0.513865113258362,-0.565769016742706,-0.644095659255981,-0.514826476573944,-0.554984331130981,-0.621325433254242,-0.553124964237213,-0.566542267799377,-0.64418363571167,-0.513865113258362,-0.55567067861557,-0.621760964393616,-0.551945149898529,-0.551489174365997,-0.625031709671021,-0.552444577217102,-0.562601864337921,-0.646549642086029,-0.515221118927002,-0.565769016742706,-0.644095659255981,-0.514826476573944,-0.566542267799377,-0.64418363571167,-0.513865113258362,-0.587872087955475,-0.611594140529633,-0.529489457607269,-0.584780097007751,-0.612680077552795,-0.53165328502655,-0.598494172096252,-0.585334897041321,-0.546980679035187,-0.561551809310913,-0.651537001132965,-0.510057866573334,-0.565769016742706,-0.644095659255981,-0.514826476573944,-0.584780097007751,-0.612680077552795,-0.53165328502655,-0.615422964096069,-0.547126471996307,-0.567368686199188,-0.602448701858521,-0.581414222717285,-0.546820998191834,-0.561551809310913,-0.651537001132965,-0.510057866573334,-0.598494172096252,-0.585334897041321,-0.546980679035187,-0.61158561706543,-0.5916588306427,-0.5252645611763,-0.58232444524765,-0.623745799064636,-0.521382093429565,-0.573776006698608,-0.628370046615601,-0.525292456150055,-0.610107421875,-0.587388217449188,-0.531736612319946,-0.562601864337921,-0.646549642086029,-0.515221118927002,-0.602691411972046,-0.577479839324951,-0.550708770751953,-0.627461433410645,-0.54562646150589,-0.55550342798233,-0.609475314617157,-0.580525875091553,-0.539934813976288,
- -0.587872087955475,-0.611594140529633,-0.529489457607269,-0.566542267799377,-0.64418363571167,-0.513865113258362,-0.562601864337921,-0.646549642086029,-0.515221118927002,-0.609475314617157,-0.580525875091553,-0.539934813976288,-0.539740324020386,-0.625347673892975,-0.563578486442566,-0.533760845661163,-0.625174582004547,-0.569435000419617,-0.510131061077118,-0.649503469467163,-0.563836336135864,-0.516000270843506,-0.648960590362549,-0.559100806713104,-0.540725648403168,-0.617950201034546,-0.570748150348663,-0.524174988269806,-0.64761871099472,-0.553019523620605,-0.525511145591736,-0.647133409976959,-0.552319228649139,-0.529188215732574,-0.641014158725739,-0.555932283401489,-0.548148512840271,-0.603249788284302,-0.5793297290802,-0.540725648403168,-0.617950201034546,-0.570748150348663,-0.529188215732574,-0.641014158725739,-0.555932283401489,-0.534255266189575,-0.630813539028168,-0.562712907791138,-0.545257091522217,-0.612555682659149,-0.572250127792358,-0.548170328140259,-0.60340404510498,-0.579148411750793,-0.534163177013397,-0.63195127248764,-0.561522424221039,-0.520638167858124,-0.65157288312912,-0.551714360713959,0,-7.36263336875709e-006,-1,0,-4.79785376228392e-005,-1,0,-0.000142532036988996,-1,0,-8.39096755953506e-005,-1,0,-2.10097441595281e-005,-1,0,-1.20473996503279e-005,-1,-0.64326936006546,-0.76563948392868,-0.000799793924670666,-0.643209040164948,-0.765565574169159,0.0138398287817836,-0.643217027187347,-0.765575051307678,0.0129141546785831,-0.643269538879395,-0.76563972234726,-0.000423669902374968,-0.644168138504028,-0.764868497848511,0.00486926781013608,-0.642652213573456,-0.766104817390442,0.00902807619422674,-0.643496334552765,-0.76542055606842,-0.00662070699036121,-0.642947733402252,-0.76585590839386,-0.00910406280308962,-0.647294223308563,-0.762235999107361,-0.00254303100518882,-0.647267460823059,-0.762167990207672,-0.0120361689478159,-0.641337454319,-0.767239153385162,0.0055029927752912,-0.644109547138214,-0.764929533004761,-0.00237505394034088,-0.644920527935028,-0.76423567533493,-0.00461780373007059,
- -0.64348691701889,-0.765410363674164,0.00846052914857864,-0.645812571048737,-0.763018250465393,-0.0270053744316101,-0.643597066402435,-0.765210390090942,-0.0153576880693436,-0.644920527935028,-0.76423567533493,-0.00461780373007059,-0.643597066402435,-0.765210390090942,-0.0153576880693436,-0.644168138504028,-0.764868497848511,0.00486926781013608,-0.642947733402252,-0.76585590839386,-0.00910406280308962,-0.643496334552765,-0.76542055606842,-0.00662070699036121,-0.642652213573456,-0.766104817390442,0.00902807619422674,-0.647294223308563,-0.762235999107361,-0.00254303100518882,-0.644109547138214,-0.764929533004761,-0.00237505394034088,-0.640052497386932,-0.768299996852875,0.00692245969548821,-0.642360627651215,-0.766399025917053,0.00229993462562561,-0.648033320903778,-0.761586785316467,-0.00619791680946946,-0.64540958404541,-0.763811349868774,-0.00623297644779086,-0.643183529376984,-0.765578091144562,0.0143238147720695,-0.643828749656677,-0.765141844749451,-0.00652184244245291,-0.643993675708771,-0.765001654624939,-0.00667582266032696,-0.643695950508118,-0.765149354934692,0.0142122162505984,-0.644109547138214,-0.764929533004761,-0.00237505394034088,-0.641337454319,-0.767239153385162,0.0055029927752912,-0.642360627651215,-0.766399025917053,0.00229993462562561,-0.640052497386932,-0.768299996852875,0.00692245969548821,-0.645974695682526,-0.763357281684875,0.00154559488873929,-0.64326936006546,-0.76563948392868,-0.000799793924670666,-0.643269538879395,-0.76563972234726,-0.000423669902374968,-0.645949959754944,-0.76337867975235,0.00134814041666687,-0.643108546733856,-0.765695631504059,0.0110303331166506,-0.645048499107361,-0.764129459857941,0.00428923685103655,-0.64348691701889,-0.765410363674164,0.00846052914857864,-0.644920527935028,-0.76423567533493,-0.00461780373007059,-0.643108546733856,-0.765695631504059,0.0110303331166506,-0.644920527935028,-0.76423567533493,-0.00461780373007059,-0.642947733402252,-0.76585590839386,-0.00910406280308962,-0.643695950508118,-0.765149354934692,0.0142122162505984,-0.643496334552765,-0.76542055606842,-0.00662070699036121,
- -0.643183529376984,-0.765578091144562,0.0143238147720695,-0.643695950508118,-0.765149354934692,0.0142122162505984,-0.642947733402252,-0.76585590839386,-0.00910406280308962,-0.643183529376984,-0.765578091144562,0.0143238147720695,-0.643496334552765,-0.76542055606842,-0.00662070699036121,-0.644109547138214,-0.764929533004761,-0.00237505394034088,-0.640052497386932,-0.768299996852875,0.00692245969548821,-0.64325225353241,-0.765654325485229,0.00012935686390847,-0.643151760101318,-0.765738725662231,0.000145026715472341,-0.643098711967468,-0.765781223773956,0.0017948643071577,-0.643274486064911,-0.76563435792923,0.00138037127908319,-0.643846154212952,-0.765154957771301,0.000454101304057986,-0.64407742023468,-0.764959692955017,-0.00101926201023161,-0.64325225353241,-0.765654325485229,0.00012935686390847,-0.643274486064911,-0.76563435792923,0.00138037127908319,-0.643557369709015,-0.765396654605865,0.00132388528436422,-0.64427524805069,-0.76479309797287,-0.00107483158353716,-0.64407742023468,-0.764959692955017,-0.00101926201023161,-0.643846154212952,-0.765154957771301,0.000454101304057986,-0.643231213092804,-0.765670120716095,-0.00164644559845328,-0.643200039863586,-0.765693664550781,-0.00263225217349827,-0.643200099468231,-0.765693604946136,-0.00263058277778327,-0.643230855464935,-0.765669465065002,-0.00205540307797492,-0.642368495464325,-0.766395270824432,-0.00102123850956559,-0.642098307609558,-0.766621708869934,-0.00107379537075758,-0.641539335250854,-0.767089664936066,-0.000788825331255794,-0.641417384147644,-0.767191767692566,-0.000817602907773107,-0.643098711967468,-0.765781223773956,0.0017948643071577,-0.643151760101318,-0.765738725662231,0.000145026715472341,-0.642368495464325,-0.766395270824432,-0.00102123850956559,-0.641417384147644,-0.767191767692566,-0.000817602907773107,-0.641417384147644,-0.767191767692566,-0.000817602907773107,-0.641539335250854,-0.767089664936066,-0.000788825331255794,-0.643745362758636,-0.765125155448914,0.013246800750494,-0.645115613937378,-0.764052331447601,0.00705521367490292,-0.643101274967194,-0.765423476696014,0.0234006941318512,
- -0.643231213092804,-0.765670120716095,-0.00164644559845328,-0.643230855464935,-0.765669465065002,-0.00205540307797492,-0.64324426651001,-0.765593528747559,0.0101673770695925,-0.640042245388031,-0.768190085887909,0.0151597438380122,-0.643557369709015,-0.765396654605865,0.00132388528436422,-0.643846154212952,-0.765154957771301,0.000454101304057986,-0.640419185161591,-0.767961025238037,0.00996103603392839,-0.640419185161591,-0.767961025238037,0.00996103603392839,-0.643846154212952,-0.765154957771301,0.000454101304057986,-0.643274486064911,-0.76563435792923,0.00138037127908319,-0.643384158611298,-0.765418410301209,0.013840070925653,-0.643098711967468,-0.765781223773956,0.0017948643071577,-0.642546534538269,-0.766002893447876,0.0193265993148088,-0.643384158611298,-0.765418410301209,0.013840070925653,-0.643274486064911,-0.76563435792923,0.00138037127908319,-0.642546534538269,-0.766002893447876,0.0193265993148088,-0.643098711967468,-0.765781223773956,0.0017948643071577,-0.641417384147644,-0.767191767692566,-0.000817602907773107,-0.645115613937378,-0.764052331447601,0.00705521367490292,-0.643384158611298,-0.765418410301209,0.013840070925653,-0.642546534538269,-0.766002893447876,0.0193265993148088,-0.642652213573456,-0.766104817390442,0.00902807619422674,-0.644168138504028,-0.764868497848511,0.00486926781013608,-0.643597066402435,-0.765210390090942,-0.0153576880693436,-0.640419185161591,-0.767961025238037,0.00996103603392839,-0.643384158611298,-0.765418410301209,0.013840070925653,-0.644168138504028,-0.764868497848511,0.00486926781013608,-0.645812571048737,-0.763018250465393,-0.0270053744316101,-0.640042245388031,-0.768190085887909,0.0151597438380122,-0.640419185161591,-0.767961025238037,0.00996103603392839,-0.643597066402435,-0.765210390090942,-0.0153576880693436,-0.643209040164948,-0.765565574169159,0.0138398287817836,-0.643101274967194,-0.765423476696014,0.0234006941318512,-0.64324426651001,-0.765593528747559,0.0101673770695925,-0.643217027187347,-0.765575051307678,0.0129141546785831,-0.645115613937378,-0.764052331447601,0.00705521367490292,
- -0.643745362758636,-0.765125155448914,0.013246800750494,-0.647267460823059,-0.762167990207672,-0.0120361689478159,-0.647294223308563,-0.762235999107361,-0.00254303100518882,-0.642652213573456,-0.766104817390442,0.00902807619422674,-0.642546534538269,-0.766002893447876,0.0193265993148088,-0.645115613937378,-0.764052331447601,0.00705521367490292,-0.647294223308563,-0.762235999107361,-0.00254303100518882,-0.647634744644165,-0.761929869651794,-0.00568312965333462,-0.647634744644165,-0.761929929256439,-0.00568022392690182,-0.645974695682526,-0.763357281684875,0.00154559488873929,-0.645949959754944,-0.76337867975235,0.00134814041666687,-0.645990133285522,-0.763305366039276,-0.00785771384835243,-0.648611664772034,-0.761078655719757,-0.00788628496229649,-0.645048499107361,-0.764129459857941,0.00428923685103655,-0.643108546733856,-0.765695631504059,0.0110303331166506,-0.643993675708771,-0.765001654624939,-0.00667582266032696,-0.645990133285522,-0.763305366039276,-0.00785771384835243,-0.643108546733856,-0.765695631504059,0.0110303331166506,-0.643695950508118,-0.765149354934692,0.0142122162505984,-0.64540958404541,-0.763811349868774,-0.00623297644779086,-0.643828749656677,-0.765141844749451,-0.00652184244245291,-0.643183529376984,-0.765578091144562,0.0143238147720695,-0.640052497386932,-0.768299996852875,0.00692245969548821,-0.00451674591749907,-0.00513972109183669,0.999976634979248,0.0108261639252305,0.0135666355490685,0.999849438667297,0.0308866519480944,0.0352865904569626,0.998899817466736,-0.0229213312268257,-0.0271655805408955,0.999368131160736,-1.49446418618027e-006,-2.67921052454767e-007,-1,-5.32565877620073e-007,1.61460178560446e-007,-1,-5.74160821997793e-007,8.5752083123225e-007,-1,-1.69499821822683e-006,8.41410326302139e-007,-1,0.765822649002075,-0.64305192232132,-0,0.765792012214661,-0.643088340759277,-0,0.765772521495819,-0.643111526966095,-0,0.76578962802887,-0.643091201782227,-0,-0.0089705316349864,0.00753599964082241,0.999931335449219,0.0148930847644806,-0.0125077404081821,0.999810874462128,0.029128385707736,-0.0244661085307598,0.999276220798492,
- 0.0173033643513918,-0.0145334722474217,0.999744713306427,-0.00415465608239174,0.003491006558761,0.999985218048096,-0.0280069261789322,0.0235252156853676,0.999330878257751,0.766004323959351,-0.64283549785614,-0,0.766033470630646,-0.642800867557526,-0,0.765961170196533,-0.642886817455292,-0,0.765971541404724,-0.642874598503113,-0,0.0201226249337196,0.0202466975897551,0.999592423439026,-0.0087123392149806,-0.022189062088728,0.999715745449066,0.00247915578074753,0.0142965745180845,0.999894797801971,0.765971541404724,-0.642874598503113,-0,0.765961170196533,-0.642886817455292,-0,0.765961349010468,-0.642886698246002,-0,0.765967309474945,-0.642879605293274,-0,0.0334280766546726,0.0481773167848587,0.998279213905334,0.0201226249337196,0.0202466975897551,0.999592423439026,0.00247915578074753,0.0142965745180845,0.999894797801971,0.0329573750495911,0.0456088446080685,0.998415589332581,4.43525721038895e-007,2.79593280083645e-007,-1,-7.79020581376244e-009,-2.28599319029854e-007,-1,6.78816547861061e-007,3.92092317724746e-007,-1,1.10924872842588e-006,7.82572612934018e-007,-1,3.30499403844442e-007,2.83389198330042e-007,-1,0.765967309474945,-0.642879605293274,-0,0.765961349010468,-0.642886698246002,-0,0.765912890434265,-0.642944395542145,-0,0.765949189662933,-0.642901122570038,-0,0.0186866484582424,0.0348090976476669,0.999219238758087,0.0334280766546726,0.0481773167848587,0.998279213905334,0.0329573750495911,0.0456088446080685,0.998415589332581,0.0280724875628948,0.0309439674019814,0.99912691116333,4.25916084623168e-007,1.79308756287355e-007,-1,4.43525721038895e-007,2.79593280083645e-007,-1,3.30499403844442e-007,2.83389198330042e-007,-1,3.02252686879001e-007,3.59884325007442e-007,-1,0.765949189662933,-0.642901122570038,-0,0.765912890434265,-0.642944395542145,-0,0.765841841697693,-0.643028974533081,-0,0.765888631343842,-0.642973303794861,-0,0.011310201138258,0.0208202842622995,0.999719202518463,0.0186866484582424,0.0348090976476669,0.999219238758087,0.0280724875628948,0.0309439674019814,0.99912691116333,0.0278192609548569,0.0270672366023064,0.99924635887146,
- 3.28238996871733e-007,1.33482870978696e-007,-1,4.25916084623168e-007,1.79308756287355e-007,-1,3.02252686879001e-007,3.59884325007442e-007,-1,2.45583208879907e-007,2.92406468815898e-007,-1,0.765888631343842,-0.642973303794861,-0,0.765841841697693,-0.643028974533081,-0,0.765792012214661,-0.643088340759277,-0,0.765822649002075,-0.64305192232132,-0,0.0108261639252305,0.0135666355490685,0.999849438667297,0.011310201138258,0.0208202842622995,0.999719202518463,0.0278192609548569,0.0270672366023064,0.99924635887146,0.0308866519480944,0.0352865904569626,0.998899817466736,-5.32565877620073e-007,1.61460178560446e-007,-1,3.28238996871733e-007,1.33482870978696e-007,-1,2.45583208879907e-007,2.92406468815898e-007,-1,-5.74160821997793e-007,8.5752083123225e-007,-1,0.0481440424919128,0.0554357692599297,0.997300863265991,0.0127451941370964,0.015692101791501,0.99979567527771,0.0027073435485363,0.0024924089666456,0.999993145465851,0.0384927690029144,0.0450530461966991,0.998242795467377,0.0419751293957233,0.0359513163566589,0.998471677303314,0.0366159565746784,0.046767670661211,0.998234450817108,0.0127451941370964,0.015692101791501,0.99979567527771,0.0481440424919128,0.0554357692599297,0.997300863265991,0.0455616638064384,0.030084740370512,0.998508512973785,0.0291941054165363,0.0308602172881365,0.999097287654877,0.0366159565746784,0.046767670661211,0.998234450817108,0.0419751293957233,0.0359513163566589,0.998471677303314,0.0214544236660004,0.0152548206970096,0.999653398990631,0.0352050773799419,0.0358979888260365,0.998735249042511,0.0291941054165363,0.0308602172881365,0.999097287654877,0.0455616638064384,0.030084740370512,0.998508512973785,0.0470635928213596,0.0618301704525948,0.996976494789124,0.0323002450168133,0.0357848703861237,0.998837351799011,0.0352050773799419,0.0358979888260365,0.998735249042511,0.0214544236660004,0.0152548206970096,0.999653398990631,0.0394870638847351,0.0535987541079521,0.997781574726105,0.0262794885784388,0.0289142709225416,0.999236404895782,0.0323002450168133,0.0357848703861237,0.998837351799011,0.0470635928213596,0.0618301704525948,0.996976494789124,
- 0.0027073435485363,0.0024924089666456,0.999993145465851,0.0127451941370964,0.015692101791501,0.99979567527771,0.0108261639252305,0.0135666355490685,0.999849438667297,-0.00451674591749907,-0.00513972109183669,0.999976634979248,0.0127451941370964,0.015692101791501,0.99979567527771,0.0366159565746784,0.046767670661211,0.998234450817108,0.011310201138258,0.0208202842622995,0.999719202518463,0.0108261639252305,0.0135666355490685,0.999849438667297,0.0366159565746784,0.046767670661211,0.998234450817108,0.0291941054165363,0.0308602172881365,0.999097287654877,0.0186866484582424,0.0348090976476669,0.999219238758087,0.011310201138258,0.0208202842622995,0.999719202518463,0.0291941054165363,0.0308602172881365,0.999097287654877,0.0352050773799419,0.0358979888260365,0.998735249042511,0.0334280766546726,0.0481773167848587,0.998279213905334,0.0186866484582424,0.0348090976476669,0.999219238758087,0.0352050773799419,0.0358979888260365,0.998735249042511,0.0323002450168133,0.0357848703861237,0.998837351799011,0.0201226249337196,0.0202466975897551,0.999592423439026,0.0334280766546726,0.0481773167848587,0.998279213905334,0.0323002450168133,0.0357848703861237,0.998837351799011,0.0262794885784388,0.0289142709225416,0.999236404895782,-0.0087123392149806,-0.022189062088728,0.999715745449066,0.0201226249337196,0.0202466975897551,0.999592423439026,0.766087055206299,-0.642736792564392,-0,0.766169965267181,-0.642638146877289,-0,0.766033470630646,-0.642800867557526,-0,0.766004323959351,-0.64283549785614,-0,7.83829534611868e-007,3.78854849714116e-007,-1,1.03875595414138e-006,5.32362093963457e-007,-1,4.96381062475848e-007,5.91204070587992e-007,-1,4.53384188858763e-007,5.39993493475777e-007,-1,-0.00136498245410621,0.0028385950718075,0.999995052814484,0.0234166476875544,0.0235526748001575,0.999448299407959,0.0262794885784388,0.0289142709225416,0.999236404895782,0.0394870638847351,0.0535987541079521,0.997781574726105,-0.00934300106018782,-0.0103618446737528,0.999902665615082,9.80971890385263e-005,0.00358064146712422,0.999993622303009,0.0132273798808455,0.0218382626771927,0.999673962593079,
- -0.0240682195872068,-0.0225285366177559,0.999456465244293,0.0348641909658909,0.0415105745196342,-0.998529613018036,0.0116255255416036,0.0138417948037386,-0.999836564064026,6.4824781986772e-008,8.72742702995311e-007,-1,0.0174379870295525,0.0207638908177614,-0.999632298946381,-0.00897191930562258,0.00753667764365673,0.999931335449219,0.00209276494570076,-0.00175769254565239,0.999996304512024,-0.00136481190565974,0.00114668312016875,0.999998509883881,-0.00189519673585892,0.00159220804926008,0.999997019767761,-0.0067892586812377,0.00570354657247663,0.999960660934448,-0.0280070267617702,0.0235257837921381,0.999330818653107,0.0180149897933006,0.0289147384464741,0.999419510364532,0.0132273798808455,0.0218382626771927,0.999673962593079,9.80971890385263e-005,0.00358064146712422,0.999993622303009,-0.0248451009392738,-0.029944896697998,0.999242722988129,-0.000871759315486997,-0.00258925277739763,0.999996244907379,-0.0201438553631306,-0.0254218839108944,0.999473810195923,-0.0248451009392738,-0.029944896697998,0.999242722988129,-0.0119985062628984,-0.0166864302009344,0.999788761138916,0.0217769127339125,0.0261478070169687,0.999420881271362,-0.0448697991669178,-0.0597227141261101,0.997206032276154,-0.000871759315486997,-0.00258925277739763,0.999996244907379,-0.0248451009392738,-0.029944896697998,0.999242722988129,-0.0201438553631306,-0.0254218839108944,0.999473810195923,-0.0430096872150898,-0.054048802703619,0.997611582279205,-0.000702813966199756,-0.0105815064162016,0.999943912029266,-0.000871759315486997,-0.00258925277739763,0.999996244907379,-0.0448697991669178,-0.0597227141261101,0.997206032276154,-0.0119985062628984,-0.0166864302009344,0.999788761138916,-0.0248451009392738,-0.029944896697998,0.999242722988129,9.80971890385263e-005,0.00358064146712422,0.999993622303009,-0.00934300106018782,-0.0103618446737528,0.999902665615082,0.0281985215842724,0.0519811436533928,0.998249888420105,0.0180149897933006,0.0289147384464741,0.999419510364532,-0.000871759315486997,-0.00258925277739763,0.999996244907379,-0.000702813966199756,-0.0105815064162016,0.999943912029266,
- -0.0545277558267117,-0.0759294927120209,0.995621144771576,-0.000702813966199756,-0.0105815064162016,0.999943912029266,-0.0430096872150898,-0.054048802703619,0.997611582279205,-0.0813360661268234,-0.0891211554408073,0.99269425868988,6.78816547861061e-007,3.92092317724746e-007,-1,1.03875595414138e-006,5.32362093963457e-007,-1,7.83829534611868e-007,3.78854849714116e-007,-1,1.10924872842588e-006,7.82572612934018e-007,-1,-0.000956762523856014,-0.0157468300312757,0.999875605106354,-0.0087123392149806,-0.022189062088728,0.999715745449066,0.0262794885784388,0.0289142709225416,0.999236404895782,0.0234166476875544,0.0235526748001575,0.999448299407959,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1.19421406452602e-006,1.71726100006708e-007,-1,4.94135974804522e-007,3.69022586710344e-007,-1,5.08500249907229e-007,3.56956661562435e-007,-1,1.17815261546639e-006,2.22029768792709e-007,-1,1.19421406452602e-006,1.71726100006708e-007,-1,5.08500249907229e-007,3.56956661562435e-007,-1,9.32359796479432e-007,7.8231755651359e-007,-1,6.77791149428231e-007,2.38764528148749e-007,-1,6.66008475036506e-007,-3.43117051215813e-007,-1,1.17815261546639e-006,2.22029768792709e-007,-1,9.32359796479432e-007,7.8231755651359e-007,-1,5.08233483742515e-007,3.47795349853186e-007,-1,0.0116255255416036,0.0138417948037386,-0.999836564064026,6.77791149428231e-007,2.38764528148749e-007,-1,5.08233483742515e-007,3.47795349853186e-007,-1,6.4824781986772e-008,8.72742702995311e-007,-1,-0.0837432220578194,-0.0870688930153847,0.992676317691803,-0.0545277558267117,-0.0759294927120209,0.995621144771576,-0.0813360661268234,-0.0891211554408073,0.99269425868988,-0.999922275543213,0.00996017456054688,0.00749839236959815,-0.998440504074097,0.0427529141306877,0.0358990766108036,-0.99862813949585,0.0397311560809612,0.0341050587594509,-0.999368250370026,-0.0271210093051195,-0.0229732301086187,1,-2.66649544755637e-006,-4.73116142529761e-006,1,5.79550601287337e-007,-9.68300128079136e-007,1,-1.15469435968407e-006,-3.79955554308253e-006,1,-6.30504837317858e-006,-8.64261073729722e-006,1,-7.39483766665217e-007,-5.80858227294812e-007,
- 1,-7.47850208426826e-007,-5.70898293972277e-007,1,-4.77475282423256e-007,-3.09422631517009e-007,-0.998440504074097,0.0427529141306877,0.0358990766108036,-0.997598767280579,0.0510280393064022,0.0468281656503677,-0.998391330242157,0.0402202904224396,0.0399658158421516,-0.99862813949585,0.0397311560809612,0.0341050587594509,1,5.79550601287337e-007,-9.68300128079136e-007,1,-7.39483766665217e-007,-5.80858227294812e-007,1,-4.77475282423256e-007,-3.09422631517009e-007,1,-1.15469435968407e-006,-3.79955554308253e-006,-0.999212265014648,-0.0302157830446959,-0.0257254559546709,-0.999671161174774,-0.0191937070339918,-0.0170047618448734,-0.99956613779068,-0.0215556528419256,-0.0200665388256311,-0.999834656715393,-0.0116199366748333,-0.0139897437766194,1,4.4636669827014e-007,-1.73458647623193e-006,1,4.92491210479784e-007,-7.23257471690886e-007,1,9.36654942051973e-007,-6.68374639190006e-007,1,1.03598290479567e-006,-1.6214858078456e-006,-0.999931335449219,0.00753744225949049,-0.00897146575152874,-0.999810934066772,-0.0125077161937952,0.0148912454023957,-0.999276220798492,-0.0244667734950781,0.0291278809309006,-0.999744713306427,-0.0145331686362624,0.0173024386167526,-0.999985218048096,0.00349274254404008,-0.00415543420240283,-0.999330818653107,0.0235270634293556,-0.0280064381659031,-0,0.643107056617737,-0.76577627658844,0,0.643078684806824,-0.76580011844635,0,0.643035054206848,-0.765836715698242,0,0.643074214458466,-0.765803933143616,0,0.642849147319794,-0.765992820262909,0,0.642767727375031,-0.766061127185822,0,0.642642498016357,-0.766166210174561,0,0.642736434936523,-0.766087412834167,-0.998976171016693,-0.0415849722921848,-0.0178133472800255,-0.996708452701569,-0.058946181088686,-0.055654738098383,-0.998130619525909,-0.045936543494463,-0.0403111539781094,0,0.642880141735077,-0.765966832637787,0,0.642867922782898,-0.765977084636688,0,0.642767727375031,-0.766061127185822,0,0.642849147319794,-0.765992820262909,1,5.34309265276534e-007,5.30089664607658e-007,1,4.48846549261361e-007,3.76945962443642e-007,1,5.11615269260801e-007,4.29673605140124e-007,
- 1,-4.39888972323388e-005,-3.68436813005246e-005,-0.999358415603638,-0.0264088399708271,-0.0241940431296825,-0.998130619525909,-0.045936543494463,-0.0403111539781094,-0.997669219970703,-0.0491590760648251,-0.0473232567310333,-0.997141778469086,-0.0522770471870899,-0.0545469783246517,0,0.642880439758301,-0.765966594219208,0,0.642873704433441,-0.765972256660461,0,0.642867922782898,-0.765977084636688,0,0.642880141735077,-0.765966832637787,1,-6.64004328427836e-005,-5.56389240955468e-005,1,3.74576757167233e-007,3.46481186852543e-007,1,-3.29312788380776e-005,-2.76043920166558e-005,1,5.34309265276534e-007,5.30089664607658e-007,1,-4.39888972323388e-005,-3.68436813005246e-005,-0.999456942081451,-0.0207570064812899,-0.025592464953661,-0.999358415603638,-0.0264088399708271,-0.0241940431296825,-0.997141778469086,-0.0522770471870899,-0.0545469783246517,-0.999966382980347,-0.00314330658875406,-0.00757661834359169,0,0.642934381961823,-0.765921354293823,0,0.642893552780151,-0.765955567359924,0,0.642873704433441,-0.765972256660461,0,0.642880439758301,-0.765966594219208,1,3.15413075213655e-007,2.91607932467741e-007,1,-3.29312788380776e-005,-2.76043920166558e-005,1,3.74576757167233e-007,3.46481186852543e-007,1,3.1893364393909e-007,3.02777436900215e-007,-0.999495565891266,-0.021018648520112,-0.0238082744181156,-0.999456942081451,-0.0207570064812899,-0.025592464953661,-0.999966382980347,-0.00314330658875406,-0.00757661834359169,-0.99851655960083,-0.0426075235009193,-0.0339007824659348,0,0.643014848232269,-0.765853762626648,0,0.642962038516998,-0.765898168087006,0,0.642893552780151,-0.765955567359924,0,0.642934381961823,-0.765921354293823,1,2.28391670020756e-007,2.15234763345507e-007,1,3.15413075213655e-007,2.91607932467741e-007,1,3.1893364393909e-007,3.02777436900215e-007,1,2.81560062376229e-007,2.93670609607943e-007,1,2.54581550507282e-007,2.54026616630654e-007,-0.999671161174774,-0.0191937070339918,-0.0170047618448734,-0.999495565891266,-0.021018648520112,-0.0238082744181156,-0.99851655960083,-0.0426075235009193,-0.0339007824659348,-0.99956613779068,-0.0215556528419256,-0.0200665388256311,
- 0,0.643074214458466,-0.765803933143616,0,0.643035054206848,-0.765836715698242,0,0.642962038516998,-0.765898168087006,0,0.643014848232269,-0.765853762626648,1,4.92491210479784e-007,-7.23257471690886e-007,1,2.28391670020756e-007,2.15234763345507e-007,1,2.54581550507282e-007,2.54026616630654e-007,1,9.36654942051973e-007,-6.68374639190006e-007,-0.999474048614502,-0.025193439796567,-0.020415561273694,-0.999135553836823,-0.0322660282254219,-0.0262096617370844,-0.999788880348206,-0.0166863594204187,-0.0119985369965434,-0.999420821666718,0.0261943861842155,0.02172133885324,-0.997200548648834,-0.060589000582695,-0.0438152924180031,-0.999513149261475,-0.0221658423542976,-0.0219597518444061,-0.999135553836823,-0.0322660282254219,-0.0262096617370844,-0.999474048614502,-0.025193439796567,-0.020415561273694,-0.999788880348206,-0.0166863594204187,-0.0119985369965434,-0.999135553836823,-0.0322660282254219,-0.0262096617370844,-0.999671161174774,-0.0191937070339918,-0.0170047618448734,-0.999212265014648,-0.0302157830446959,-0.0257254559546709,-0.999135553836823,-0.0322660282254219,-0.0262096617370844,-0.999513149261475,-0.0221658423542976,-0.0219597518444061,-0.999495565891266,-0.021018648520112,-0.0238082744181156,-0.999671161174774,-0.0191937070339918,-0.0170047618448734,-0.999513149261475,-0.0221658423542976,-0.0219597518444061,-0.999646365642548,-0.0197118371725082,-0.0178476590663195,-0.999456942081451,-0.0207570064812899,-0.025592464953661,-0.999495565891266,-0.021018648520112,-0.0238082744181156,-0.999646365642548,-0.0197118371725082,-0.0178476590663195,-0.999551236629486,-0.0259036514908075,-0.0150403948500752,-0.999358415603638,-0.0264088399708271,-0.0241940431296825,-0.999456942081451,-0.0207570064812899,-0.025592464953661,-0.998976171016693,-0.0415849722921848,-0.0178133472800255,-0.998130619525909,-0.045936543494463,-0.0403111539781094,-0.999358415603638,-0.0264088399708271,-0.0241940431296825,-0.999551236629486,-0.0259036514908075,-0.0150403948500752,-0.999924659729004,0.00789838470518589,-0.00939906947314739,-0.999503016471863,0.0202766191214323,-0.0241367090493441,
- -0.999989867210388,-0.00289114960469306,0.00344704580493271,-0.999276161193848,-0.0244660470634699,0.0291297025978565,-0.99974662065506,-0.0144767947494984,0.0172374248504639,-0.997598767280579,0.0510280393064022,0.0468281656503677,-0.998359501361847,0.0372355245053768,0.0434973649680614,-0.998391330242157,0.0402202904224396,0.0399658158421516,-0.999781489372253,-0.01603077724576,-0.0134148709475994,-0.998440504074097,0.0427529141306877,0.0358990766108036,-0.999922275543213,0.00996017456054688,0.00749839236959815,-0.995708465576172,-0.0778582319617271,-0.0500276051461697,-0.998878538608551,-0.0427208952605724,-0.0204086061567068,-0.999646365642548,-0.0197118371725082,-0.0178476590663195,-0.999513149261475,-0.0221658423542976,-0.0219597518444061,-0.997200548648834,-0.060589000582695,-0.0438152924180031,-0.998878538608551,-0.0427208952605724,-0.0204086061567068,-0.999551236629486,-0.0259036514908075,-0.0150403948500752,-0.999646365642548,-0.0197118371725082,-0.0178476590663195,-0.996708452701569,-0.058946181088686,-0.055654738098383,-0.994802296161652,-0.0681195184588432,-0.0756856501102448,-0.994887232780457,-0.0731792971491814,-0.0696000307798386,1,4.48931416485721e-007,3.76927573597641e-007,1,5.11615269260801e-007,4.29673605140124e-007,1,4.48846549261361e-007,3.76945962443642e-007,-0.998130619525909,-0.045936543494463,-0.0403111539781094,-0.996708452701569,-0.058946181088686,-0.055654738098383,-0.994887232780457,-0.0731792971491814,-0.0696000307798386,-0.997669219970703,-0.0491590760648251,-0.0473232567310333,0.8598592877388,-0.321070194244385,-0.396932899951935,0.788500785827637,-0.614617645740509,0.0226194523274899,0.74714583158493,-0.663451850414276,0.0400607585906982,0.839647471904755,-0.382985532283783,-0.3851158618927,0.788500785827637,-0.614617645740509,0.0226194523274899,0.512249350547791,-0.735907137393951,0.442765355110168,0.454509407281876,-0.766060531139374,0.454502493143082,0.74714583158493,-0.663451850414276,0.0400607585906982,0.512249350547791,-0.735907137393951,0.442765355110168,0.105185724794865,-0.652248561382294,0.750671625137329,
- 0.0400606654584408,-0.663469552993774,0.74713009595871,0.454509407281876,-0.766060531139374,0.454502493143082,0.105185724794865,-0.652248561382294,0.750671625137329,-0.323622703552246,-0.386322110891342,0.863726556301117,-0.385125815868378,-0.383013635873795,0.839630007743835,0.0400606654584408,-0.663469552993774,0.74713009595871,-0.323622703552246,-0.386322110891342,0.863726556301117,-0.659143149852753,-0.00922520738095045,0.751960933208466,-0.707119345664978,9.65975050348789e-006,0.707094192504883,-0.385125815868378,-0.383013635873795,0.839630007743835,-0.659143149852753,-0.00922520738095045,0.751960933208466,-0.811796963214874,0.378142952919006,0.444964647293091,-0.839637994766235,0.38300359249115,0.385118544101715,-0.707119345664978,9.65975050348789e-006,0.707094192504883,-0.811796963214874,0.378142952919006,0.444964647293091,-0.740392625331879,0.671704649925232,0.0251338556408882,-0.747149229049683,0.663449048995972,-0.040041271597147,-0.839637994766235,0.38300359249115,0.385118544101715,-0.740392625331879,0.671704649925232,0.0251338556408882,-0.464248895645142,0.792922854423523,-0.394647181034088,-0.454483866691589,0.766082584857941,-0.45449087023735,-0.747149229049683,0.663449048995972,-0.040041271597147,-0.464248895645142,0.792922854423523,-0.394647181034088,-0.0572452917695045,0.709251582622528,-0.702627241611481,-0.0400624312460423,0.663415312767029,-0.747178137302399,-0.454483866691589,0.766082584857941,-0.45449087023735,-0.0572452917695045,0.709251582622528,-0.702627241611481,0.371517837047577,0.443337798118591,-0.815736472606659,0.385128170251846,0.383008986711502,-0.839631080627441,-0.0400624312460423,0.663415312767029,-0.747178137302399,0.371517837047577,0.443337798118591,-0.815736472606659,0.698533535003662,0.19484831392765,-0.688538312911987,0.724456012248993,0.0281870663166046,-0.68874454498291,0.385128170251846,0.383008986711502,-0.839631080627441,0.688551247119904,-0.195057228207588,-0.69846248626709,0.8598592877388,-0.321070194244385,-0.396932899951935,0.839647471904755,-0.382985532283783,-0.3851158618927,
- 0.688748359680176,-0.0281599499285221,-0.724453389644623,0.707148134708405,-1.70929088199046e-005,-0.707065403461456,0.707118034362793,3.37202473019715e-005,-0.707095503807068,0.707113981246948,4.06004401156679e-005,-0.707099676132202,0.707128524780273,1.61040825332748e-005,-0.707085132598877,0.707126796245575,1.88927388080629e-005,-0.707086741924286,0.707098662853241,6.63509927107953e-005,-0.707114994525909,0.707142770290375,-7.8991779446369e-006,-0.707070887088776,0.707139194011688,-2.05275136977434e-006,-0.707074344158173,0.707122325897217,2.6502828404773e-005,-0.707091331481934,0.707197904586792,-0.000100967656180728,-0.707015633583069,0.707153022289276,-2.53008165600477e-005,-0.707060575485229,0.707118093967438,3.37535275320988e-005,-0.707095563411713,-0.707101225852966,2.81466600426938e-005,0.707112371921539,-0.839621186256409,0.383035153150558,0.385123878717422,-0.815567374229431,0.440629810094833,0.375093638896942,-0.701867699623108,0.0629141181707382,0.709523558616638,-0.385146379470825,-0.3830646276474,0.839597404003143,-0.707101225852966,2.81466600426938e-005,0.707112371921539,-0.701867699623108,0.0629141181707382,0.709523558616638,-0.393623381853104,-0.324005544185638,0.860279560089111,0.0400957316160202,-0.663434207439423,0.747159540653229,-0.385146379470825,-0.3830646276474,0.839597404003143,-0.393623381853104,-0.324005544185638,0.860279560089111,0.0265601966530085,-0.616338908672333,0.787032961845398,0.454480648040771,-0.766093015670776,0.454476356506348,0.0400957316160202,-0.663434207439423,0.747159540653229,0.0265601966530085,-0.616338908672333,0.787032961845398,0.446081876754761,-0.735933661460876,0.509325742721558,0.747186720371246,-0.66340297460556,0.0401065461337566,0.454480648040771,-0.766093015670776,0.454476356506348,0.446081876754761,-0.735933661460876,0.509325742721558,0.752581298351288,-0.650582253932953,0.101803824305534,0.839609503746033,-0.383052110671997,-0.385132312774658,0.747186720371246,-0.66340297460556,0.0401065461337566,0.752581298351288,-0.650582253932953,0.101803824305534,0.863897562026978,-0.383310079574585,-0.326732814311981,
- 0.706229031085968,-0.00104283355176449,-0.707982659339905,0.839609503746033,-0.383052110671997,-0.385132312774658,0.863897562026978,-0.383310079574585,-0.326732814311981,0.826056957244873,-0.0166650079190731,-0.563340187072754,0.385119527578354,0.383037477731705,-0.83962219953537,0.707969129085541,0.00104779959656298,-0.706242680549622,0.563380777835846,0.0165906343609095,-0.826030790805817,0.441936075687408,0.381194114685059,-0.812024295330048,-0.0400616936385632,0.663434505462646,-0.747161149978638,0.385119527578354,0.383037477731705,-0.83962219953537,0.441936075687408,0.381194114685059,-0.812024295330048,0.0216952916234732,0.673639953136444,-0.738741159439087,-0.454488098621368,0.766080856323242,-0.454489707946777,-0.0400616936385632,0.663434505462646,-0.747161149978638,0.0216952916234732,0.673639953136444,-0.738741159439087,-0.397821545600891,0.793195605278015,-0.461062788963318,-0.747165143489838,0.663429617881775,-0.0400670990347862,-0.454488098621368,0.766080856323242,-0.454489707946777,-0.397821545600891,0.793195605278015,-0.461062788963318,-0.704320251941681,0.707869708538055,-0.0534164421260357,-0.839621186256409,0.383035153150558,0.385123878717422,-0.747165143489838,0.663429617881775,-0.0400670990347862,-0.704320251941681,0.707869708538055,-0.0534164421260357,-0.815567374229431,0.440629810094833,0.375093638896942,-0.707119345664978,9.65975050348789e-006,0.707094192504883,-0.839637994766235,0.38300359249115,0.385118544101715,-0.839621186256409,0.383035153150558,0.385123878717422,-0.707101225852966,2.81466600426938e-005,0.707112371921539,-0.385125815868378,-0.383013635873795,0.839630007743835,-0.707119345664978,9.65975050348789e-006,0.707094192504883,-0.707101225852966,2.81466600426938e-005,0.707112371921539,-0.385146379470825,-0.3830646276474,0.839597404003143,0.0400606654584408,-0.663469552993774,0.74713009595871,-0.385125815868378,-0.383013635873795,0.839630007743835,-0.385146379470825,-0.3830646276474,0.839597404003143,0.0400957316160202,-0.663434207439423,0.747159540653229,0.454509407281876,-0.766060531139374,0.454502493143082,
- 0.0400606654584408,-0.663469552993774,0.74713009595871,0.0400957316160202,-0.663434207439423,0.747159540653229,0.454480648040771,-0.766093015670776,0.454476356506348,0.74714583158493,-0.663451850414276,0.0400607585906982,0.454509407281876,-0.766060531139374,0.454502493143082,0.454480648040771,-0.766093015670776,0.454476356506348,0.747186720371246,-0.66340297460556,0.0401065461337566,0.839647471904755,-0.382985532283783,-0.3851158618927,0.74714583158493,-0.663451850414276,0.0400607585906982,0.747186720371246,-0.66340297460556,0.0401065461337566,0.839609503746033,-0.383052110671997,-0.385132312774658,0.688748359680176,-0.0281599499285221,-0.724453389644623,0.839647471904755,-0.382985532283783,-0.3851158618927,0.839609503746033,-0.383052110671997,-0.385132312774658,0.706229031085968,-0.00104283355176449,-0.707982659339905,0.385128170251846,0.383008986711502,-0.839631080627441,0.724456012248993,0.0281870663166046,-0.68874454498291,0.707969129085541,0.00104779959656298,-0.706242680549622,0.385119527578354,0.383037477731705,-0.83962219953537,-0.0400624312460423,0.663415312767029,-0.747178137302399,0.385128170251846,0.383008986711502,-0.839631080627441,0.385119527578354,0.383037477731705,-0.83962219953537,-0.0400616936385632,0.663434505462646,-0.747161149978638,-0.454483866691589,0.766082584857941,-0.45449087023735,-0.0400624312460423,0.663415312767029,-0.747178137302399,-0.0400616936385632,0.663434505462646,-0.747161149978638,-0.454488098621368,0.766080856323242,-0.454489707946777,-0.747149229049683,0.663449048995972,-0.040041271597147,-0.454483866691589,0.766082584857941,-0.45449087023735,-0.454488098621368,0.766080856323242,-0.454489707946777,-0.747165143489838,0.663429617881775,-0.0400670990347862,-0.839637994766235,0.38300359249115,0.385118544101715,-0.747149229049683,0.663449048995972,-0.040041271597147,-0.747165143489838,0.663429617881775,-0.0400670990347862,-0.839621186256409,0.383035153150558,0.385123878717422,0.843400955200195,-0.37812465429306,-0.381702393293381,0.686743855476379,-0.726863205432892,-0.0072736693546176,
- 0.675078630447388,-0.737238824367523,-0.0273449122905731,0.839635848999023,-0.383019328117371,-0.385107725858688,0.686743855476379,-0.726863205432892,-0.0072736693546176,0.27471598982811,-0.911900997161865,0.304906040430069,0.336592465639114,-0.879990220069885,0.335146009922028,0.675078630447388,-0.737238824367523,-0.0273449122905731,0.27471598982811,-0.911900997161865,0.304906040430069,-0.104445241391659,-0.789208889007568,0.605178117752075,-0.0581291429698467,-0.769465506076813,0.636037647724152,0.336592465639114,-0.879990220069885,0.335146009922028,-0.104445241391659,-0.789208889007568,0.605178117752075,-0.471372604370117,-0.467863380908966,0.747603893280029,-0.428351908922195,-0.43524444103241,0.79188197851181,-0.0581291429698467,-0.769465506076813,0.636037647724152,-0.471372604370117,-0.467863380908966,0.747603893280029,-0.703110039234161,0.00400066655129194,0.711069881916046,-0.707143366336823,-7.01596945873462e-005,0.707070112228394,-0.428351908922195,-0.43524444103241,0.79188197851181,-0.703110039234161,0.00400066655129194,0.711069881916046,-0.835801064968109,0.387131214141846,0.38931480050087,-0.839612126350403,0.383027076721191,0.385151356458664,-0.707143366336823,-7.01596945873462e-005,0.707070112228394,-0.835801064968109,0.387131214141846,0.38931480050087,-0.743568956851959,0.667702615261078,-0.0357537232339382,-0.747132897377014,0.663470208644867,-0.0399949289858341,-0.839612126350403,0.383027076721191,0.385151356458664,-0.743568956851959,0.667702615261078,-0.0357537232339382,-0.451103419065475,0.770520687103271,-0.45033723115921,-0.454527229070663,0.766037225723267,-0.454523772001266,-0.747132897377014,0.663470208644867,-0.0399949289858341,-0.451103419065475,0.770520687103271,-0.45033723115921,-0.0367417670786381,0.668026149272919,-0.743230223655701,-0.0400334373116493,0.663419008255005,-0.747176289558411,-0.454527229070663,0.766037225723267,-0.454523772001266,-0.0367417670786381,0.668026149272919,-0.743230223655701,0.388502717018127,0.387864798307419,-0.835838794708252,0.385143846273422,0.383009076118469,-0.839623808860779,
- -0.0400334373116493,0.663419008255005,-0.747176289558411,0.388502717018127,0.387864798307419,-0.835838794708252,0.717532098293304,0.0146664464846253,-0.696371078491211,0.706377685070038,-0.000887682079337537,-0.707834601402283,0.385143846273422,0.383009076118469,-0.839623808860779,0.696386635303497,-0.0147010153159499,-0.717516243457794,0.843400955200195,-0.37812465429306,-0.381702393293381,0.839635848999023,-0.383019328117371,-0.385107725858688,0.707915902137756,0.000918736099265516,-0.70629620552063,-0.707143366336823,-7.01596945873462e-005,0.707070112228394,-0.839612126350403,0.383027076721191,0.385151356458664,-0.816183388233185,0.44608336687088,0.367225170135498,-0.706560790538788,0.0694667622447014,0.704234480857849,-0.428351908922195,-0.43524444103241,0.79188197851181,-0.707143366336823,-7.01596945873462e-005,0.707070112228394,-0.706560790538788,0.0694667622447014,0.704234480857849,-0.384612828493118,-0.384951323270798,0.838978826999664,-0.0581291429698467,-0.769465506076813,0.636037647724152,-0.428351908922195,-0.43524444103241,0.79188197851181,-0.384612828493118,-0.384951323270798,0.838978826999664,0.0842222198843956,-0.755361497402191,0.649873554706573,0.336592465639114,-0.879990220069885,0.335146009922028,-0.0581291429698467,-0.769465506076813,0.636037647724152,0.0842222198843956,-0.755361497402191,0.649873554706573,0.482336401939392,-0.819592356681824,0.309224724769592,0.675078630447388,-0.737238824367523,-0.0273449122905731,0.336592465639114,-0.879990220069885,0.335146009922028,0.482336401939392,-0.819592356681824,0.309224724769592,0.739542365074158,-0.670443892478943,-0.0598501190543175,0.839635848999023,-0.383019328117371,-0.385107725858688,0.675078630447388,-0.737238824367523,-0.0273449122905731,0.739542365074158,-0.670443892478943,-0.0598501190543175,0.863273739814758,-0.390188962221146,-0.320173412561417,0.707915902137756,0.000918736099265516,-0.70629620552063,0.839635848999023,-0.383019328117371,-0.385107725858688,0.863273739814758,-0.390188962221146,-0.320173412561417,0.834110796451569,-0.0400826930999756,-0.550138711929321,
- 0.385143846273422,0.383009076118469,-0.839623808860779,0.706377685070038,-0.000887682079337537,-0.707834601402283,0.55027836561203,0.040146816521883,-0.834015548229218,0.448291331529617,0.374052762985229,-0.811861634254456,-0.0400334373116493,0.663419008255005,-0.747176289558411,0.385143846273422,0.383009076118469,-0.839623808860779,0.448291331529617,0.374052762985229,-0.811861634254456,0.0291103180497885,0.668985664844513,-0.74270498752594,-0.454527229070663,0.766037225723267,-0.454523772001266,-0.0400334373116493,0.663419008255005,-0.747176289558411,0.0291103180497885,0.668985664844513,-0.74270498752594,-0.391467034816742,0.79215943813324,-0.468227535486221,-0.747132897377014,0.663470208644867,-0.0399949289858341,-0.454527229070663,0.766037225723267,-0.454523772001266,-0.391467034816742,0.79215943813324,-0.468227535486221,-0.700907170772552,0.710557818412781,-0.0619413442909718,-0.839612126350403,0.383027076721191,0.385151356458664,-0.747132897377014,0.663470208644867,-0.0399949289858341,-0.700907170772552,0.710557818412781,-0.0619413442909718,-0.816183388233185,0.44608336687088,0.367225170135498,0.829147636890411,-0.400117695331573,-0.390409976243973,0.733933389186859,-0.678210496902466,0.037045281380415,0.751408457756042,-0.658677160739899,0.0391107872128487,0.842658877372742,-0.377464920282364,-0.383987337350845,0.733933389186859,-0.678210496902466,0.037045281380415,0.439353704452515,-0.776845991611481,0.451086074113846,0.459865063428879,-0.763672411441803,0.453131943941116,0.751408457756042,-0.658677160739899,0.0391107872128487,0.439353704452515,-0.776845991611481,0.451086074113846,0.0253890715539455,-0.670782148838043,0.741219758987427,0.0449532195925713,-0.663234710693359,0.747060179710388,0.459865063428879,-0.763672411441803,0.453131943941116,0.0253890715539455,-0.670782148838043,0.741219758987427,-0.397413522005081,-0.389471381902695,0.830887854099274,-0.38241258263588,-0.38337704539299,0.840703666210175,0.0449532195925713,-0.663234710693359,0.747060179710388,-0.397413522005081,-0.389471381902695,0.830887854099274,
- -0.707125425338745,-3.05399153148755e-005,0.707088112831116,-0.706764817237854,0.000365267624147236,0.707448542118073,-0.38241258263588,-0.38337704539299,0.840703666210175,-0.707125425338745,-3.05399153148755e-005,0.707088112831116,-0.830890893936157,0.389440685510635,0.39743709564209,-0.839683473110199,0.384558349847794,0.383466571569443,-0.706764817237854,0.000365267624147236,0.707448542118073,-0.830890893936157,0.389440685510635,0.39743709564209,-0.741165578365326,0.670845925807953,-0.0252841580659151,-0.745539844036102,0.665053308010101,-0.0432930216193199,-0.839683473110199,0.384558349847794,0.383466571569443,-0.741165578365326,0.670845925807953,-0.0252841580659151,-0.451065868139267,0.776880502700806,-0.439313381910324,-0.451106607913971,0.766230285167694,-0.457595944404602,-0.745539844036102,0.665053308010101,-0.0432930216193199,-0.451065868139267,0.776880502700806,-0.439313381910324,-0.0370606295764446,0.678095400333405,-0.734038889408112,-0.0366243124008179,0.661992311477661,-0.748615324497223,-0.451106607913971,0.766230285167694,-0.457595944404602,-0.0370606295764446,0.678095400333405,-0.734038889408112,0.390397131443024,0.400025248527527,-0.829198360443115,0.386952430009842,0.381608605384827,-0.839430093765259,-0.0366243124008179,0.661992311477661,-0.748615324497223,0.390397131443024,0.400025248527527,-0.829198360443115,0.732047438621521,0.0504041276872158,-0.679386496543884,0.716658771038055,0.0132361836731434,-0.697298347949982,0.386952430009842,0.381608605384827,-0.839430093765259,0.679449021816254,-0.0503128618001938,-0.731995761394501,0.829147636890411,-0.400117695331573,-0.390409976243973,0.842658877372742,-0.377464920282364,-0.383987337350845,0.697399795055389,-0.0131290564313531,-0.716562032699585,-0.706764817237854,0.000365267624147236,0.707448542118073,-0.839683473110199,0.384558349847794,0.383466571569443,-0.818323075771332,0.450434148311615,0.357010543346405,-0.713095664978027,0.0750830098986626,0.697034537792206,-0.38241258263588,-0.38337704539299,0.840703666210175,-0.706764817237854,0.000365267624147236,0.707448542118073,
- -0.713095664978027,0.0750830098986626,0.697034537792206,-0.410896003246307,-0.313526391983032,0.856075763702393,0.0449532195925713,-0.663234710693359,0.747060179710388,-0.38241258263588,-0.38337704539299,0.840703666210175,-0.410896003246307,-0.313526391983032,0.856075763702393,0.00703490152955055,-0.611151933670044,0.791481971740723,0.459865063428879,-0.763672411441803,0.453131943941116,0.0449532195925713,-0.663234710693359,0.747060179710388,0.00703490152955055,-0.611151933670044,0.791481971740723,0.428839474916458,-0.738394558429718,0.520451903343201,0.751408457756042,-0.658677160739899,0.0391107872128487,0.459865063428879,-0.763672411441803,0.453131943941116,0.428839474916458,-0.738394558429718,0.520451903343201,0.741470754146576,-0.66090327501297,0.115879274904728,0.842658877372742,-0.377464920282364,-0.383987337350845,0.751408457756042,-0.658677160739899,0.0391107872128487,0.741470754146576,-0.66090327501297,0.115879274904728,0.861248016357422,-0.399474710226059,-0.314120709896088,0.697399795055389,-0.0131290564313531,-0.716562032699585,0.842658877372742,-0.377464920282364,-0.383987337350845,0.861248016357422,-0.399474710226059,-0.314120709896088,0.83874249458313,-0.0708279609680176,-0.539902329444885,0.386952430009842,0.381608605384827,-0.839430093765259,0.716658771038055,0.0132361836731434,-0.697298347949982,0.540011882781982,0.0709239691495895,-0.838663756847382,0.453917175531387,0.364430844783783,-0.813110947608948,-0.0366243124008179,0.661992311477661,-0.748615324497223,0.386952430009842,0.381608605384827,-0.839430093765259,0.453917175531387,0.364430844783783,-0.813110947608948,0.0359412580728531,0.662120997905731,-0.748534560203552,-0.451106607913971,0.766230285167694,-0.457595944404602,-0.0366243124008179,0.661992311477661,-0.748615324497223,0.0359412580728531,0.662120997905731,-0.748534560203552,-0.385848373174667,0.789355993270874,-0.477533370256424,-0.745539844036102,0.665053308010101,-0.0432930216193199,-0.451106607913971,0.766230285167694,-0.457595944404602,-0.385848373174667,0.789355993270874,-0.477533370256424,
- -0.698593497276306,0.711808323860168,-0.0727737322449684,-0.839683473110199,0.384558349847794,0.383466571569443,-0.745539844036102,0.665053308010101,-0.0432930216193199,-0.698593497276306,0.711808323860168,-0.0727737322449684,-0.818323075771332,0.450434148311615,0.357010543346405,0.833148121833801,-0.385917335748672,-0.396146267652512,0.740784347057343,-0.670840382575989,0.0348108746111393,0.751280665397644,-0.659215033054352,0.0318270698189735,0.839143931865692,-0.375964730978012,-0.393049657344818,0.740784347057343,-0.670840382575989,0.0348108746111393,0.444739997386932,-0.771781623363495,0.454488128423691,0.457904756069183,-0.766559720039368,0.450232565402985,0.751280665397644,-0.659215033054352,0.0318270698189735,0.444739997386932,-0.771781623363495,0.454488128423691,0.0310976002365351,-0.66601949930191,0.74528580904007,0.0428974963724613,-0.666648685932159,0.7441366314888,0.457904756069183,-0.766559720039368,0.450232565402985,0.0310976002365351,-0.66601949930191,0.74528580904007,-0.391284286975861,-0.384980529546738,0.835874736309052,-0.384737491607666,-0.386983692646027,0.837986171245575,0.0428974963724613,-0.666648685932159,0.7441366314888,-0.391284286975861,-0.384980529546738,0.835874736309052,-0.707105457782745,7.02813963471272e-007,0.707108080387115,-0.707925796508789,-0.0010572939645499,0.706286013126373,-0.384737491607666,-0.386983692646027,0.837986171245575,-0.707105457782745,7.02813963471272e-007,0.707108080387115,-0.835901975631714,0.384928286075592,0.391277521848679,-0.839790642261505,0.384740889072418,0.383048355579376,-0.707925796508789,-0.0010572939645499,0.706286013126373,-0.835901975631714,0.384928286075592,0.391277521848679,-0.745283484458923,0.666026055812836,-0.0310151502490044,-0.745399594306946,0.665163218975067,-0.0440167225897312,-0.839790642261505,0.384740889072418,0.383048355579376,-0.745283484458923,0.666026055812836,-0.0310151502490044,-0.454506605863571,0.771759808063507,-0.444759160280228,-0.450678884983063,0.766032993793488,-0.458347082138062,-0.745399594306946,0.665163218975067,-0.0440167225897312,
- -0.454506605863571,0.771759808063507,-0.444759160280228,-0.0347902253270149,0.670791447162628,-0.740829586982727,-0.0315697826445103,0.659490466117859,-0.751049697399139,-0.450678884983063,0.766032993793488,-0.458347082138062,-0.0347902253270149,0.670791447162628,-0.740829586982727,0.396196037530899,0.385941714048386,-0.833113253116608,0.393076449632645,0.375946551561356,-0.839139461517334,-0.0315697826445103,0.659490466117859,-0.751049697399139,0.396196037530899,0.385941714048386,-0.833113253116608,0.72355729341507,0.0261376611888409,-0.689769268035889,0.710103034973145,0.00370701216161251,-0.704087972640991,0.393076449632645,0.375946551561356,-0.839139461517334,0.689787328243256,-0.0261511076241732,-0.723539650440216,0.833148121833801,-0.385917335748672,-0.396146267652512,0.839143931865692,-0.375964730978012,-0.393049657344818,0.704116821289063,-0.00370200676843524,-0.710074543952942,-0.707925796508789,-0.0010572939645499,0.706286013126373,-0.839790642261505,0.384740889072418,0.383048355579376,-0.815683126449585,0.437623709440231,0.378347158432007,-0.700137674808502,0.0593896545469761,0.711533606052399,-0.384737491607666,-0.386983692646027,0.837986171245575,-0.707925796508789,-0.0010572939645499,0.706286013126373,-0.700137674808502,0.0593896545469761,0.711533606052399,-0.390522748231888,-0.327029913663864,0.860548377037048,0.0428974963724613,-0.666648685932159,0.7441366314888,-0.384737491607666,-0.386983692646027,0.837986171245575,-0.390522748231888,-0.327029913663864,0.860548377037048,0.0301350224763155,-0.618302643299103,0.785362124443054,0.457904756069183,-0.766559720039368,0.450232565402985,0.0428974963724613,-0.666648685932159,0.7441366314888,0.0301350224763155,-0.618302643299103,0.785362124443054,0.449198812246323,-0.736210107803345,0.506176888942719,0.751280665397644,-0.659215033054352,0.0318270698189735,0.457904756069183,-0.766559720039368,0.450232565402985,0.449198812246323,-0.736210107803345,0.506176888942719,0.749302864074707,-0.661343038082123,0.0342128500342369,0.839143931865692,-0.375964730978012,-0.393049657344818,
- 0.751280665397644,-0.659215033054352,0.0318270698189735,0.749302864074707,-0.661343038082123,0.0342128500342369,0.816634774208069,-0.375435709953308,-0.43835574388504,0.704116821289063,-0.00370200676843524,-0.710074543952942,0.839143931865692,-0.375964730978012,-0.393049657344818,0.816634774208069,-0.375435709953308,-0.43835574388504,0.816008865833282,0.00121285673230886,-0.578038096427917,0.393076449632645,0.375946551561356,-0.839139461517334,0.710103034973145,0.00370701216161251,-0.704087972640991,0.578127503395081,-0.00123609567526728,-0.815945506095886,0.438386678695679,0.375412076711655,-0.816628932952881,-0.0315697826445103,0.659490466117859,-0.751049697399139,0.393076449632645,0.375946551561356,-0.839139461517334,0.438386678695679,0.375412076711655,-0.816628932952881,0.0248010456562042,0.673604667186737,-0.738675653934479,-0.450678884983063,0.766032993793488,-0.458347082138062,-0.0315697826445103,0.659490466117859,-0.751049697399139,0.0248010456562042,0.673604667186737,-0.738675653934479,-0.401126831769943,0.793212532997131,-0.458160728216171,-0.745399594306946,0.665163218975067,-0.0440167225897312,-0.450678884983063,0.766032993793488,-0.458347082138062,-0.401126831769943,0.793212532997131,-0.458160728216171,-0.706194698810577,0.706260979175568,-0.0498440563678741,-0.839790642261505,0.384740889072418,0.383048355579376,-0.745399594306946,0.665163218975067,-0.0440167225897312,-0.706194698810577,0.706260979175568,-0.0498440563678741,-0.815683126449585,0.437623709440231,0.378347158432007,0.842548549175262,-0.376274138689041,-0.385395348072052,0.753966093063354,-0.655848503112793,0.0373857319355011,0.74457186460495,-0.665962278842926,0.0459004007279873,0.83975076675415,-0.385645061731339,-0.382225871086121,0.753966093063354,-0.655848503112793,0.0373857319355011,0.465855717658997,-0.760228216648102,0.452804058790207,0.449017584323883,-0.765925049781799,0.460154294967651,0.74457186460495,-0.665962278842926,0.0459004007279873,0.465855717658997,-0.760228216648102,0.452804058790207,0.053297832608223,-0.659592032432556,0.749731838703156,
- 0.0345502570271492,-0.660611808300018,0.749932169914246,0.449017584323883,-0.765925049781799,0.460154294967651,0.053297832608223,-0.659592032432556,0.749731838703156,-0.373452633619308,-0.378653705120087,0.846849739551544,-0.387946754693985,-0.380234837532043,0.83959436416626,0.0345502570271492,-0.660611808300018,0.749932169914246,-0.373452633619308,-0.378653705120087,0.846849739551544,-0.707107245922089,2.61809168478067e-006,0.707106351852417,-0.704841434955597,0.00230906344950199,0.709361135959625,-0.387946754693985,-0.380234837532043,0.83959436416626,-0.707107245922089,2.61809168478067e-006,0.707106351852417,-0.846872091293335,0.378615170717239,0.3734410405159,-0.836346864700317,0.383763015270233,0.391471475362778,-0.704841434955597,0.00230906344950199,0.709361135959625,-0.846872091293335,0.378615170717239,0.3734410405159,-0.7497239112854,0.659603416919708,-0.0532681979238987,-0.747596740722656,0.663384735584259,-0.031936340034008,-0.836346864700317,0.383763015270233,0.391471475362778,-0.7497239112854,0.659603416919708,-0.0532681979238987,-0.452771306037903,0.760263383388519,-0.465830236673355,-0.458854198455811,0.767520904541016,-0.447620868682861,-0.747596740722656,0.663384735584259,-0.031936340034008,-0.452771306037903,0.760263383388519,-0.465830236673355,-0.0374155417084694,0.655818402767181,-0.753990948200226,-0.0456854477524757,0.666207134723663,-0.744366109371185,-0.458854198455811,0.767520904541016,-0.447620868682861,-0.0374155417084694,0.655818402767181,-0.753990948200226,0.385428845882416,0.376246005296707,-0.842545866966248,0.381593316793442,0.384875535964966,-0.840391218662262,-0.0456854477524757,0.666207134723663,-0.744366109371185,0.385428845882416,0.376246005296707,-0.842545866966248,0.715547800064087,0.0114701092243195,-0.698469698429108,0.704224228858948,-0.00327698094770312,-0.709970057010651,0.381593316793442,0.384875535964966,-0.840391218662262,0.698482513427734,-0.0114628439769149,-0.715535342693329,0.842548549175262,-0.376274138689041,-0.385395348072052,0.83975076675415,-0.385645061731339,-0.382225871086121,
- 0.709977388381958,0.00328139658086002,-0.704216837882996,-0.704841434955597,0.00230906344950199,0.709361135959625,-0.836346864700317,0.383763015270233,0.391471475362778,-0.815579295158386,0.440588146448135,0.375116497278214,-0.701882421970367,0.0628903210163116,0.70951110124588,-0.387946754693985,-0.380234837532043,0.83959436416626,-0.704841434955597,0.00230906344950199,0.709361135959625,-0.701882421970367,0.0628903210163116,0.70951110124588,-0.39361098408699,-0.324001312255859,0.860286891460419,0.0345502570271492,-0.660611808300018,0.749932169914246,-0.387946754693985,-0.380234837532043,0.83959436416626,-0.39361098408699,-0.324001312255859,0.860286891460419,0.026520274579525,-0.616340756416321,0.787032902240753,0.449017584323883,-0.765925049781799,0.460154294967651,0.0345502570271492,-0.660611808300018,0.749932169914246,0.026520274579525,-0.616340756416321,0.787032902240753,0.446105033159256,-0.735929310321808,0.509311497211456,0.74457186460495,-0.665962278842926,0.0459004007279873,0.449017584323883,-0.765925049781799,0.460154294967651,0.446105033159256,-0.735929310321808,0.509311497211456,0.752632021903992,-0.650528430938721,0.101773053407669,0.83975076675415,-0.385645061731339,-0.382225871086121,0.74457186460495,-0.665962278842926,0.0459004007279873,0.752632021903992,-0.650528430938721,0.101773053407669,0.8638836145401,-0.383298724889755,-0.326783061027527,0.709977388381958,0.00328139658086002,-0.704216837882996,0.83975076675415,-0.385645061731339,-0.382225871086121,0.8638836145401,-0.383298724889755,-0.326783061027527,0.826033592224121,-0.0165934097021818,-0.563376605510712,0.381593316793442,0.384875535964966,-0.840391218662262,0.704224228858948,-0.00327698094770312,-0.709970057010651,0.563394904136658,0.0165911242365837,-0.826021134853363,0.441979795694351,0.381182193756104,-0.812006294727325,-0.0456854477524757,0.666207134723663,-0.744366109371185,0.381593316793442,0.384875535964966,-0.840391218662262,0.441979795694351,0.381182193756104,-0.812006294727325,0.0217276960611343,0.67359721660614,-0.738779246807098,
- -0.458854198455811,0.767520904541016,-0.447620868682861,-0.0456854477524757,0.666207134723663,-0.744366109371185,0.0217276960611343,0.67359721660614,-0.738779246807098,-0.397825509309769,0.79318767786026,-0.461072951555252,-0.747596740722656,0.663384735584259,-0.031936340034008,-0.458854198455811,0.767520904541016,-0.447620868682861,-0.397825509309769,0.79318767786026,-0.461072951555252,-0.704305112361908,0.707889199256897,-0.0533579625189304,-0.836346864700317,0.383763015270233,0.391471475362778,-0.747596740722656,0.663384735584259,-0.031936340034008,-0.704305112361908,0.707889199256897,-0.0533579625189304,-0.815579295158386,0.440588146448135,0.375116497278214,0.84813666343689,-0.370600432157516,-0.378575682640076,0.756955683231354,-0.651828229427338,0.0462400317192078,0.747184634208679,-0.66340708732605,0.0400767475366592,0.839640557765961,-0.383001118898392,-0.385115385055542,0.756955683231354,-0.651828229427338,0.0462400317192078,0.465317875146866,-0.755579590797424,0.461062639951706,0.454497188329697,-0.766062021255493,0.454512119293213,0.747184634208679,-0.66340708732605,0.0400767475366592,0.465317875146866,-0.755579590797424,0.461062639951706,0.0513087548315525,-0.654141187667847,0.754630267620087,0.0400472618639469,-0.663461089134216,0.747138261795044,0.454497188329697,-0.766062021255493,0.454512119293213,0.0513087548315525,-0.654141187667847,0.754630267620087,-0.37410643696785,-0.374675899744034,0.848329186439514,-0.385135263204575,-0.383076697587967,0.839596927165985,0.0400472618639469,-0.663461089134216,0.747138261795044,-0.37410643696785,-0.374675899744034,0.848329186439514,-0.696914374828339,0.00805085618048906,0.717109203338623,-0.707113146781921,-2.52441600423481e-006,0.707100331783295,-0.385135263204575,-0.383076697587967,0.839596927165985,-0.696914374828339,0.00805085618048906,0.717109203338623,-0.83065927028656,0.391346514225006,0.396046698093414,-0.839608311653137,0.38305076956749,0.385136246681213,-0.707113146781921,-2.52441600423481e-006,0.707100331783295,-0.83065927028656,0.391346514225006,0.396046698093414,
- -0.739478230476379,0.672568678855896,-0.0286930110305548,-0.747132182121277,0.663472831249237,-0.0399664081633091,-0.839608311653137,0.38305076956749,0.385136246681213,-0.739478230476379,0.672568678855896,-0.0286930110305548,-0.447816789150238,0.776347219944,-0.443559736013412,-0.454505264759064,0.766054153442383,-0.454517185688019,-0.747132182121277,0.663472831249237,-0.0399664081633091,-0.447816789150238,0.776347219944,-0.443559736013412,-0.0338331572711468,0.674736082553864,-0.737283289432526,-0.0400500446557999,0.66335916519165,-0.747228562831879,-0.454505264759064,0.766054153442383,-0.454517185688019,-0.0338331572711468,0.674736082553864,-0.737283289432526,0.391565948724747,0.395352363586426,-0.830886721611023,0.385132551193237,0.383024305105209,-0.83962208032608,-0.0400500446557999,0.66335916519165,-0.747228562831879,0.391565948724747,0.395352363586426,-0.830886721611023,0.728325188159943,0.0379663854837418,-0.684179127216339,0.709604144096375,0.00307819317094982,-0.704593896865845,0.385132551193237,0.383024305105209,-0.83962208032608,0.684165120124817,-0.0379997827112675,-0.72833651304245,0.84813666343689,-0.370600432157516,-0.378575682640076,0.839640557765961,-0.383001118898392,-0.385115385055542,0.704588890075684,-0.00308769708499312,-0.709609031677246,-0.707113146781921,-2.52441600423481e-006,0.707100331783295,-0.839608311653137,0.38305076956749,0.385136246681213,-0.816563606262207,0.447364211082459,0.364813894033432,-0.707987546920776,0.0710930824279785,0.702637434005737,-0.385135263204575,-0.383076697587967,0.839596927165985,-0.707113146781921,-2.52441600423481e-006,0.707100331783295,-0.707987546920776,0.0710930824279785,0.702637434005737,-0.403449207544327,-0.316894471645355,0.858374416828156,0.0400472618639469,-0.663461089134216,0.747138261795044,-0.385135263204575,-0.383076697587967,0.839596927165985,-0.403449207544327,-0.316894471645355,0.858374416828156,0.0152856064960361,-0.612462997436523,0.790351510047913,0.454497188329697,-0.766062021255493,0.454512119293213,0.0400472618639469,-0.663461089134216,0.747138261795044,
- 0.0152856064960361,-0.612462997436523,0.790351510047913,0.436296254396439,-0.736621558666229,0.516753613948822,0.747184634208679,-0.66340708732605,0.0400767475366592,0.454497188329697,-0.766062021255493,0.454512119293213,0.436296254396439,-0.736621558666229,0.516753613948822,0.746576189994812,-0.655980229377747,0.110968463122845,0.839640557765961,-0.383001118898392,-0.385115385055542,0.747184634208679,-0.66340708732605,0.0400767475366592,0.746576189994812,-0.655980229377747,0.110968463122845,0.862953364849091,-0.392316877841949,-0.318432122468948,0.704588890075684,-0.00308769708499312,-0.709609031677246,0.839640557765961,-0.383001118898392,-0.385115385055542,0.862953364849091,-0.392316877841949,-0.318432122468948,0.835677266120911,-0.0472978614270687,-0.547180593013763,0.385132551193237,0.383024305105209,-0.83962208032608,0.709604144096375,0.00307819317094982,-0.704593896865845,0.547241687774658,0.0472763404250145,-0.835638403892517,0.44984433054924,0.371811389923096,-0.812032341957092,-0.0400500446557999,0.66335916519165,-0.747228562831879,0.385132551193237,0.383024305105209,-0.83962208032608,0.44984433054924,0.371811389923096,-0.812032341957092,0.0309887435287237,0.667391717433929,-0.744061827659607,-0.454505264759064,0.766054153442383,-0.454517185688019,-0.0400500446557999,0.66335916519165,-0.747228562831879,0.0309887435287237,0.667391717433929,-0.744061827659607,-0.389907479286194,0.791633784770966,-0.47041267156601,-0.747132182121277,0.663472831249237,-0.0399664081633091,-0.454505264759064,0.766054153442383,-0.454517185688019,-0.389907479286194,0.791633784770966,-0.47041267156601,-0.700177907943726,0.711053609848022,-0.0644495189189911,-0.839608311653137,0.38305076956749,0.385136246681213,-0.747132182121277,0.663472831249237,-0.0399664081633091,-0.700177907943726,0.711053609848022,-0.0644495189189911,-0.816563606262207,0.447364211082459,0.364813894033432,0.842303156852722,-0.416344702243805,-0.342319309711456,0.685305833816528,-0.727983236312866,-0.0199069809168577,0.652315855026245,-0.757193267345428,-0.0337972566485405,
- 0.840668201446533,-0.42297425866127,-0.338185906410217,0.685305833816528,-0.727983236312866,-0.0199069809168577,0.27114799618721,-0.91769814491272,0.290360003709793,0.333014518022537,-0.874997317790985,0.351398587226868,0.652315855026245,-0.757193267345428,-0.0337972566485405,0.27114799618721,-0.91769814491272,0.290360003709793,-0.108939900994301,-0.793839573860168,0.598290026187897,-0.0682010799646378,-0.762874126434326,0.642939865589142,0.333014518022537,-0.874997317790985,0.351398587226868,-0.108939900994301,-0.793839573860168,0.598290026187897,-0.474866509437561,-0.467984408140183,0.745313584804535,-0.421004056930542,-0.414837211370468,0.806638538837433,-0.0682010799646378,-0.762874126434326,0.642939865589142,-0.474866509437561,-0.467984408140183,0.745313584804535,-0.70710825920105,2.21874370254227e-006,0.707105398178101,-0.707113862037659,-2.54908741226245e-006,0.707099676132202,-0.421004056930542,-0.414837211370468,0.806638538837433,-0.70710825920105,2.21874370254227e-006,0.707105398178101,-0.845219850540161,0.380069613456726,0.375700235366821,-0.838363170623779,0.380365490913391,0.390473127365112,-0.707113862037659,-2.54908741226245e-006,0.707099676132202,-0.845219850540161,0.380069613456726,0.375700235366821,-0.748450636863709,0.661217212677002,-0.0511218719184399,-0.750397264957428,0.660266637802124,-0.0308506153523922,-0.838363170623779,0.380365490913391,0.390473127365112,-0.748450636863709,0.661217212677002,-0.0511218719184399,-0.451538652181625,0.76214736700058,-0.463944226503372,-0.46276718378067,0.766329348087311,-0.445629686117172,-0.750397264957428,0.660266637802124,-0.0308506153523922,-0.451538652181625,0.76214736700058,-0.463944226503372,-0.0360176376998425,0.657900989055634,-0.752242684364319,-0.0493404567241669,0.667401194572449,-0.743062019348145,-0.46276718378067,0.766329348087311,-0.445629686117172,-0.0360176376998425,0.657900989055634,-0.752242684364319,0.342688173055649,0.416780263185501,-0.841937661170959,0.338419556617737,0.423200964927673,-0.840460181236267,-0.0493404567241669,0.667401194572449,-0.743062019348145,
- 0.342688173055649,0.416780263185501,-0.841937661170959,0.717670202255249,0.014130212366581,-0.696239829063416,0.70735228061676,0.000283496134215966,-0.706861138343811,0.338419556617737,0.423200964927673,-0.840460181236267,0.69972687959671,-0.00965681113302708,-0.714345276355743,0.842303156852722,-0.416344702243805,-0.342319309711456,0.840668201446533,-0.42297425866127,-0.338185906410217,0.70691180229187,-0.00024012390349526,-0.707301795482636,-0.707113862037659,-2.54908741226245e-006,0.707099676132202,-0.838363170623779,0.380365490913391,0.390473127365112,-0.82287460565567,0.446539998054504,0.351396590471268,-0.707110702991486,-3.33886382577475e-005,0.70710277557373,-0.421004056930542,-0.414837211370468,0.806638538837433,-0.707113862037659,-2.54908741226245e-006,0.707099676132202,-0.707110702991486,-3.33886382577475e-005,0.70710277557373,-0.302657783031464,-0.563415706157684,0.768739938735962,-0.0682010799646378,-0.762874126434326,0.642939865589142,-0.421004056930542,-0.414837211370468,0.806638538837433,-0.302657783031464,-0.563415706157684,0.768739938735962,0.143620833754539,-0.817684412002563,0.557463228702545,0.333014518022537,-0.874997317790985,0.351398587226868,-0.0682010799646378,-0.762874126434326,0.642939865589142,0.143620833754539,-0.817684412002563,0.557463228702545,0.497935771942139,-0.841610312461853,0.209169983863831,0.652315855026245,-0.757193267345428,-0.0337972566485405,0.333014518022537,-0.874997317790985,0.351398587226868,0.497935771942139,-0.841610312461853,0.209169983863831,0.740118145942688,-0.666195690631866,-0.0916974917054176,0.840668201446533,-0.42297425866127,-0.338185906410217,0.652315855026245,-0.757193267345428,-0.0337972566485405,0.740118145942688,-0.666195690631866,-0.0916974917054176,0.831436693668365,-0.406831651926041,-0.378419071435928,0.70691180229187,-0.00024012390349526,-0.707301795482636,0.840668201446533,-0.42297425866127,-0.338185906410217,0.831436693668365,-0.406831651926041,-0.378419071435928,0.860478222370148,-0.00446985522285104,-0.509467601776123,0.338419556617737,0.423200964927673,-0.840460181236267,
- 0.70735228061676,0.000283496134215966,-0.706861138343811,0.509543538093567,0.00446405075490475,-0.860433220863342,0.378486573696136,0.406796604394913,-0.831423163414001,-0.0493404567241669,0.667401194572449,-0.743062019348145,0.338419556617737,0.423200964927673,-0.840460181236267,0.378486573696136,0.406796604394913,-0.831423163414001,0.0225854888558388,0.648609757423401,-0.76078599691391,-0.46276718378067,0.766329348087311,-0.445629686117172,-0.0493404567241669,0.667401194572449,-0.743062019348145,0.0225854888558388,0.648609757423401,-0.76078599691391,-0.394821852445602,0.775663316249847,-0.492404490709305,-0.750397264957428,0.660266637802124,-0.0308506153523922,-0.46276718378067,0.766329348087311,-0.445629686117172,-0.394821852445602,0.775663316249847,-0.492404490709305,-0.705817341804504,0.703278958797455,-0.0849737152457237,-0.838363170623779,0.380365490913391,0.390473127365112,-0.750397264957428,0.660266637802124,-0.0308506153523922,-0.705817341804504,0.703278958797455,-0.0849737152457237,-0.82287460565567,0.446539998054504,0.351396590471268,0.832757353782654,-0.39280903339386,-0.390149056911469,0.739246129989624,-0.672486901283264,0.0357270427048206,0.745782136917114,-0.664787292480469,0.0432058088481426,0.83975476026535,-0.384544461965561,-0.383324444293976,0.739246129989624,-0.672486901283264,0.0357270427048206,0.445789337158203,-0.773855090141296,0.449911385774612,0.45186510682106,-0.766115546226501,0.457039207220078,0.745782136917114,-0.664787292480469,0.0432058088481426,0.445789337158203,-0.773855090141296,0.449911385774612,0.0314184352755547,-0.670024812221527,0.741673529148102,0.0376604460179806,-0.662469267845154,0.748141825199127,0.45186510682106,-0.766115546226501,0.457039207220078,0.0314184352755547,-0.670024812221527,0.741673529148102,-0.393071711063385,-0.389109998941422,0.833119451999664,-0.38627752661705,-0.382105052471161,0.839514911174774,0.0376604460179806,-0.662469267845154,0.748141825199127,-0.393071711063385,-0.389109998941422,0.833119451999664,-0.707103490829468,1.45097726544918e-006,0.707110047340393,
- -0.707107663154602,-6.47046363155823e-007,0.707105934619904,-0.38627752661705,-0.382105052471161,0.839514911174774,-0.707103490829468,1.45097726544918e-006,0.707110047340393,-0.833140552043915,0.389073431491852,0.393063098192215,-0.839517831802368,0.382073760032654,0.38630223274231,-0.707107663154602,-6.47046363155823e-007,0.707105934619904,-0.833140552043915,0.389073431491852,0.393063098192215,-0.741692721843719,0.670009315013886,-0.0312966257333755,-0.748177468776703,0.662432849407196,-0.037593636661768,-0.839517831802368,0.382073760032654,0.38630223274231,-0.741692721843719,0.670009315013886,-0.0312966257333755,-0.449942111968994,0.773809850215912,-0.445836812257767,-0.457060962915421,0.766087472438812,-0.451891034841537,-0.748177468776703,0.662432849407196,-0.037593636661768,-0.449942111968994,0.773809850215912,-0.445836812257767,-0.0356313176453114,0.672449290752411,-0.739284932613373,-0.043096873909235,0.664801597595215,-0.745775878429413,-0.457060962915421,0.766087472438812,-0.451891034841537,-0.0356313176453114,0.672449290752411,-0.739284932613373,0.390192121267319,0.392823308706284,-0.83273047208786,0.383358985185623,0.384505242109299,-0.839756906032562,-0.043096873909235,0.664801597595215,-0.745775878429413,0.390192121267319,0.392823308706284,-0.83273047208786,0.724962651729584,0.0293336156755686,-0.688163340091705,0.712002754211426,0.00627194065600634,-0.702148675918579,0.383358985185623,0.384505242109299,-0.839756906032562,0.688163042068481,-0.0293431617319584,-0.724962532520294,0.832757353782654,-0.39280903339386,-0.390149056911469,0.83975476026535,-0.384544461965561,-0.383324444293976,0.702149450778961,-0.0062747816555202,-0.712002038955688,-0.707107663154602,-6.47046363155823e-007,0.707105934619904,-0.839517831802368,0.382073760032654,0.38630223274231,-0.823312163352966,0.44930425286293,0.346818059682846,-0.707111060619354,-7.63384650781518e-006,0.707102477550507,-0.38627752661705,-0.382105052471161,0.839514911174774,-0.707107663154602,-6.47046363155823e-007,0.707105934619904,-0.707111060619354,-7.63384650781518e-006,0.707102477550507,
- -0.346785634756088,-0.449308812618256,0.823323249816895,0.0376604460179806,-0.662469267845154,0.748141825199127,-0.38627752661705,-0.382105052471161,0.839514911174774,-0.346785634756088,-0.449308812618256,0.823323249816895,0.0867914706468582,-0.706209003925323,0.702663600444794,0.45186510682106,-0.766115546226501,0.457039207220078,0.0376604460179806,-0.662469267845154,0.748141825199127,0.0867914706468582,-0.706209003925323,0.702663600444794,0.490717053413391,-0.77928638458252,0.389755606651306,0.745782136917114,-0.664787292480469,0.0432058088481426,0.45186510682106,-0.766115546226501,0.457039207220078,0.490717053413391,-0.77928638458252,0.389755606651306,0.757176518440247,-0.652519881725311,-0.0300251338630915,0.83975476026535,-0.384544461965561,-0.383324444293976,0.745782136917114,-0.664787292480469,0.0432058088481426,0.757176518440247,-0.652519881725311,-0.0300251338630915,0.817818641662598,-0.36524373292923,-0.444712996482849,0.702149450778961,-0.0062747816555202,-0.712002038955688,0.83975476026535,-0.384544461965561,-0.383324444293976,0.817818641662598,-0.36524373292923,-0.444712996482849,0.825415194034576,-0.0153015619143844,-0.564318716526031,0.383358985185623,0.384505242109299,-0.839756906032562,0.712002754211426,0.00627194065600634,-0.702148675918579,0.564340353012085,0.0152999917045236,-0.825400471687317,0.444731324911118,0.365205883979797,-0.817825615406036,-0.043096873909235,0.664801597595215,-0.745775878429413,0.383358985185623,0.384505242109299,-0.839756906032562,0.444731324911118,0.365205883979797,-0.817825615406036,0.029998866841197,0.65255069732666,-0.757151007652283,-0.457060962915421,0.766087472438812,-0.451891034841537,-0.043096873909235,0.664801597595215,-0.745775878429413,0.029998866841197,0.65255069732666,-0.757151007652283,-0.389730185270309,0.779302000999451,-0.490712344646454,-0.748177468776703,0.662432849407196,-0.037593636661768,-0.457060962915421,0.766087472438812,-0.451891034841537,-0.389730185270309,0.779302000999451,-0.490712344646454,-0.702674984931946,0.706193208694458,-0.0868272036314011,
- -0.839517831802368,0.382073760032654,0.38630223274231,-0.748177468776703,0.662432849407196,-0.037593636661768,-0.702674984931946,0.706193208694458,-0.0868272036314011,-0.823312163352966,0.44930425286293,0.346818059682846,0.844651877880096,-0.376288443803787,-0.380749523639679,0.75263375043869,-0.656944751739502,0.0443388596177101,0.7471883893013,-0.663401126861572,0.0401054099202156,0.839640021324158,-0.383001387119293,-0.385116249322891,0.75263375043869,-0.656944751739502,0.0443388596177101,0.460330039262772,-0.759949862957001,0.45888164639473,0.454479873180389,-0.766101777553558,0.454462498426437,0.7471883893013,-0.663401126861572,0.0401054099202156,0.460330039262772,-0.759949862957001,0.45888164639473,0.0460114665329456,-0.657752692699432,0.751827299594879,0.0400652438402176,-0.663462042808533,0.747136533260345,0.454479873180389,-0.766101777553558,0.454462498426437,0.0460114665329456,-0.657752692699432,0.751827299594879,-0.37923002243042,-0.377588540315628,0.844755291938782,-0.385154098272324,-0.383015096187592,0.839616417884827,0.0400652438402176,-0.663462042808533,0.747136533260345,-0.37923002243042,-0.377588540315628,0.844755291938782,-0.70149564743042,0.00529912253841758,0.712653934955597,-0.707110941410065,-6.72063788442756e-006,0.707102596759796,-0.385154098272324,-0.383015096187592,0.839616417884827,-0.70149564743042,0.00529912253841758,0.712653934955597,-0.834441840648651,0.388383895158768,0.390979170799255,-0.839627087116241,0.38300484418869,0.385140925645828,-0.707110941410065,-6.72063788442756e-006,0.707102596759796,-0.834441840648651,0.388383895158768,0.390979170799255,-0.742400348186493,0.669087469577789,-0.0341107174754143,-0.747157752513886,0.663438677787781,-0.0400569327175617,-0.839627087116241,0.38300484418869,0.385140925645828,-0.742400348186493,0.669087469577789,-0.0341107174754143,-0.450077265501022,0.772111296653748,-0.448636412620544,-0.454470157623291,0.766106426715851,-0.454464167356491,-0.747157752513886,0.663438677787781,-0.0400569327175617,-0.450077265501022,0.772111296653748,-0.448636412620544,
- -0.0358061119914055,0.669887959957123,-0.74159824848175,-0.0400850139558315,0.663427829742432,-0.747165858745575,-0.454470157623291,0.766106426715851,-0.454464167356491,-0.0358061119914055,0.669887959957123,-0.74159824848175,0.389500439167023,0.389766007661819,-0.834488928318024,0.385140061378479,0.383011937141418,-0.839624285697937,-0.0400850139558315,0.663427829742432,-0.747165858745575,0.389500439167023,0.389766007661819,-0.834488928318024,0.720798075199127,0.0205437354743481,-0.692840576171875,0.71125864982605,0.00525988265872002,-0.702910780906677,0.385140061378479,0.383011937141418,-0.839624285697937,0.692793428897858,-0.0206141639500856,-0.720841407775879,0.844651877880096,-0.376288443803787,-0.380749523639679,0.839640021324158,-0.383001387119293,-0.385116249322891,0.702883005142212,-0.00529367616400123,-0.711285769939423,-0.707110941410065,-6.72063788442756e-006,0.707102596759796,-0.839627087116241,0.38300484418869,0.385140925645828,-0.815597414970398,0.44061017036438,0.375051230192184,-0.701885521411896,0.062910258769989,0.709506094455719,-0.385154098272324,-0.383015096187592,0.839616417884827,-0.707110941410065,-6.72063788442756e-006,0.707102596759796,-0.701885521411896,0.062910258769989,0.709506094455719,-0.393578290939331,-0.324028462171555,0.860291540622711,0.0400652438402176,-0.663462042808533,0.747136533260345,-0.385154098272324,-0.383015096187592,0.839616417884827,-0.393578290939331,-0.324028462171555,0.860291540622711,0.0265050027519464,-0.616323471069336,0.78704696893692,0.454479873180389,-0.766101777553558,0.454462498426437,0.0400652438402176,-0.663462042808533,0.747136533260345,0.0265050027519464,-0.616323471069336,0.78704696893692,0.446088314056396,-0.735953867435455,0.509290874004364,0.7471883893013,-0.663401126861572,0.0401054099202156,0.454479873180389,-0.766101777553558,0.454462498426437,0.446088314056396,-0.735953867435455,0.509290874004364,0.752609431743622,-0.650552809238434,0.101784229278564,0.839640021324158,-0.383001387119293,-0.385116249322891,0.7471883893013,-0.663401126861572,0.0401054099202156,
- 0.752609431743622,-0.650552809238434,0.101784229278564,0.863889396190643,-0.383310347795486,-0.326754301786423,0.702883005142212,-0.00529367616400123,-0.711285769939423,0.839640021324158,-0.383001387119293,-0.385116249322891,0.863889396190643,-0.383310347795486,-0.326754301786423,0.826087832450867,-0.0166068784892559,-0.563296616077423,0.385140061378479,0.383011937141418,-0.839624285697937,0.71125864982605,0.00525988265872002,-0.702910780906677,0.563352286815643,0.0165992118418217,-0.826050043106079,0.441891700029373,0.381215363740921,-0.812038540840149,-0.0400850139558315,0.663427829742432,-0.747165858745575,0.385140061378479,0.383011937141418,-0.839624285697937,0.441891700029373,0.381215363740921,-0.812038540840149,0.021717756986618,0.673604846000671,-0.738772511482239,-0.454470157623291,0.766106426715851,-0.454464167356491,-0.0400850139558315,0.663427829742432,-0.747165858745575,0.021717756986618,0.673604846000671,-0.738772511482239,-0.397805899381638,0.793212413787842,-0.461047261953354,-0.747157752513886,0.663438677787781,-0.0400569327175617,-0.454470157623291,0.766106426715851,-0.454464167356491,-0.397805899381638,0.793212413787842,-0.461047261953354,-0.7043137550354,0.707882523536682,-0.0533326603472233,-0.839627087116241,0.38300484418869,0.385140925645828,-0.747157752513886,0.663438677787781,-0.0400569327175617,-0.7043137550354,0.707882523536682,-0.0533326603472233,-0.815597414970398,0.44061017036438,0.375051230192184,0.844532012939453,-0.375921010971069,-0.381377995014191,0.753151714801788,-0.656429290771484,0.0431635044515133,0.746685028076172,-0.663902580738068,0.0411685258150101,0.839682817459106,-0.383511364459991,-0.384515136480331,0.753151714801788,-0.656429290771484,0.0431635044515133,0.461693614721298,-0.759706437587738,0.457913786172867,0.453448086977005,-0.766068518161774,0.45554792881012,0.746685028076172,-0.663902580738068,0.0411685258150101,0.461693614721298,-0.759706437587738,0.457913786172867,0.0476888082921505,-0.65781706571579,0.751666486263275,0.0389526039361954,-0.662950396537781,0.747649312019348,
- 0.453448086977005,-0.766068518161774,0.45554792881012,0.0476888082921505,-0.65781706571579,0.751666486263275,-0.377830386161804,-0.377590149641037,0.845381438732147,-0.385677486658096,-0.382537335157394,0.839594006538391,0.0389526039361954,-0.662950396537781,0.747649312019348,-0.377830386161804,-0.377590149641037,0.845381438732147,-0.707104384899139,3.56560985892429e-006,0.707109034061432,-0.706492841243744,0.000700652017258108,0.70771986246109,-0.385677486658096,-0.382537335157394,0.839594006538391,-0.707104384899139,3.56560985892429e-006,0.707109034061432,-0.845421731472015,0.377544760704041,0.37778577208519,-0.838638722896576,0.383636623620987,0.386662751436234,-0.706492841243744,0.000700652017258108,0.70771986246109,-0.845421731472015,0.377544760704041,0.37778577208519,-0.751638829708099,0.657855093479156,-0.0476015135645866,-0.746868908405304,0.663878798484802,-0.0381013117730618,-0.838638722896576,0.383636623620987,0.386662751436234,-0.751638829708099,0.657855093479156,-0.0476015135645866,-0.457927972078323,0.759694397449493,-0.461699485778809,-0.454942375421524,0.766806364059448,-0.452808231115341,-0.746868908405304,0.663878798484802,-0.0381013117730618,-0.457927972078323,0.759694397449493,-0.461699485778809,-0.0431569404900074,0.656387746334076,-0.753188371658325,-0.0407915525138378,0.664307594299316,-0.746345341205597,-0.454942375421524,0.766806364059448,-0.452808231115341,-0.0431569404900074,0.656387746334076,-0.753188371658325,0.381418257951736,0.375953942537308,-0.844499051570892,0.384778439998627,0.383793830871582,-0.839433014392853,-0.0407915525138378,0.664307594299316,-0.746345341205597,0.381418257951736,0.375953942537308,-0.844499051570892,0.720407903194427,0.0198194608092308,-0.693267405033112,0.707583844661713,0.000575830927118659,-0.70662921667099,0.384778439998627,0.383793830871582,-0.839433014392853,0.693260908126831,-0.01982107385993,-0.720414042472839,0.844532012939453,-0.375921010971069,-0.381377995014191,0.839682817459106,-0.383511364459991,-0.384515136480331,0.706620395183563,-0.000575435580685735,-0.707592725753784,
- -0.706492841243744,0.000700652017258108,0.70771986246109,-0.838638722896576,0.383636623620987,0.386662751436234,-0.816583812236786,0.447318911552429,0.364824116230011,-0.707987606525421,0.0710770562291145,0.702639043331146,-0.385677486658096,-0.382537335157394,0.839594006538391,-0.706492841243744,0.000700652017258108,0.70771986246109,-0.707987606525421,0.0710770562291145,0.702639043331146,-0.403438627719879,-0.316866934299469,0.858389616012573,0.0389526039361954,-0.662950396537781,0.747649312019348,-0.385677486658096,-0.382537335157394,0.839594006538391,-0.403438627719879,-0.316866934299469,0.858389616012573,0.0152981588616967,-0.61244922876358,0.790361821651459,0.453448086977005,-0.766068518161774,0.45554792881012,0.0389526039361954,-0.662950396537781,0.747649312019348,0.0152981588616967,-0.61244922876358,0.790361821651459,0.436292499303818,-0.736638247966766,0.516732931137085,0.746685028076172,-0.663902580738068,0.0411685258150101,0.453448086977005,-0.766068518161774,0.45554792881012,0.436292499303818,-0.736638247966766,0.516732931137085,0.746565103530884,-0.655994236469269,0.110959403216839,0.839682817459106,-0.383511364459991,-0.384515136480331,0.746685028076172,-0.663902580738068,0.0411685258150101,0.746565103530884,-0.655994236469269,0.110959403216839,0.862952530384064,-0.39233785867691,-0.318408370018005,0.706620395183563,-0.000575435580685735,-0.707592725753784,0.839682817459106,-0.383511364459991,-0.384515136480331,0.862952530384064,-0.39233785867691,-0.318408370018005,0.835705101490021,-0.0473191440105438,-0.547136247158051,0.384778439998627,0.383793830871582,-0.839433014392853,0.707583844661713,0.000575830927118659,-0.70662921667099,0.547183036804199,0.0473069660365582,-0.835675060749054,0.449825346469879,0.371814429759979,-0.812041461467743,-0.0407915525138378,0.664307594299316,-0.746345341205597,0.384778439998627,0.383793830871582,-0.839433014392853,0.449825346469879,0.371814429759979,-0.812041461467743,0.0310093741863966,0.667422354221344,-0.744033455848694,-0.454942375421524,0.766806364059448,-0.452808231115341,
- -0.0407915525138378,0.664307594299316,-0.746345341205597,0.0310093741863966,0.667422354221344,-0.744033455848694,-0.389899998903275,0.79165118932724,-0.470389783382416,-0.746868908405304,0.663878798484802,-0.0381013117730618,-0.454942375421524,0.766806364059448,-0.452808231115341,-0.389899998903275,0.79165118932724,-0.470389783382416,-0.700184524059296,0.711046576499939,-0.0644553899765015,-0.838638722896576,0.383636623620987,0.386662751436234,-0.746868908405304,0.663878798484802,-0.0381013117730618,-0.700184524059296,0.711046576499939,-0.0644553899765015,-0.816583812236786,0.447318911552429,0.364824116230011,0.844386637210846,-0.37669962644577,-0.380931079387665,0.752256333827972,-0.657390296459198,0.0441397316753864,0.747171223163605,-0.663419663906097,0.0401187874376774,0.839631617069244,-0.383030921220779,-0.385105162858963,0.752256333827972,-0.657390296459198,0.0441397316753864,0.459936320781708,-0.760320067405701,0.45866334438324,0.454495429992676,-0.766079783439636,0.454484075307846,0.747171223163605,-0.663419663906097,0.0401187874376774,0.459936320781708,-0.760320067405701,0.45866334438324,0.0456312373280525,-0.658075749874115,0.751567780971527,0.0400887727737427,-0.663461863994598,0.747135400772095,0.454495429992676,-0.766079783439636,0.454484075307846,0.0456312373280525,-0.658075749874115,0.751567780971527,-0.379665434360504,-0.377945691347122,0.844399809837341,-0.385143786668777,-0.38306999206543,0.839596152305603,0.0400887727737427,-0.663461863994598,0.747135400772095,-0.379665434360504,-0.377945691347122,0.844399809837341,-0.701873779296875,0.00501535180956125,0.712283611297607,-0.707098126411438,1.1594739589782e-005,0.707115530967712,-0.385143786668777,-0.38306999206543,0.839596152305603,-0.701873779296875,0.00501535180956125,0.712283611297607,-0.834740161895752,0.388108313083649,0.390615880489349,-0.839626729488373,0.383009850978851,0.385136842727661,-0.707098126411438,1.1594739589782e-005,0.707115530967712,-0.834740161895752,0.388108313083649,0.390615880489349,-0.742667257785797,0.668772876262665,-0.0344687141478062,
- -0.747154593467712,0.663444042205811,-0.0400259122252464,-0.839626729488373,0.383009850978851,0.385136842727661,-0.742667257785797,0.668772876262665,-0.0344687141478062,-0.450302064418793,0.771747291088104,-0.449036866426468,-0.454486101865768,0.766082406044006,-0.454488754272461,-0.747154593467712,0.663444042205811,-0.0400259122252464,-0.450302064418793,0.771747291088104,-0.449036866426468,-0.035995252430439,0.669415831565857,-0.742015480995178,-0.0400614887475967,0.663397014141083,-0.747194349765778,-0.454486101865768,0.766082406044006,-0.454488754272461,-0.035995252430439,0.669415831565857,-0.742015480995178,0.389261573553085,0.389266759157181,-0.834833383560181,0.385126382112503,0.383013367652893,-0.839629888534546,-0.0400614887475967,0.663397014141083,-0.747194349765778,0.389261573553085,0.389266759157181,-0.834833383560181,0.720030069351196,0.019104465842247,-0.693679869174957,0.704595327377319,-0.00287140253931284,-0.709603607654572,0.385126382112503,0.383013367652893,-0.839629888534546,0.693696260452271,-0.0190904196351767,-0.720014631748199,0.844386637210846,-0.37669962644577,-0.380931079387665,0.839631617069244,-0.383030921220779,-0.385105162858963,0.709627568721771,0.00289560365490615,-0.704571127891541,-0.707098126411438,1.1594739589782e-005,0.707115530967712,-0.839626729488373,0.383009850978851,0.385136842727661,-0.816999852657318,0.448351919651031,0.362617939710617,-0.709422588348389,0.0724330320954323,0.701051354408264,-0.385143786668777,-0.38306999206543,0.839596152305603,-0.707098126411438,1.1594739589782e-005,0.707115530967712,-0.709422588348389,0.0724330320954323,0.701051354408264,-0.405633211135864,-0.315718591213226,0.857778131961823,0.0400887727737427,-0.663461863994598,0.747135400772095,-0.385143786668777,-0.38306999206543,0.839596152305603,-0.405633211135864,-0.315718591213226,0.857778131961823,0.012866972014308,-0.611933052539825,0.790804922580719,0.454495429992676,-0.766079783439636,0.454484075307846,0.0400887727737427,-0.663461863994598,0.747135400772095,0.012866972014308,-0.611933052539825,0.790804922580719,
- 0.434147536754608,-0.737067043781281,0.517926812171936,0.747171223163605,-0.663419663906097,0.0401187874376774,0.454495429992676,-0.766079783439636,0.454484075307846,0.434147536754608,-0.737067043781281,0.517926812171936,0.745134592056274,-0.657343566417694,0.112579151988029,0.839631617069244,-0.383030921220779,-0.385105162858963,0.747171223163605,-0.663419663906097,0.0401187874376774,0.745134592056274,-0.657343566417694,0.112579151988029,0.862541735172272,-0.394348382949829,-0.317034810781479,0.709627568721771,0.00289560365490615,-0.704571127891541,0.839631617069244,-0.383030921220779,-0.385105162858963,0.862541735172272,-0.394348382949829,-0.317034810781479,0.836887955665588,-0.0541289150714874,-0.544691324234009,0.385126382112503,0.383013367652893,-0.839629888534546,0.704595327377319,-0.00287140253931284,-0.709603607654572,0.544721782207489,0.0541199557483196,-0.836868703365326,0.451230406761169,0.369625568389893,-0.81226110458374,-0.0400614887475967,0.663397014141083,-0.747194349765778,0.385126382112503,0.383013367652893,-0.839629888534546,0.451230406761169,0.369625568389893,-0.81226110458374,0.0325659736990929,0.665967643260956,-0.745269477367401,-0.454486101865768,0.766082406044006,-0.454488754272461,-0.0400614887475967,0.663397014141083,-0.747194349765778,0.0325659736990929,0.665967643260956,-0.745269477367401,-0.388607114553452,0.791057348251343,-0.472454041242599,-0.747154593467712,0.663444042205811,-0.0400259122252464,-0.454486101865768,0.766082406044006,-0.454488754272461,-0.388607114553452,0.791057348251343,-0.472454041242599,-0.699569582939148,0.71141916513443,-0.0669717490673065,-0.839626729488373,0.383009850978851,0.385136842727661,-0.747154593467712,0.663444042205811,-0.0400259122252464,-0.699569582939148,0.71141916513443,-0.0669717490673065,-0.816999852657318,0.448351919651031,0.362617939710617,0.844660341739655,-0.37185001373291,-0.38506680727005,0.713394463062286,-0.700736403465271,0.0060774520970881,0.692477285861969,-0.721436381340027,0.00217885919846594,0.839840173721313,-0.386673957109451,-0.380987733602524,
- 0.713394463062286,-0.700736403465271,0.0060774520970881,0.342246234416962,-0.863616287708282,0.370181620121002,0.354613214731216,-0.853604793548584,0.381586641073227,0.692477285861969,-0.721436381340027,0.00217885919846594,0.342246234416962,-0.863616287708282,0.370181620121002,-0.0550210140645504,-0.739265322685242,0.671162724494934,-0.0488734282553196,-0.733943283557892,0.677450239658356,0.354613214731216,-0.853604793548584,0.381586641073227,-0.0550210140645504,-0.739265322685242,0.671162724494934,-0.438473761081696,-0.424081444740295,0.792398750782013,-0.426709592342377,-0.413544267416,0.804300963878632,-0.0488734282553196,-0.733943283557892,0.677450239658356,-0.438473761081696,-0.424081444740295,0.792398750782013,-0.707111597061157,1.62838705364265e-006,0.707102000713348,-0.703393936157227,0.00344210700131953,0.710792005062103,-0.426709592342377,-0.413544267416,0.804300963878632,-0.707111597061157,1.62838705364265e-006,0.707102000713348,-0.850438416004181,0.377361446619034,0.366541594266891,-0.834398090839386,0.384495437145233,0.394896268844604,-0.703393936157227,0.00344210700131953,0.710792005062103,-0.850438416004181,0.377361446619034,0.366541594266891,-0.750699639320374,0.657866179943085,-0.0605158284306526,-0.74732369184494,0.663876414299011,-0.0278451349586248,-0.834398090839386,0.384495437145233,0.394896268844604,-0.750699639320374,0.657866179943085,-0.0605158284306526,-0.451789230108261,0.757082641124725,-0.471924155950546,-0.460119903087616,0.768761932849884,-0.444178760051727,-0.74732369184494,0.663876414299011,-0.0278451349586248,-0.451789230108261,0.757082641124725,-0.471924155950546,-0.0362074077129364,0.651418685913086,-0.757854104042053,-0.0472313351929188,0.668131053447723,-0.742542922496796,-0.460119903087616,0.768761932849884,-0.444178760051727,-0.0362074077129364,0.651418685913086,-0.757854104042053,0.385134100914001,0.371872663497925,-0.844619691371918,0.380903840065002,0.386552631855011,-0.839934110641479,-0.0472313351929188,0.668131053447723,-0.742542922496796,0.385134100914001,0.371872663497925,-0.844619691371918,
- 0.721294701099396,0.021473741158843,-0.692295372486115,0.70547741651535,-0.0019032652489841,-0.708729863166809,0.380903840065002,0.386552631855011,-0.839934110641479,0.692310869693756,-0.0214943308383226,-0.721279203891754,0.844660341739655,-0.37185001373291,-0.38506680727005,0.839840173721313,-0.386673957109451,-0.380987733602524,0.708748817443848,0.00189111044164747,-0.705458343029022,-0.703393936157227,0.00344210700131953,0.710792005062103,-0.834398090839386,0.384495437145233,0.394896268844604,-0.815565288066864,0.440609395503998,0.375122129917145,-0.701897025108337,0.0628980696201324,0.709495902061462,-0.426709592342377,-0.413544267416,0.804300963878632,-0.703393936157227,0.00344210700131953,0.710792005062103,-0.701897025108337,0.0628980696201324,0.709495902061462,-0.385276168584824,-0.38180536031723,0.840111255645752,-0.0488734282553196,-0.733943283557892,0.677450239658356,-0.426709592342377,-0.413544267416,0.804300963878632,-0.385276168584824,-0.38180536031723,0.840111255645752,0.0650443211197853,-0.745020508766174,0.663862586021423,0.354613214731216,-0.853604793548584,0.381586641073227,-0.0488734282553196,-0.733943283557892,0.677450239658356,0.0650443211197853,-0.745020508766174,0.663862586021423,0.466268807649612,-0.819701552391052,0.332690209150314,0.692477285861969,-0.721436381340027,0.00217885919846594,0.354613214731216,-0.853604793548584,0.381586641073227,0.466268807649612,-0.819701552391052,0.332690209150314,0.735139727592468,-0.676532387733459,-0.0432836748659611,0.839840173721313,-0.386673957109451,-0.380987733602524,0.692477285861969,-0.721436381340027,0.00217885919846594,0.735139727592468,-0.676532387733459,-0.0432836748659611,0.86386901140213,-0.383329659700394,-0.326785445213318,0.708748817443848,0.00189111044164747,-0.705458343029022,0.839840173721313,-0.386673957109451,-0.380987733602524,0.86386901140213,-0.383329659700394,-0.326785445213318,0.826068162918091,-0.0165987052023411,-0.563325762748718,0.380903840065002,0.386552631855011,-0.839934110641479,0.70547741651535,-0.0019032652489841,-0.708729863166809,
- 0.563341856002808,0.0166079718619585,-0.826056957244873,0.441975712776184,0.381175756454468,-0.812011361122131,-0.0472313351929188,0.668131053447723,-0.742542922496796,0.380903840065002,0.386552631855011,-0.839934110641479,0.441975712776184,0.381175756454468,-0.812011361122131,0.0217180643230677,0.673593759536743,-0.738782703876495,-0.460119903087616,0.768761932849884,-0.444178760051727,-0.0472313351929188,0.668131053447723,-0.742542922496796,0.0217180643230677,0.673593759536743,-0.738782703876495,-0.397843509912491,0.793186783790588,-0.461058676242828,-0.74732369184494,0.663876414299011,-0.0278451349586248,-0.460119903087616,0.768761932849884,-0.444178760051727,-0.397843509912491,0.793186783790588,-0.461058676242828,-0.70431923866272,0.707876861095428,-0.0533371530473232,-0.834398090839386,0.384495437145233,0.394896268844604,-0.74732369184494,0.663876414299011,-0.0278451349586248,-0.70431923866272,0.707876861095428,-0.0533371530473232,-0.815565288066864,0.440609395503998,0.375122129917145,0.833905398845673,-0.392040580511093,-0.388466089963913,0.740055561065674,-0.671442091464996,0.0385132282972336,0.75027072429657,-0.659971415996552,0.039134968072176,0.841764688491821,-0.379018127918243,-0.384418338537216,0.740055561065674,-0.671442091464996,0.0385132282972336,0.44635072350502,-0.771698176860809,0.453048378229141,0.458436548709869,-0.764566719532013,0.453071355819702,0.75027072429657,-0.659971415996552,0.039134968072176,0.44635072350502,-0.771698176860809,0.453048378229141,0.0324459001421928,-0.666944086551666,0.744400978088379,0.0436322800815105,-0.663773536682129,0.746659874916077,0.458436548709869,-0.764566719532013,0.453071355819702,0.0324459001421928,-0.666944086551666,0.744400978088379,-0.390995711088181,-0.386050492525101,0.835516154766083,-0.383355766534805,-0.383821964263916,0.840070784091949,0.0436322800815105,-0.663773536682129,0.746659874916077,-0.390995711088181,-0.386050492525101,0.835516154766083,-0.707101881504059,-7.33166325517232e-006,0.707111597061157,-0.706978678703308,0.000141668773721904,0.707234740257263,
- -0.383355766534805,-0.383821964263916,0.840070784091949,-0.707101881504059,-7.33166325517232e-006,0.707111597061157,-0.835535287857056,0.386027216911316,0.39097797870636,-0.839691579341888,0.384262830018997,0.383744955062866,-0.706978678703308,0.000141668773721904,0.707234740257263,-0.835535287857056,0.386027216911316,0.39097797870636,-0.744426250457764,0.666921734809875,-0.0323262922465801,-0.745873808860779,0.664718806743622,-0.042675606906414,-0.839691579341888,0.384262830018997,0.383744955062866,-0.744426250457764,0.666921734809875,-0.0323262922465801,-0.453064113855362,0.771685600280762,-0.446356803178787,-0.451800853013992,0.766134858131409,-0.457070350646973,-0.745873808860779,0.664718806743622,-0.042675606906414,-0.453064113855362,0.771685600280762,-0.446356803178787,-0.0384517423808575,0.671368300914764,-0.74012565612793,-0.0372712872922421,0.662254750728607,-0.748351097106934,-0.451800853013992,0.766134858131409,-0.457070350646973,-0.0384517423808575,0.671368300914764,-0.74012565612793,0.388510853052139,0.392060905694962,-0.833875119686127,0.386562168598175,0.381818294525146,-0.839514493942261,-0.0372712872922421,0.662254750728607,-0.748351097106934,0.388510853052139,0.392060905694962,-0.833875119686127,0.723024666309357,0.0250172726809978,-0.690369129180908,0.713965058326721,0.00906679034233093,-0.700122714042664,0.386562168598175,0.381818294525146,-0.839514493942261,0.69038462638855,-0.0250228308141232,-0.723009645938873,0.833905398845673,-0.392040580511093,-0.388466089963913,0.841764688491821,-0.379018127918243,-0.384418338537216,0.700170457363129,-0.00903179869055748,-0.713918626308441,-0.706978678703308,0.000141668773721904,0.707234740257263,-0.839691579341888,0.384262830018997,0.383744955062866,-0.815895736217499,0.444581866264343,0.369677126407623,-0.704970419406891,0.0676324144005775,0.706004679203033,-0.383355766534805,-0.383821964263916,0.840070784091949,-0.706978678703308,0.000141668773721904,0.707234740257263,-0.704970419406891,0.0676324144005775,0.706004679203033,-0.398718953132629,-0.31987190246582,0.859479606151581,
- 0.0436322800815105,-0.663773536682129,0.746659874916077,-0.383355766534805,-0.383821964263916,0.840070784091949,-0.398718953132629,-0.31987190246582,0.859479606151581,0.0206582322716713,-0.613935112953186,0.789086163043976,0.458436548709869,-0.764566719532013,0.453071355819702,0.0436322800815105,-0.663773536682129,0.746659874916077,0.0206582322716713,-0.613935112953186,0.789086163043976,0.441001862287521,-0.736058354377747,0.513551712036133,0.75027072429657,-0.659971415996552,0.039134968072176,0.458436548709869,-0.764566719532013,0.453071355819702,0.441001862287521,-0.736058354377747,0.513551712036133,0.749526143074036,-0.653260409832001,0.107057891786098,0.841764688491821,-0.379018127918243,-0.384418338537216,0.75027072429657,-0.659971415996552,0.039134968072176,0.749526143074036,-0.653260409832001,0.107057891786098,0.863610208034515,-0.387966334819794,-0.321962058544159,0.700170457363129,-0.00903179869055748,-0.713918626308441,0.841764688491821,-0.379018127918243,-0.384418338537216,0.863610208034515,-0.387966334819794,-0.321962058544159,0.832003235816956,-0.0325640290975571,-0.553814232349396,0.386562168598175,0.381818294525146,-0.839514493942261,0.713965058326721,0.00906679034233093,-0.700122714042664,0.553933918476105,0.0325439721345901,-0.831924319267273,0.446455240249634,0.37637734413147,-0.811799108982086,-0.0372712872922421,0.662254750728607,-0.748351097106934,0.386562168598175,0.381818294525146,-0.839514493942261,0.446455240249634,0.37637734413147,-0.811799108982086,0.026964332908392,0.670524060726166,-0.741397559642792,-0.451800853013992,0.766134858131409,-0.457070350646973,-0.0372712872922421,0.662254750728607,-0.748351097106934,0.026964332908392,0.670524060726166,-0.741397559642792,-0.393286854028702,0.792619526386261,-0.465918123722076,-0.745873808860779,0.664718806743622,-0.042675606906414,-0.451800853013992,0.766134858131409,-0.457070350646973,-0.393286854028702,0.792619526386261,-0.465918123722076,-0.701795876026154,0.709911108016968,-0.0592354387044907,-0.839691579341888,0.384262830018997,0.383744955062866,
- -0.745873808860779,0.664718806743622,-0.042675606906414,-0.701795876026154,0.709911108016968,-0.0592354387044907,-0.815895736217499,0.444581866264343,0.369677126407623,0.844919383525848,-0.37590816617012,-0.380531489849091,0.752858400344849,-0.656679391860962,0.0444575138390064,0.747150242328644,-0.663445234298706,0.0400883890688419,0.839636027812958,-0.383015602827072,-0.385110914707184,0.752858400344849,-0.656679391860962,0.0444575138390064,0.460635632276535,-0.759659469127655,0.459055960178375,0.454494655132294,-0.766073048114777,0.454495966434479,0.747150242328644,-0.663445234298706,0.0400883890688419,0.460635632276535,-0.759659469127655,0.459055960178375,0.0462931878864765,-0.657524168491364,0.752009868621826,0.0400799810886383,-0.663446009159088,0.74714982509613,0.454494655132294,-0.766073048114777,0.454495966434479,0.0462931878864765,-0.657524168491364,0.752009868621826,-0.37892484664917,-0.377430528402328,0.84496283531189,-0.385140001773834,-0.383053958415985,0.839605271816254,0.0400799810886383,-0.663446009159088,0.74714982509613,-0.37892484664917,-0.377430528402328,0.84496283531189,-0.701284170150757,0.00543626071885228,0.712861120700836,-0.707130372524261,-4.59898874396458e-005,0.707083225250244,-0.385140001773834,-0.383053958415985,0.839605271816254,-0.701284170150757,0.00543626071885228,0.712861120700836,-0.834191679954529,0.388623476028442,0.391274988651276,-0.839619100093842,0.383038252592087,0.385125309228897,-0.707130372524261,-4.59898874396458e-005,0.707083225250244,-0.834191679954529,0.388623476028442,0.391274988651276,-0.742178082466125,0.66935259103775,-0.0337482020258904,-0.747143268585205,0.663454473018646,-0.0400632619857788,-0.839619100093842,0.383038252592087,0.385125309228897,-0.742178082466125,0.66935259103775,-0.0337482020258904,-0.449916183948517,0.772364974021912,-0.448361158370972,-0.454492270946503,0.766074240207672,-0.454496443271637,-0.747143268585205,0.663454473018646,-0.0400632619857788,-0.449916183948517,0.772364974021912,-0.448361158370972,-0.0356614924967289,0.670099020004272,-0.741414606571198,
- -0.0400864146649837,0.663422524929047,-0.747170388698578,-0.454492270946503,0.766074240207672,-0.454496443271637,-0.0356614924967289,0.670099020004272,-0.741414606571198,0.389632910490036,0.39008229970932,-0.834279358386993,0.385132104158401,0.383046120405197,-0.839612424373627,-0.0400864146649837,0.663422524929047,-0.747170388698578,0.389632910490036,0.39008229970932,-0.834279358386993,0.721317648887634,0.0215341690927744,-0.692269563674927,0.702899098396301,-0.00470863282680511,-0.711274087429047,0.385132104158401,0.383046120405197,-0.839612424373627,0.69230443239212,-0.0215088613331318,-0.721284925937653,0.844919383525848,-0.37590816617012,-0.380531489849091,0.839636027812958,-0.383015602827072,-0.385110914707184,0.711332499980927,0.00473891571164131,-0.702839732170105,-0.707130372524261,-4.59898874396458e-005,0.707083225250244,-0.839619100093842,0.383038252592087,0.385125309228897,-0.81557959318161,0.44060742855072,0.375093430280685,-0.70192539691925,0.0629130676388741,0.709466516971588,-0.385140001773834,-0.383053958415985,0.839605271816254,-0.707130372524261,-4.59898874396458e-005,0.707083225250244,-0.70192539691925,0.0629130676388741,0.709466516971588,-0.39357978105545,-0.324033856391907,0.860288918018341,0.0400799810886383,-0.663446009159088,0.74714982509613,-0.385140001773834,-0.383053958415985,0.839605271816254,-0.39357978105545,-0.324033856391907,0.860288918018341,0.0265597403049469,-0.616288959980011,0.787072122097015,0.454494655132294,-0.766073048114777,0.454495966434479,0.0400799810886383,-0.663446009159088,0.74714982509613,0.0265597403049469,-0.616288959980011,0.787072122097015,0.446112245321274,-0.735931575298309,0.509301960468292,0.747150242328644,-0.663445234298706,0.0400883890688419,0.454494655132294,-0.766073048114777,0.454495966434479,0.446112245321274,-0.735931575298309,0.509301960468292,0.752586305141449,-0.650577008724213,0.101800918579102,0.839636027812958,-0.383015602827072,-0.385110914707184,0.747150242328644,-0.663445234298706,0.0400883890688419,0.752586305141449,-0.650577008724213,0.101800918579102,
- 0.863857090473175,-0.383352011442184,-0.32679083943367,0.711332499980927,0.00473891571164131,-0.702839732170105,0.839636027812958,-0.383015602827072,-0.385110914707184,0.863857090473175,-0.383352011442184,-0.32679083943367,0.826109647750854,-0.0165902823209763,-0.563265085220337,0.385132104158401,0.383046120405197,-0.839612424373627,0.702899098396301,-0.00470863282680511,-0.711274087429047,0.563332736492157,0.0166561082005501,-0.826062202453613,0.441942274570465,0.38119575381279,-0.812020301818848,-0.0400864146649837,0.663422524929047,-0.747170388698578,0.385132104158401,0.383046120405197,-0.839612424373627,0.441942274570465,0.38119575381279,-0.812020301818848,0.0217258799821138,0.67360907793045,-0.738768398761749,-0.454492270946503,0.766074240207672,-0.454496443271637,-0.0400864146649837,0.663422524929047,-0.747170388698578,0.0217258799821138,0.67360907793045,-0.738768398761749,-0.397819399833679,0.793196201324463,-0.461063474416733,-0.747143268585205,0.663454473018646,-0.0400632619857788,-0.454492270946503,0.766074240207672,-0.454496443271637,-0.397819399833679,0.793196201324463,-0.461063474416733,-0.704314470291138,0.707878887653351,-0.0533729158341885,-0.839619100093842,0.383038252592087,0.385125309228897,-0.747143268585205,0.663454473018646,-0.0400632619857788,-0.704314470291138,0.707878887653351,-0.0533729158341885,-0.81557959318161,0.44060742855072,0.375093430280685,0.843849301338196,-0.377480775117874,-0.381348460912704,0.751593828201294,-0.658174633979797,0.0437355749309063,0.747147798538208,-0.663446605205536,0.0401106327772141,0.839629769325256,-0.383027255535126,-0.385113000869751,0.751593828201294,-0.658174633979797,0.0437355749309063,0.459231048822403,-0.76100355386734,0.458236187696457,0.454480141401291,-0.76609867811203,0.454467296600342,0.747147798538208,-0.663446605205536,0.0401106327772141,0.459231048822403,-0.76100355386734,0.458236187696457,0.0448732487857342,-0.658706784248352,0.751060545444489,0.0401057191193104,-0.663449108600616,0.747145891189575,0.454480141401291,-0.76609867811203,0.454467296600342,
- 0.0448732487857342,-0.658706784248352,0.751060545444489,-0.380343705415726,-0.378446638584137,0.843870222568512,-0.3851238489151,-0.383031874895096,0.839622676372528,0.0401057191193104,-0.663449108600616,0.747145891189575,-0.380343705415726,-0.378446638584137,0.843870222568512,-0.702567279338837,0.00448110233992338,0.711603164672852,-0.707125008106232,-1.02785670605954e-005,0.707088530063629,-0.3851238489151,-0.383031874895096,0.839622676372528,-0.702567279338837,0.00448110233992338,0.711603164672852,-0.835327923297882,0.387587875127792,0.389875411987305,-0.839630246162415,0.383016586303711,0.385122656822205,-0.707125008106232,-1.02785670605954e-005,0.707088530063629,-0.835327923297882,0.387587875127792,0.389875411987305,-0.743187248706818,0.66815710067749,-0.0351969599723816,-0.747181117534637,0.663414418697357,-0.0400206595659256,-0.839630246162415,0.383016586303711,0.385122656822205,-0.743187248706818,0.66815710067749,-0.0351969599723816,-0.45073413848877,0.771077752113342,-0.449752956628799,-0.454481214284897,0.766090333461761,-0.45448049902916,-0.747181117534637,0.663414418697357,-0.0400206595659256,-0.45073413848877,0.771077752113342,-0.449752956628799,-0.0363883003592491,0.668653190135956,-0.742683470249176,-0.0400205589830875,0.663431227207184,-0.747166216373444,-0.454481214284897,0.766090333461761,-0.45448049902916,-0.0363883003592491,0.668653190135956,-0.742683470249176,0.388878017663956,0.388508588075638,-0.835365235805511,0.385143876075745,0.383021622896194,-0.839618146419525,-0.0400205589830875,0.663431227207184,-0.747166216373444,0.388878017663956,0.388508588075638,-0.835365235805511,0.718627691268921,0.0165981017053127,-0.695196866989136,0.708294868469238,0.00144730997271836,-0.705915212631226,0.385143876075745,0.383021622896194,-0.839618146419525,0.69516658782959,-0.0166223328560591,-0.718656539916992,0.843849301338196,-0.377480775117874,-0.381348460912704,0.839629769325256,-0.383027255535126,-0.385113000869751,0.705908954143524,-0.00143324153032154,-0.708301186561584,-0.707125008106232,-1.02785670605954e-005,0.707088530063629,
- -0.839630246162415,0.383016586303711,0.385122656822205,-0.81559157371521,0.44061154127121,0.375062614679337,-0.701902151107788,0.0629269108176231,0.709488272666931,-0.3851238489151,-0.383031874895096,0.839622676372528,-0.707125008106232,-1.02785670605954e-005,0.707088530063629,-0.701902151107788,0.0629269108176231,0.709488272666931,-0.393581986427307,-0.324034571647644,0.860287725925446,0.0401057191193104,-0.663449108600616,0.747145891189575,-0.3851238489151,-0.383031874895096,0.839622676372528,-0.393581986427307,-0.324034571647644,0.860287725925446,0.0265479329973459,-0.616276264190674,0.787082374095917,0.454480141401291,-0.76609867811203,0.454467296600342,0.0401057191193104,-0.663449108600616,0.747145891189575,0.0265479329973459,-0.616276264190674,0.787082374095917,0.446100860834122,-0.735958635807037,0.509272813796997,0.747147798538208,-0.663446605205536,0.0401106327772141,0.454480141401291,-0.76609867811203,0.454467296600342,0.446100860834122,-0.735958635807037,0.509272813796997,0.752566754817963,-0.650601387023926,0.101790644228458,0.839629769325256,-0.383027255535126,-0.385113000869751,0.747147798538208,-0.663446605205536,0.0401106327772141,0.752566754817963,-0.650601387023926,0.101790644228458,0.863878071308136,-0.383353173732758,-0.326734006404877,0.705908954143524,-0.00143324153032154,-0.708301186561584,0.839629769325256,-0.383027255535126,-0.385113000869751,0.863878071308136,-0.383353173732758,-0.326734006404877,0.826084971427917,-0.0166503675282002,-0.563299715518951,0.385143876075745,0.383021622896194,-0.839618146419525,0.708294868469238,0.00144730997271836,-0.705915212631226,0.563375473022461,0.0166317746043205,-0.826033592224121,0.441925644874573,0.381204098463058,-0.812025249004364,-0.0400205589830875,0.663431227207184,-0.747166216373444,0.385143876075745,0.383021622896194,-0.839618146419525,0.441925644874573,0.381204098463058,-0.812025249004364,0.0217138770967722,0.673649609088898,-0.738731861114502,-0.454481214284897,0.766090333461761,-0.45448049902916,-0.0400205589830875,0.663431227207184,-0.747166216373444,
- 0.0217138770967722,0.673649609088898,-0.738731861114502,-0.397833913564682,0.793204307556152,-0.461036920547485,-0.747181117534637,0.663414418697357,-0.0400206595659256,-0.454481214284897,0.766090333461761,-0.45448049902916,-0.397833913564682,0.793204307556152,-0.461036920547485,-0.704313218593597,0.707879662513733,-0.0533778816461563,-0.839630246162415,0.383016586303711,0.385122656822205,-0.747181117534637,0.663414418697357,-0.0400206595659256,-0.704313218593597,0.707879662513733,-0.0533778816461563,-0.81559157371521,0.44061154127121,0.375062614679337,-0.707112669944763,-6.93515903549269e-006,0.707100987434387,-0.707112610340118,-6.90806746206363e-006,0.707100987434387,-0.707114398479462,-3.92127503801021e-006,0.707099258899689,-0.707128822803497,2.04258958547143e-005,0.707084774971008,-0.707109093666077,-1.28533320093993e-005,0.707104563713074,-0.707122504711151,9.78521347860806e-006,0.70709103345871,-0.707100749015808,-2.68956282525323e-005,0.707112789154053,-0.707135438919067,3.16316654789262e-005,0.707078099250793,-0.707014262676239,-0.000172670799656771,0.707199215888977,-0.706781625747681,-0.000564485497307032,0.707431554794312,-0.707069337368011,-7.98951150500216e-005,0.707144320011139,-0.707120180130005,5.8633249864215e-006,0.707093417644501,0.859867334365845,-0.321074694395065,-0.396911948919296,0.788531720638275,-0.614578008651733,0.0226201582700014,0.747149407863617,-0.663446724414825,0.040078442543745,0.839676260948181,-0.382954061031342,-0.385084480047226,0.788531720638275,-0.614578008651733,0.0226201582700014,0.512205362319946,-0.735934436321259,0.442771047353745,0.454484343528748,-0.76607209444046,0.45450821518898,0.747149407863617,-0.663446724414825,0.040078442543745,0.512205362319946,-0.735934436321259,0.442771047353745,0.105204232037067,-0.652267873287201,0.750652074813843,0.0400583855807781,-0.663484871387482,0.747116506099701,0.454484343528748,-0.76607209444046,0.45450821518898,0.105204232037067,-0.652267873287201,0.750652074813843,-0.323613226413727,-0.386346250772476,0.86371922492981,-0.385130763053894,-0.383022785186768,0.8396235704422,
- 0.0400583855807781,-0.663484871387482,0.747116506099701,-0.323613226413727,-0.386346250772476,0.86371922492981,-0.659167051315308,-0.00922009162604809,0.751939952373505,-0.707116842269897,-5.23652852280065e-006,0.707096755504608,-0.385130763053894,-0.383022785186768,0.8396235704422,-0.659167051315308,-0.00922009162604809,0.751939952373505,-0.811779141426086,0.378209561109543,0.444940686225891,-0.839622437953949,0.383014351129532,0.385141551494598,-0.707116842269897,-5.23652852280065e-006,0.707096755504608,-0.811779141426086,0.378209561109543,0.444940686225891,-0.740418016910553,0.671675980091095,0.0251480918377638,-0.747155010700226,0.663442194461823,-0.0400504656136036,-0.839622437953949,0.383014351129532,0.385141551494598,-0.740418016910553,0.671675980091095,0.0251480918377638,-0.46421080827713,0.792935132980347,-0.394667327404022,-0.454487860202789,0.766079366207123,-0.454492092132568,-0.747155010700226,0.663442194461823,-0.0400504656136036,-0.46421080827713,0.792935132980347,-0.394667327404022,-0.0572272762656212,0.709257006645203,-0.702623248100281,-0.0400557294487953,0.663438498973846,-0.747157871723175,-0.454487860202789,0.766079366207123,-0.454492092132568,-0.0572272762656212,0.709257006645203,-0.702623248100281,0.371456176042557,0.443375945091248,-0.815743982791901,0.385106056928635,0.383006006479263,-0.839642584323883,-0.0400557294487953,0.663438498973846,-0.747157871723175,0.371456176042557,0.443375945091248,-0.815743982791901,0.698556303977966,0.194848090410233,-0.688515365123749,0.724446773529053,0.0281739383935928,-0.688754737377167,0.385106056928635,0.383006006479263,-0.839642584323883,0.688568770885468,-0.195134088397026,-0.698423743247986,0.859867334365845,-0.321074694395065,-0.396911948919296,0.839676260948181,-0.382954061031342,-0.385084480047226,0.688726425170898,-0.0281911324709654,-0.724472999572754,0.707164525985718,-3.65917694580276e-005,-0.707049071788788,0.707097411155701,7.65750810387544e-005,-0.707116186618805,0.707102298736572,6.83054167893715e-005,-0.707111239433289,0.707138299942017,7.50605431676377e-006,-0.707075238227844,
- 0.707152366638184,-1.61394418682903e-005,-0.707061171531677,0.70713210105896,1.79855851456523e-005,-0.707081437110901,0.707114040851593,4.8499019612791e-005,-0.707099556922913,0.707125008106232,3.00101455650292e-005,-0.707088589668274,0.707128405570984,2.43066060647834e-005,-0.707085132598877,0.707126498222351,2.74324884230737e-005,-0.70708703994751,0.707080125808716,0.000105667240859475,-0.70713347196579,0.707123875617981,3.19018727168441e-005,-0.707089722156525,-0.707079350948334,1.29889604068012e-005,0.707134246826172,-0.839627146720886,0.383022904396057,0.385122984647751,-0.815560877323151,0.440654009580612,0.375079244375229,-0.701884746551514,0.0628773421049118,0.70950984954834,-0.385142922401428,-0.383071839809418,0.839595675468445,-0.707079350948334,1.29889604068012e-005,0.707134246826172,-0.701884746551514,0.0628773421049118,0.70950984954834,-0.393609344959259,-0.323994725942612,0.860290110111237,0.0401087179780006,-0.663433969020844,0.747159063816071,-0.385142922401428,-0.383071839809418,0.839595675468445,-0.393609344959259,-0.323994725942612,0.860290110111237,0.0266066547483206,-0.616352319717407,0.787020862102509,0.454463481903076,-0.766105592250824,0.454472482204437,0.0401087179780006,-0.663433969020844,0.747159063816071,0.0266066547483206,-0.616352319717407,0.787020862102509,0.446085929870605,-0.735939383506775,0.509313941001892,0.747178196907043,-0.663412690162659,0.0401056110858917,0.454463481903076,-0.766105592250824,0.454472482204437,0.446085929870605,-0.735939383506775,0.509313941001892,0.752576529979706,-0.650594532489777,0.101761110126972,0.839618861675262,-0.383049666881561,-0.385114550590515,0.747178196907043,-0.663412690162659,0.0401056110858917,0.752576529979706,-0.650594532489777,0.101761110126972,0.863894522190094,-0.383314251899719,-0.326736301183701,0.70623791217804,-0.00104624638333917,-0.707973837852478,0.839618861675262,-0.383049666881561,-0.385114550590515,0.863894522190094,-0.383314251899719,-0.326736301183701,0.826058268547058,-0.0166557878255844,-0.56333863735199,0.385110586881638,0.383045345544815,-0.839622616767883,
- 0.707961678504944,0.00102487404365093,-0.706250190734863,0.563362896442413,0.0165936946868896,-0.826042890548706,0.441922158002853,0.38120311498642,-0.812027752399445,-0.0400644764304161,0.663434505462646,-0.747160971164703,0.385110586881638,0.383045345544815,-0.839622616767883,0.441922158002853,0.38120311498642,-0.812027752399445,0.0217025559395552,0.673659861087799,-0.738722801208496,-0.454479992389679,0.766083717346191,-0.454492837190628,-0.0400644764304161,0.663434505462646,-0.747160971164703,0.0217025559395552,0.673659861087799,-0.738722801208496,-0.39783975481987,0.793191194534302,-0.461054533720016,-0.747157037258148,0.663439154624939,-0.0400612205266953,-0.454479992389679,0.766083717346191,-0.454492837190628,-0.39783975481987,0.793191194534302,-0.461054533720016,-0.704290568828583,0.707897543907166,-0.05344133451581,-0.839627146720886,0.383022904396057,0.385122984647751,-0.747157037258148,0.663439154624939,-0.0400612205266953,-0.704290568828583,0.707897543907166,-0.05344133451581,-0.815560877323151,0.440654009580612,0.375079244375229,-0.707116842269897,-5.23652852280065e-006,0.707096755504608,-0.839622437953949,0.383014351129532,0.385141551494598,-0.839627146720886,0.383022904396057,0.385122984647751,-0.707079350948334,1.29889604068012e-005,0.707134246826172,-0.385130763053894,-0.383022785186768,0.8396235704422,-0.707116842269897,-5.23652852280065e-006,0.707096755504608,-0.707079350948334,1.29889604068012e-005,0.707134246826172,-0.385142922401428,-0.383071839809418,0.839595675468445,0.0400583855807781,-0.663484871387482,0.747116506099701,-0.385130763053894,-0.383022785186768,0.8396235704422,-0.385142922401428,-0.383071839809418,0.839595675468445,0.0401087179780006,-0.663433969020844,0.747159063816071,0.454484343528748,-0.76607209444046,0.45450821518898,0.0400583855807781,-0.663484871387482,0.747116506099701,0.0401087179780006,-0.663433969020844,0.747159063816071,0.454463481903076,-0.766105592250824,0.454472482204437,0.747149407863617,-0.663446724414825,0.040078442543745,0.454484343528748,-0.76607209444046,0.45450821518898,
- 0.454463481903076,-0.766105592250824,0.454472482204437,0.747178196907043,-0.663412690162659,0.0401056110858917,0.839676260948181,-0.382954061031342,-0.385084480047226,0.747149407863617,-0.663446724414825,0.040078442543745,0.747178196907043,-0.663412690162659,0.0401056110858917,0.839618861675262,-0.383049666881561,-0.385114550590515,0.688726425170898,-0.0281911324709654,-0.724472999572754,0.839676260948181,-0.382954061031342,-0.385084480047226,0.839618861675262,-0.383049666881561,-0.385114550590515,0.70623791217804,-0.00104624638333917,-0.707973837852478,0.385106056928635,0.383006006479263,-0.839642584323883,0.724446773529053,0.0281739383935928,-0.688754737377167,0.707961678504944,0.00102487404365093,-0.706250190734863,0.385110586881638,0.383045345544815,-0.839622616767883,-0.0400557294487953,0.663438498973846,-0.747157871723175,0.385106056928635,0.383006006479263,-0.839642584323883,0.385110586881638,0.383045345544815,-0.839622616767883,-0.0400644764304161,0.663434505462646,-0.747160971164703,-0.454487860202789,0.766079366207123,-0.454492092132568,-0.0400557294487953,0.663438498973846,-0.747157871723175,-0.0400644764304161,0.663434505462646,-0.747160971164703,-0.454479992389679,0.766083717346191,-0.454492837190628,-0.747155010700226,0.663442194461823,-0.0400504656136036,-0.454487860202789,0.766079366207123,-0.454492092132568,-0.454479992389679,0.766083717346191,-0.454492837190628,-0.747157037258148,0.663439154624939,-0.0400612205266953,-0.839622437953949,0.383014351129532,0.385141551494598,-0.747155010700226,0.663442194461823,-0.0400504656136036,-0.747157037258148,0.663439154624939,-0.0400612205266953,-0.839627146720886,0.383022904396057,0.385122984647751,0.84339439868927,-0.378138273954391,-0.38170325756073,0.686743438243866,-0.726863563060761,-0.00727479532361031,0.675087213516235,-0.737231135368347,-0.0273430682718754,0.839639902114868,-0.383016258478165,-0.385101646184921,0.686743438243866,-0.726863563060761,-0.00727479532361031,0.27469664812088,-0.911916196346283,0.304878234863281,0.336576044559479,-0.88000762462616,0.335116475820541,
- 0.675087213516235,-0.737231135368347,-0.0273430682718754,0.27469664812088,-0.911916196346283,0.304878234863281,-0.104418180882931,-0.789219260215759,0.605169236660004,-0.0581185854971409,-0.769477188587189,0.636024475097656,0.336576044559479,-0.88000762462616,0.335116475820541,-0.104418180882931,-0.789219260215759,0.605169236660004,-0.471366673707962,-0.467850714921951,0.747615694999695,-0.428355813026428,-0.435230404138565,0.79188746213913,-0.0581185854971409,-0.769477188587189,0.636024475097656,-0.471366673707962,-0.467850714921951,0.747615694999695,-0.703114986419678,0.00401738239452243,0.711064755916595,-0.707144320011139,-4.1018873162102e-005,0.707069158554077,-0.428355813026428,-0.435230404138565,0.79188746213913,-0.703114986419678,0.00401738239452243,0.711064755916595,-0.835798740386963,0.387142807245255,0.389308393001556,-0.83960235118866,0.383042693138123,0.385157197713852,-0.707144320011139,-4.1018873162102e-005,0.707069158554077,-0.835798740386963,0.387142807245255,0.389308393001556,-0.743560969829559,0.667712509632111,-0.0357366651296616,-0.747138023376465,0.663464605808258,-0.0399921759963036,-0.83960235118866,0.383042693138123,0.385157197713852,-0.743560969829559,0.667712509632111,-0.0357366651296616,-0.451107233762741,0.770522594451904,-0.450330018997192,-0.454527765512466,0.766040861606598,-0.454517036676407,-0.747138023376465,0.663464605808258,-0.0399921759963036,-0.451107233762741,0.770522594451904,-0.450330018997192,-0.0367227308452129,0.668045580387115,-0.743213653564453,-0.0400132387876511,0.663433372974396,-0.747164607048035,-0.454527765512466,0.766040861606598,-0.454517036676407,-0.0367227308452129,0.668045580387115,-0.743213653564453,0.388480573892593,0.387863844633102,-0.835849523544312,0.385111004114151,0.382996559143066,-0.83964467048645,-0.0400132387876511,0.663433372974396,-0.747164607048035,0.388480573892593,0.387863844633102,-0.835849523544312,0.717515170574188,0.014687898568809,-0.696388065814972,0.706369161605835,-0.00084881333168596,-0.70784318447113,0.385111004114151,0.382996559143066,-0.83964467048645,
- 0.696369588375092,-0.0146799720823765,-0.717533230781555,0.84339439868927,-0.378138273954391,-0.38170325756073,0.839639902114868,-0.383016258478165,-0.385101646184921,0.707890391349792,0.000937820179387927,-0.706321716308594,-0.707144320011139,-4.1018873162102e-005,0.707069158554077,-0.83960235118866,0.383042693138123,0.385157197713852,-0.816179931163788,0.446101814508438,0.367210417985916,-0.706522047519684,0.0694874450564384,0.70427131652832,-0.428355813026428,-0.435230404138565,0.79188746213913,-0.707144320011139,-4.1018873162102e-005,0.707069158554077,-0.706522047519684,0.0694874450564384,0.70427131652832,-0.384582281112671,-0.384963661432266,0.838986992835999,-0.0581185854971409,-0.769477188587189,0.636024475097656,-0.428355813026428,-0.435230404138565,0.79188746213913,-0.384582281112671,-0.384963661432266,0.838986992835999,0.0842043831944466,-0.755369246006012,0.649866819381714,0.336576044559479,-0.88000762462616,0.335116475820541,-0.0581185854971409,-0.769477188587189,0.636024475097656,0.0842043831944466,-0.755369246006012,0.649866819381714,0.482270389795303,-0.819622218608856,0.30924865603447,0.675087213516235,-0.737231135368347,-0.0273430682718754,0.336576044559479,-0.88000762462616,0.335116475820541,0.482270389795303,-0.819622218608856,0.30924865603447,0.739542126655579,-0.670445084571838,-0.0598406754434109,0.839639902114868,-0.383016258478165,-0.385101646184921,0.675087213516235,-0.737231135368347,-0.0273430682718754,0.739542126655579,-0.670445084571838,-0.0598406754434109,0.863286674022675,-0.390181630849838,-0.320147693157196,0.707890391349792,0.000937820179387927,-0.706321716308594,0.839639902114868,-0.383016258478165,-0.385101646184921,0.863286674022675,-0.390181630849838,-0.320147693157196,0.834085702896118,-0.0400815308094025,-0.550176799297333,0.385111004114151,0.382996559143066,-0.83964467048645,0.706369161605835,-0.00084881333168596,-0.70784318447113,0.550320208072662,0.0401390194892883,-0.833988308906555,0.448242157697678,0.374053150415421,-0.811888694763184,-0.0400132387876511,0.663433372974396,-0.747164607048035,
- 0.385111004114151,0.382996559143066,-0.83964467048645,0.448242157697678,0.374053150415421,-0.811888694763184,0.0291019380092621,0.66899037361145,-0.742701172828674,-0.454527765512466,0.766040861606598,-0.454517036676407,-0.0400132387876511,0.663433372974396,-0.747164607048035,0.0291019380092621,0.66899037361145,-0.742701172828674,-0.391445994377136,0.792178213596344,-0.468213260173798,-0.747138023376465,0.663464605808258,-0.0399921759963036,-0.454527765512466,0.766040861606598,-0.454517036676407,-0.391445994377136,0.792178213596344,-0.468213260173798,-0.700921058654785,0.710543990135193,-0.0619415454566479,-0.83960235118866,0.383042693138123,0.385157197713852,-0.747138023376465,0.663464605808258,-0.0399921759963036,-0.700921058654785,0.710543990135193,-0.0619415454566479,-0.816179931163788,0.446101814508438,0.367210417985916,0.829160928726196,-0.400095373392105,-0.390404641628265,0.733940184116364,-0.678204476833344,0.037021167576313,0.751432776451111,-0.658650279045105,0.0390969626605511,0.842661678791046,-0.377457141876221,-0.38398864865303,0.733940184116364,-0.678204476833344,0.037021167576313,0.43934640288353,-0.77684623003006,0.451092660427094,0.459864884614944,-0.763678908348084,0.453121095895767,0.751432776451111,-0.658650279045105,0.0390969626605511,0.43934640288353,-0.77684623003006,0.451092660427094,0.0253627449274063,-0.670798540115356,0.74120569229126,0.0449425615370274,-0.663236021995544,0.74705958366394,0.459864884614944,-0.763678908348084,0.453121095895767,0.0253627449274063,-0.670798540115356,0.74120569229126,-0.397391527891159,-0.389499336481094,0.830885291099548,-0.382406651973724,-0.383422642946243,0.840685546398163,0.0449425615370274,-0.663236021995544,0.74705958366394,-0.397391527891159,-0.389499336481094,0.830885291099548,-0.707119345664978,-1.28341225718032e-005,0.707094252109528,-0.706758201122284,0.000382412137696519,0.707455098628998,-0.382406651973724,-0.383422642946243,0.840685546398163,-0.707119345664978,-1.28341225718032e-005,0.707094252109528,-0.830864429473877,0.389477640390396,0.397456377744675,
- -0.839658677577972,0.38460049033165,0.383478403091431,-0.706758201122284,0.000382412137696519,0.707455098628998,-0.830864429473877,0.389477640390396,0.397456377744675,-0.741170108318329,0.67084151506424,-0.0252695307135582,-0.745547890663147,0.665044665336609,-0.0432896390557289,-0.839658677577972,0.38460049033165,0.383478403091431,-0.741170108318329,0.67084151506424,-0.0252695307135582,-0.451062798500061,0.776892244815826,-0.439295649528503,-0.451098948717117,0.766233921051025,-0.457597434520721,-0.745547890663147,0.665044665336609,-0.0432896390557289,-0.451062798500061,0.776892244815826,-0.439295649528503,-0.0370714068412781,0.678080499172211,-0.734052121639252,-0.0366328991949558,0.66197669506073,-0.748628616333008,-0.451098948717117,0.766233921051025,-0.457597434520721,-0.0370714068412781,0.678080499172211,-0.734052121639252,0.390410155057907,0.400011390447617,-0.829198896884918,0.386965692043304,0.381596118211746,-0.839429557323456,-0.0366328991949558,0.66197669506073,-0.748628616333008,0.390410155057907,0.400011390447617,-0.829198896884918,0.732032775878906,0.0503692254424095,-0.679404854774475,0.716632843017578,0.0131985209882259,-0.697325706481934,0.386965692043304,0.381596118211746,-0.839429557323456,0.67944347858429,-0.0503229647874832,-0.732000112533569,0.829160928726196,-0.400095373392105,-0.390404641628265,0.842661678791046,-0.377457141876221,-0.38398864865303,0.697409987449646,-0.0131163951009512,-0.716552436351776,-0.706758201122284,0.000382412137696519,0.707455098628998,-0.839658677577972,0.38460049033165,0.383478403091431,-0.818306028842926,0.450444281101227,0.357036650180817,-0.713075518608093,0.0750953406095505,0.697053790092468,-0.382406651973724,-0.383422642946243,0.840685546398163,-0.706758201122284,0.000382412137696519,0.707455098628998,-0.713075518608093,0.0750953406095505,0.697053790092468,-0.41090002655983,-0.313553333282471,0.856063902378082,0.0449425615370274,-0.663236021995544,0.74705958366394,-0.382406651973724,-0.383422642946243,0.840685546398163,-0.41090002655983,-0.313553333282471,0.856063902378082,
- 0.0070405718870461,-0.611186325550079,0.791455328464508,0.459864884614944,-0.763678908348084,0.453121095895767,0.0449425615370274,-0.663236021995544,0.74705958366394,0.0070405718870461,-0.611186325550079,0.791455328464508,0.42882314324379,-0.738377571105957,0.520489573478699,0.751432776451111,-0.658650279045105,0.0390969626605511,0.459864884614944,-0.763678908348084,0.453121095895767,0.42882314324379,-0.738377571105957,0.520489573478699,0.741478860378265,-0.660897791385651,0.115858964622021,0.842661678791046,-0.377457141876221,-0.38398864865303,0.751432776451111,-0.658650279045105,0.0390969626605511,0.741478860378265,-0.660897791385651,0.115858964622021,0.861254036426544,-0.399444431066513,-0.31414270401001,0.697409987449646,-0.0131163951009512,-0.716552436351776,0.842661678791046,-0.377457141876221,-0.38398864865303,0.861254036426544,-0.399444431066513,-0.31414270401001,0.838747203350067,-0.0708615034818649,-0.53989052772522,0.386965692043304,0.381596118211746,-0.839429557323456,0.716632843017578,0.0131985209882259,-0.697325706481934,0.540046751499176,0.0708921849727631,-0.838644027709961,0.453932583332062,0.36441034078598,-0.813111424446106,-0.0366328991949558,0.66197669506073,-0.748628616333008,0.386965692043304,0.381596118211746,-0.839429557323456,0.453932583332062,0.36441034078598,-0.813111424446106,0.035939447581768,0.662128686904907,-0.748527884483337,-0.451098948717117,0.766233921051025,-0.457597434520721,-0.0366328991949558,0.66197669506073,-0.748628616333008,0.035939447581768,0.662128686904907,-0.748527884483337,-0.385849952697754,0.789346814155579,-0.477547436952591,-0.745547890663147,0.665044665336609,-0.0432896390557289,-0.451098948717117,0.766233921051025,-0.457597434520721,-0.385849952697754,0.789346814155579,-0.477547436952591,-0.698590040206909,0.711812198162079,-0.0727686211466789,-0.839658677577972,0.38460049033165,0.383478403091431,-0.745547890663147,0.665044665336609,-0.0432896390557289,-0.698590040206909,0.711812198162079,-0.0727686211466789,-0.818306028842926,0.450444281101227,0.357036650180817,
- 0.833168387413025,-0.385878890752792,-0.396141231060028,0.740778267383575,-0.670846045017242,0.0348313488066196,0.751287460327148,-0.659205198287964,0.0318690687417984,0.839141607284546,-0.375955581665039,-0.393063426017761,0.740778267383575,-0.670846045017242,0.0348313488066196,0.444744169712067,-0.771772086620331,0.454500406980515,0.457905948162079,-0.766555368900299,0.450238943099976,0.751287460327148,-0.659205198287964,0.0318690687417984,0.444744169712067,-0.771772086620331,0.454500406980515,0.0310945231467485,-0.666029334068298,0.745277106761932,0.0429005511105061,-0.666647255420685,0.744137763977051,0.457905948162079,-0.766555368900299,0.450238943099976,0.0310945231467485,-0.666029334068298,0.745277106761932,-0.391317993402481,-0.384989857673645,0.835854709148407,-0.384756654500961,-0.387004226446152,0.837967753410339,0.0429005511105061,-0.666647255420685,0.744137763977051,-0.391317993402481,-0.384989857673645,0.835854709148407,-0.707094311714172,3.4605022847245e-006,0.707119226455688,-0.707917749881744,-0.00104790378827602,0.706294000148773,-0.384756654500961,-0.387004226446152,0.837967753410339,-0.707094311714172,3.4605022847245e-006,0.707119226455688,-0.83588832616806,0.384928345680237,0.39130637049675,-0.839797019958496,0.384723573923111,0.38305190205574,-0.707917749881744,-0.00104790378827602,0.706294000148773,-0.83588832616806,0.384928345680237,0.39130637049675,-0.745282709598541,0.666025698184967,-0.0310424193739891,-0.745396554470062,0.665165305137634,-0.044035580009222,-0.839797019958496,0.384723573923111,0.38305190205574,-0.745282709598541,0.666025698184967,-0.0310424193739891,-0.454525947570801,0.771734416484833,-0.444783180952072,-0.450689941644669,0.76602703332901,-0.4583460688591,-0.745396554470062,0.665165305137634,-0.044035580009222,-0.454525947570801,0.771734416484833,-0.444783180952072,-0.0347777791321278,0.670790493488312,-0.740831077098846,-0.0315536819398403,0.659486353397369,-0.751054048538208,-0.450689941644669,0.76602703332901,-0.4583460688591,-0.0347777791321278,0.670790493488312,-0.740831077098846,
- 0.396213591098785,0.385942876338959,-0.833104372024536,0.393111914396286,0.375943601131439,-0.839124262332916,-0.0315536819398403,0.659486353397369,-0.751054048538208,0.396213591098785,0.385942876338959,-0.833104372024536,0.723561227321625,0.0261611193418503,-0.689764261245728,0.710104584693909,0.00372427306137979,-0.704086363315582,0.393111914396286,0.375943601131439,-0.839124262332916,0.689766466617584,-0.0261666513979435,-0.723558962345123,0.833168387413025,-0.385878890752792,-0.396141231060028,0.839141607284546,-0.375955581665039,-0.393063426017761,0.704085111618042,-0.00372583139687777,-0.710105836391449,-0.707917749881744,-0.00104790378827602,0.706294000148773,-0.839797019958496,0.384723573923111,0.38305190205574,-0.815687716007233,0.437614738941193,0.378347396850586,-0.700120091438293,0.0593804270029068,0.71155172586441,-0.384756654500961,-0.387004226446152,0.837967753410339,-0.707917749881744,-0.00104790378827602,0.706294000148773,-0.700120091438293,0.0593804270029068,0.71155172586441,-0.390510439872742,-0.3270603120327,0.860542356967926,0.0429005511105061,-0.666647255420685,0.744137763977051,-0.384756654500961,-0.387004226446152,0.837967753410339,-0.390510439872742,-0.3270603120327,0.860542356967926,0.0301431678235531,-0.618320524692535,0.785347819328308,0.457905948162079,-0.766555368900299,0.450238943099976,0.0429005511105061,-0.666647255420685,0.744137763977051,0.0301431678235531,-0.618320524692535,0.785347819328308,0.449205696582794,-0.736200511455536,0.506184756755829,0.751287460327148,-0.659205198287964,0.0318690687417984,0.457905948162079,-0.766555368900299,0.450238943099976,0.449205696582794,-0.736200511455536,0.506184756755829,0.749309241771698,-0.66133451461792,0.034239187836647,0.839141607284546,-0.375955581665039,-0.393063426017761,0.751287460327148,-0.659205198287964,0.0318690687417984,0.749309241771698,-0.66133451461792,0.034239187836647,0.816612005233765,-0.375443428754807,-0.438391357660294,0.704085111618042,-0.00372583139687777,-0.710105836391449,0.839141607284546,-0.375955581665039,-0.393063426017761,
- 0.816612005233765,-0.375443428754807,-0.438391357660294,0.815965056419373,0.00121678726281971,-0.578099966049194,0.393111914396286,0.375943601131439,-0.839124262332916,0.710104584693909,0.00372427306137979,-0.704086363315582,0.57816606760025,-0.0012439681449905,-0.815918147563934,0.438435733318329,0.375392287969589,-0.816611766815186,-0.0315536819398403,0.659486353397369,-0.751054048538208,0.393111914396286,0.375943601131439,-0.839124262332916,0.438435733318329,0.375392287969589,-0.816611766815186,0.0248361453413963,0.673592984676361,-0.738685071468353,-0.450689941644669,0.76602703332901,-0.4583460688591,-0.0315536819398403,0.659486353397369,-0.751054048538208,0.0248361453413963,0.673592984676361,-0.738685071468353,-0.401145577430725,0.793212294578552,-0.458144515752792,-0.745396554470062,0.665165305137634,-0.044035580009222,-0.450689941644669,0.76602703332901,-0.4583460688591,-0.401145577430725,0.793212294578552,-0.458144515752792,-0.706207633018494,0.706249713897705,-0.0498199872672558,-0.839797019958496,0.384723573923111,0.38305190205574,-0.745396554470062,0.665165305137634,-0.044035580009222,-0.706207633018494,0.706249713897705,-0.0498199872672558,-0.815687716007233,0.437614738941193,0.378347396850586,0.842531144618988,-0.376298248767853,-0.385410100221634,0.75395792722702,-0.655857622623444,0.0373922288417816,0.744582056999207,-0.665950179100037,0.0459136068820953,0.839730679988861,-0.38566118478775,-0.382253766059875,0.75395792722702,-0.655857622623444,0.0373922288417816,0.465872764587402,-0.760222136974335,0.452796667814255,0.449005901813507,-0.765947580337524,0.460128277540207,0.744582056999207,-0.665950179100037,0.0459136068820953,0.465872764587402,-0.760222136974335,0.452796667814255,0.0532784461975098,-0.659591972827911,0.749733209609985,0.0345686264336109,-0.660584330558777,0.749955654144287,0.449005901813507,-0.765947580337524,0.460128277540207,0.0532784461975098,-0.659591972827911,0.749733209609985,-0.373434513807297,-0.378653883934021,0.846857726573944,-0.387948095798492,-0.380242198705673,0.839590489864349,
- 0.0345686264336109,-0.660584330558777,0.749955654144287,-0.373434513807297,-0.378653883934021,0.846857726573944,-0.707090079784393,-9.4478849632651e-007,0.707123458385468,-0.704822242259979,0.00232721003703773,0.709380209445953,-0.387948095798492,-0.380242198705673,0.839590489864349,-0.707090079784393,-9.4478849632651e-007,0.707123458385468,-0.846869468688965,0.378616958856583,0.373445123434067,-0.836351811885834,0.383756041526794,0.391467541456223,-0.704822242259979,0.00232721003703773,0.709380209445953,-0.846869468688965,0.378616958856583,0.373445123434067,-0.7497398853302,0.659588992595673,-0.0532203428447247,-0.747612297534943,0.66336864233017,-0.0319050811231136,-0.836351811885834,0.383756041526794,0.391467541456223,-0.7497398853302,0.659588992595673,-0.0532203428447247,-0.452780663967133,0.760254144668579,-0.465836197137833,-0.458850979804993,0.76753306388855,-0.447603404521942,-0.747612297534943,0.66336864233017,-0.0319050811231136,-0.452780663967133,0.760254144668579,-0.465836197137833,-0.037366658449173,0.655797600746155,-0.754011452198029,-0.0456488020718098,0.666173338890076,-0.744398593902588,-0.458850979804993,0.76753306388855,-0.447603404521942,-0.037366658449173,0.655797600746155,-0.754011452198029,0.385442554950714,0.376254856586456,-0.842535614967346,0.381607234477997,0.38486647605896,-0.84038907289505,-0.0456488020718098,0.666173338890076,-0.744398593902588,0.385442554950714,0.376254856586456,-0.842535614967346,0.715539991855621,0.0114722959697247,-0.698477625846863,0.704222083091736,-0.00325676426291466,-0.709972262382507,0.381607234477997,0.38486647605896,-0.84038907289505,0.698467910289764,-0.0114699862897396,-0.715549468994141,0.842531144618988,-0.376298248767853,-0.385410100221634,0.839730679988861,-0.38566118478775,-0.382253766059875,0.709956347942352,0.00328002101741731,-0.70423811674118,-0.704822242259979,0.00232721003703773,0.709380209445953,-0.836351811885834,0.383756041526794,0.391467541456223,-0.815588474273682,0.440567076206207,0.37512132525444,-0.701852917671204,0.0628887340426445,0.709540367126465,
- -0.387948095798492,-0.380242198705673,0.839590489864349,-0.704822242259979,0.00232721003703773,0.709380209445953,-0.701852917671204,0.0628887340426445,0.709540367126465,-0.393600314855576,-0.324016779661179,0.860285997390747,0.0345686264336109,-0.660584330558777,0.749955654144287,-0.387948095798492,-0.380242198705673,0.839590489864349,-0.393600314855576,-0.324016779661179,0.860285997390747,0.0265278350561857,-0.616335272789001,0.787036895751953,0.449005901813507,-0.765947580337524,0.460128277540207,0.0345686264336109,-0.660584330558777,0.749955654144287,0.0265278350561857,-0.616335272789001,0.787036895751953,0.446121484041214,-0.735936105251312,0.509287416934967,0.744582056999207,-0.665950179100037,0.0459136068820953,0.449005901813507,-0.765947580337524,0.460128277540207,0.446121484041214,-0.735936105251312,0.509287416934967,0.752602279186249,-0.650559425354004,0.101794593036175,0.839730679988861,-0.38566118478775,-0.382253766059875,0.744582056999207,-0.665950179100037,0.0459136068820953,0.752602279186249,-0.650559425354004,0.101794593036175,0.863883793354034,-0.383330196142197,-0.326745629310608,0.709956347942352,0.00328002101741731,-0.70423811674118,0.839730679988861,-0.38566118478775,-0.382253766059875,0.863883793354034,-0.383330196142197,-0.326745629310608,0.826008915901184,-0.0166327077895403,-0.563411593437195,0.381607234477997,0.38486647605896,-0.84038907289505,0.704222083091736,-0.00325676426291466,-0.709972262382507,0.563477635383606,0.0165627058595419,-0.825965285301209,0.441992700099945,0.381176352500916,-0.812001883983612,-0.0456488020718098,0.666173338890076,-0.744398593902588,0.381607234477997,0.38486647605896,-0.84038907289505,0.441992700099945,0.381176352500916,-0.812001883983612,0.0217070337384939,0.673592448234558,-0.73878425359726,-0.458850979804993,0.76753306388855,-0.447603404521942,-0.0456488020718098,0.666173338890076,-0.744398593902588,0.0217070337384939,0.673592448234558,-0.73878425359726,-0.397808820009232,0.793202042579651,-0.461062610149384,-0.747612297534943,0.66336864233017,-0.0319050811231136,
- -0.458850979804993,0.76753306388855,-0.447603404521942,-0.397808820009232,0.793202042579651,-0.461062610149384,-0.704306244850159,0.707888662815094,-0.0533515959978104,-0.836351811885834,0.383756041526794,0.391467541456223,-0.747612297534943,0.66336864233017,-0.0319050811231136,-0.704306244850159,0.707888662815094,-0.0533515959978104,-0.815588474273682,0.440567076206207,0.37512132525444,0.848164856433868,-0.370573908090591,-0.378538191318512,0.756953060626984,-0.651830732822418,0.0462481305003166,0.747161626815796,-0.663433969020844,0.0400600135326386,0.839670896530151,-0.382982611656189,-0.385067790746689,0.756953060626984,-0.651830732822418,0.0462481305003166,0.465331524610519,-0.755573987960815,0.461058020591736,0.454519271850586,-0.766046226024628,0.454516738653183,0.747161626815796,-0.663433969020844,0.0400600135326386,0.465331524610519,-0.755573987960815,0.461058020591736,0.0512955635786057,-0.654160618782043,0.754614293575287,0.0400261245667934,-0.663492798805237,0.747111260890961,0.454519271850586,-0.766046226024628,0.454516738653183,0.0512955635786057,-0.654160618782043,0.754614293575287,-0.374157398939133,-0.374664425849915,0.848311722278595,-0.385141015052795,-0.383039206266403,0.83961147069931,0.0400261245667934,-0.663492798805237,0.747111260890961,-0.374157398939133,-0.374664425849915,0.848311722278595,-0.696906566619873,0.00804674904793501,0.71711677312851,-0.707118809223175,3.52276657622497e-007,0.707094669342041,-0.385141015052795,-0.383039206266403,0.83961147069931,-0.696906566619873,0.00804674904793501,0.71711677312851,-0.83067375421524,0.391326248645782,0.396036416292191,-0.839618265628815,0.38302880525589,0.385136604309082,-0.707118809223175,3.52276657622497e-007,0.707094669342041,-0.83067375421524,0.391326248645782,0.396036416292191,-0.739454209804535,0.672596156597137,-0.0286675319075584,-0.747107565402985,0.663501381874084,-0.0399527624249458,-0.839618265628815,0.38302880525589,0.385136604309082,-0.739454209804535,0.672596156597137,-0.0286675319075584,-0.44781681895256,0.776359558105469,-0.443537920713425,
- -0.454529941082001,0.766040205955505,-0.45451620221138,-0.747107565402985,0.663501381874084,-0.0399527624249458,-0.44781681895256,0.776359558105469,-0.443537920713425,-0.0338832214474678,0.674700915813446,-0.737313032150269,-0.0400828048586845,0.663370966911316,-0.747216403484344,-0.454529941082001,0.766040205955505,-0.45451620221138,-0.0338832214474678,0.674700915813446,-0.737313032150269,0.391575366258621,0.39537039399147,-0.830873608589172,0.385137021541595,0.383025377988815,-0.839619517326355,-0.0400828048586845,0.663370966911316,-0.747216403484344,0.391575366258621,0.39537039399147,-0.830873608589172,0.728336274623871,0.0379740782082081,-0.68416690826416,0.709587275981903,0.0030681430362165,-0.70461094379425,0.385137021541595,0.383025377988815,-0.839619517326355,0.684136569499969,-0.0380571894347668,-0.72836035490036,0.848164856433868,-0.370573908090591,-0.378538191318512,0.839670896530151,-0.382982611656189,-0.385067790746689,0.704580307006836,-0.00308727473020554,-0.709617555141449,-0.707118809223175,3.52276657622497e-007,0.707094669342041,-0.839618265628815,0.38302880525589,0.385136604309082,-0.816573619842529,0.447363585233688,0.364792168140411,-0.707985043525696,0.0710798501968384,0.702641367912292,-0.385141015052795,-0.383039206266403,0.83961147069931,-0.707118809223175,3.52276657622497e-007,0.707094669342041,-0.707985043525696,0.0710798501968384,0.702641367912292,-0.403438150882721,-0.316870510578156,0.858388483524323,0.0400261245667934,-0.663492798805237,0.747111260890961,-0.385141015052795,-0.383039206266403,0.83961147069931,-0.403438150882721,-0.316870510578156,0.858388483524323,0.0153188006952405,-0.612474024295807,0.790342152118683,0.454519271850586,-0.766046226024628,0.454516738653183,0.0400261245667934,-0.663492798805237,0.747111260890961,0.0153188006952405,-0.612474024295807,0.790342152118683,0.436273068189621,-0.736629664897919,0.516761422157288,0.747161626815796,-0.663433969020844,0.0400600135326386,0.454519271850586,-0.766046226024628,0.454516738653183,0.436273068189621,-0.736629664897919,0.516761422157288,
- 0.746572732925415,-0.655985653400421,0.110959254205227,0.839670896530151,-0.382982611656189,-0.385067790746689,0.747161626815796,-0.663433969020844,0.0400600135326386,0.746572732925415,-0.655985653400421,0.110959254205227,0.862959027290344,-0.392312586307526,-0.31842166185379,0.704580307006836,-0.00308727473020554,-0.709617555141449,0.839670896530151,-0.382982611656189,-0.385067790746689,0.862959027290344,-0.392312586307526,-0.31842166185379,0.835693955421448,-0.0473202913999558,-0.547152996063232,0.385137021541595,0.383025377988815,-0.839619517326355,0.709587275981903,0.0030681430362165,-0.70461094379425,0.547218024730682,0.0472754016518593,-0.835653901100159,0.449810564517975,0.371844440698624,-0.812035799026489,-0.0400828048586845,0.663370966911316,-0.747216403484344,0.385137021541595,0.383025377988815,-0.839619517326355,0.449810564517975,0.371844440698624,-0.812035799026489,0.0309713408350945,0.667411148548126,-0.744044959545136,-0.454529941082001,0.766040205955505,-0.45451620221138,-0.0400828048586845,0.663370966911316,-0.747216403484344,0.0309713408350945,0.667411148548126,-0.744044959545136,-0.389910966157913,0.791632950305939,-0.470411151647568,-0.747107565402985,0.663501381874084,-0.0399527624249458,-0.454529941082001,0.766040205955505,-0.45451620221138,-0.389910966157913,0.791632950305939,-0.470411151647568,-0.700166821479797,0.711063086986542,-0.0644639953970909,-0.839618265628815,0.38302880525589,0.385136604309082,-0.747107565402985,0.663501381874084,-0.0399527624249458,-0.700166821479797,0.711063086986542,-0.0644639953970909,-0.816573619842529,0.447363585233688,0.364792168140411,0.842304468154907,-0.416331619024277,-0.342331916093826,0.685303390026093,-0.727985680103302,-0.0199030507355928,0.652320444583893,-0.757189691066742,-0.033791184425354,0.840654015541077,-0.422981649637222,-0.338211834430695,0.685303390026093,-0.727985680103302,-0.0199030507355928,0.271151751279831,-0.917698204517365,0.29035621881485,0.333018779754639,-0.874996244907379,0.35139736533165,0.652320444583893,-0.757189691066742,-0.033791184425354,
- 0.271151751279831,-0.917698204517365,0.29035621881485,-0.108919478952885,-0.793846905231476,0.598283886909485,-0.0681745707988739,-0.762872219085693,0.642944872379303,0.333018779754639,-0.874996244907379,0.35139736533165,-0.108919478952885,-0.793846905231476,0.598283886909485,-0.474829524755478,-0.468000769615173,0.74532687664032,-0.420979052782059,-0.414858311414719,0.806640625,-0.0681745707988739,-0.762872219085693,0.642944872379303,-0.474829524755478,-0.468000769615173,0.74532687664032,-0.707110822200775,5.89817091167788e-006,0.707102715969086,-0.707108438014984,4.53936809208244e-006,0.707105278968811,-0.420979052782059,-0.414858311414719,0.806640625,-0.707110822200775,5.89817091167788e-006,0.707102715969086,-0.84524130821228,0.380059808492661,0.375661820173264,-0.838373184204102,0.380355387926102,0.390461444854736,-0.707108438014984,4.53936809208244e-006,0.707105278968811,-0.84524130821228,0.380059808492661,0.375661820173264,-0.74844616651535,0.661222279071808,-0.0511206835508347,-0.750403702259064,0.660259425640106,-0.0308499373495579,-0.838373184204102,0.380355387926102,0.390461444854736,-0.74844616651535,0.661222279071808,-0.0511206835508347,-0.451530307531357,0.762152254581451,-0.463944256305695,-0.462760537862778,0.766333937644959,-0.445628762245178,-0.750403702259064,0.660259425640106,-0.0308499373495579,-0.451530307531357,0.762152254581451,-0.463944256305695,-0.0360070988535881,0.657903492450714,-0.752241015434265,-0.0493262857198715,0.667401909828186,-0.743062317371368,-0.462760537862778,0.766333937644959,-0.445628762245178,-0.0360070988535881,0.657903492450714,-0.752241015434265,0.34266784787178,0.416758596897125,-0.841956734657288,0.338413625955582,0.423198699951172,-0.840463638305664,-0.0493262857198715,0.667401909828186,-0.743062317371368,0.34266784787178,0.416758596897125,-0.841956734657288,0.71766060590744,0.0141216088086367,-0.696249783039093,0.707352697849274,0.000279289961326867,-0.706860721111298,0.338413625955582,0.423198699951172,-0.840463638305664,0.699765384197235,-0.0096020232886076,-0.714308202266693,
- 0.842304468154907,-0.416331619024277,-0.342331916093826,0.840654015541077,-0.422981649637222,-0.338211834430695,0.706920683383942,-0.000234095990890637,-0.707292795181274,-0.707108438014984,4.53936809208244e-006,0.707105278968811,-0.838373184204102,0.380355387926102,0.390461444854736,-0.822892129421234,0.446524679660797,0.351374685764313,-0.707102239131927,-3.44842410413548e-005,0.707111358642578,-0.420979052782059,-0.414858311414719,0.806640625,-0.707108438014984,4.53936809208244e-006,0.707105278968811,-0.707102239131927,-3.44842410413548e-005,0.707111358642578,-0.302631914615631,-0.563434064388275,0.76873654127121,-0.0681745707988739,-0.762872219085693,0.642944872379303,-0.420979052782059,-0.414858311414719,0.806640625,-0.302631914615631,-0.563434064388275,0.76873654127121,0.143647879362106,-0.817667305469513,0.557481229305267,0.333018779754639,-0.874996244907379,0.35139736533165,-0.0681745707988739,-0.762872219085693,0.642944872379303,0.143647879362106,-0.817667305469513,0.557481229305267,0.497943997383118,-0.841607332229614,0.20916223526001,0.652320444583893,-0.757189691066742,-0.033791184425354,0.333018779754639,-0.874996244907379,0.35139736533165,0.497943997383118,-0.841607332229614,0.20916223526001,0.740109264850616,-0.666204988956451,-0.0917016267776489,0.840654015541077,-0.422981649637222,-0.338211834430695,0.652320444583893,-0.757189691066742,-0.033791184425354,0.740109264850616,-0.666204988956451,-0.0917016267776489,0.831424057483673,-0.406824767589569,-0.378454327583313,0.706920683383942,-0.000234095990890637,-0.707292795181274,0.840654015541077,-0.422981649637222,-0.338211834430695,0.831424057483673,-0.406824767589569,-0.378454327583313,0.860452651977539,-0.00444278260692954,-0.509511053562164,0.338413625955582,0.423198699951172,-0.840463638305664,0.707352697849274,0.000279289961326867,-0.706860721111298,0.509586155414581,0.00442654639482498,-0.860408186912537,0.37846827507019,0.406814426183701,-0.831422805786133,-0.0493262857198715,0.667401909828186,-0.743062317371368,0.338413625955582,0.423198699951172,-0.840463638305664,
- 0.37846827507019,0.406814426183701,-0.831422805786133,0.0225779432803392,0.648606538772583,-0.760788917541504,-0.462760537862778,0.766333937644959,-0.445628762245178,-0.0493262857198715,0.667401909828186,-0.743062317371368,0.0225779432803392,0.648606538772583,-0.760788917541504,-0.394800841808319,0.775663256645203,-0.492421299219131,-0.750403702259064,0.660259425640106,-0.0308499373495579,-0.462760537862778,0.766333937644959,-0.445628762245178,-0.394800841808319,0.775663256645203,-0.492421299219131,-0.705802261829376,0.703292191028595,-0.0849900990724564,-0.838373184204102,0.380355387926102,0.390461444854736,-0.750403702259064,0.660259425640106,-0.0308499373495579,-0.705802261829376,0.703292191028595,-0.0849900990724564,-0.822892129421234,0.446524679660797,0.351374685764313,0.832745313644409,-0.392832338809967,-0.390151262283325,0.739230573177338,-0.672503232955933,0.0357428342103958,0.745773792266846,-0.664796113967896,0.0432154089212418,0.8397616147995,-0.384535044431686,-0.383318722248077,0.739230573177338,-0.672503232955933,0.0357428342103958,0.445809692144394,-0.773848831653595,0.449901849031448,0.45186772942543,-0.76611453294754,0.45703849196434,0.745773792266846,-0.664796113967896,0.0432154089212418,0.445809692144394,-0.773848831653595,0.449901849031448,0.0314485430717468,-0.670013904571533,0.741682231426239,0.0376614592969418,-0.662468016147614,0.748142957687378,0.45186772942543,-0.76611453294754,0.45703849196434,0.0314485430717468,-0.670013904571533,0.741682231426239,-0.393052339553833,-0.389123350381851,0.833122372627258,-0.386261463165283,-0.382111400365829,0.839519500732422,0.0376614592969418,-0.662468016147614,0.748142957687378,-0.393052339553833,-0.389123350381851,0.833122372627258,-0.707103252410889,3.1936438062985e-006,0.707110285758972,-0.707109093666077,8.36751610222564e-007,0.707104444503784,-0.386261463165283,-0.382111400365829,0.839519500732422,-0.707103252410889,3.1936438062985e-006,0.707110285758972,-0.833148598670959,0.389068633317947,0.393050998449326,-0.839528441429138,0.382057130336761,0.386295527219772,
- -0.707109093666077,8.36751610222564e-007,0.707104444503784,-0.833148598670959,0.389068633317947,0.393050998449326,-0.741693913936615,0.670006215572357,-0.031334113329649,-0.748157143592834,0.662455439567566,-0.0375987887382507,-0.839528441429138,0.382057130336761,0.386295527219772,-0.741693913936615,0.670006215572357,-0.031334113329649,-0.449915915727615,0.773837625980377,-0.445815026760101,-0.45704984664917,0.766094624996185,-0.451889753341675,-0.748157143592834,0.662455439567566,-0.0375987887382507,-0.449915915727615,0.773837625980377,-0.445815026760101,-0.0356535091996193,0.672440469264984,-0.739291906356812,-0.0431236550211906,0.664784610271454,-0.745789468288422,-0.45704984664917,0.766094624996185,-0.451889753341675,-0.0356535091996193,0.672440469264984,-0.739291906356812,0.390181481838226,0.3928382396698,-0.832728385925293,0.383357882499695,0.384505122900009,-0.83975738286972,-0.0431236550211906,0.664784610271454,-0.745789468288422,0.390181481838226,0.3928382396698,-0.832728385925293,0.724981427192688,0.029363077133894,-0.688142240047455,0.712014436721802,0.00628986116498709,-0.702136695384979,0.383357882499695,0.384505122900009,-0.83975738286972,0.688149333000183,-0.0293679945170879,-0.724974513053894,0.832745313644409,-0.392832338809967,-0.390151262283325,0.8397616147995,-0.384535044431686,-0.383318722248077,0.702135264873505,-0.00628987606614828,-0.712015807628632,-0.707109093666077,8.36751610222564e-007,0.707104444503784,-0.839528441429138,0.382057130336761,0.386295527219772,-0.82332056760788,0.449285954236984,0.346821933984756,-0.707097232341766,-2.66839251708006e-005,0.70711624622345,-0.386261463165283,-0.382111400365829,0.839519500732422,-0.707109093666077,8.36751610222564e-007,0.707104444503784,-0.707097232341766,-2.66839251708006e-005,0.70711624622345,-0.346788108348846,-0.449306845664978,0.823323369026184,0.0376614592969418,-0.662468016147614,0.748142957687378,-0.386261463165283,-0.382111400365829,0.839519500732422,-0.346788108348846,-0.449306845664978,0.823323369026184,0.0867823585867882,-0.706203162670136,0.702670574188232,
- 0.45186772942543,-0.76611453294754,0.45703849196434,0.0376614592969418,-0.662468016147614,0.748142957687378,0.0867823585867882,-0.706203162670136,0.702670574188232,0.490722507238388,-0.779287576675415,0.389746576547623,0.745773792266846,-0.664796113967896,0.0432154089212418,0.45186772942543,-0.76611453294754,0.45703849196434,0.490722507238388,-0.779287576675415,0.389746576547623,0.75717556476593,-0.652522325515747,-0.0299965012818575,0.8397616147995,-0.384535044431686,-0.383318722248077,0.745773792266846,-0.664796113967896,0.0432154089212418,0.75717556476593,-0.652522325515747,-0.0299965012818575,0.817814886569977,-0.365242540836334,-0.444720953702927,0.702135264873505,-0.00628987606614828,-0.712015807628632,0.8397616147995,-0.384535044431686,-0.383318722248077,0.817814886569977,-0.365242540836334,-0.444720953702927,0.82540500164032,-0.015317932702601,-0.564333200454712,0.383357882499695,0.384505122900009,-0.83975738286972,0.712014436721802,0.00628986116498709,-0.702136695384979,0.564383924007416,0.0152763500809669,-0.825371086597443,0.444737643003464,0.365208566188812,-0.817820906639099,-0.0431236550211906,0.664784610271454,-0.745789468288422,0.383357882499695,0.384505122900009,-0.83975738286972,0.444737643003464,0.365208566188812,-0.817820906639099,0.0299997236579657,0.652521014213562,-0.757176578044891,-0.45704984664917,0.766094624996185,-0.451889753341675,-0.0431236550211906,0.664784610271454,-0.745789468288422,0.0299997236579657,0.652521014213562,-0.757176578044891,-0.389741510152817,0.77929812669754,-0.490709722042084,-0.748157143592834,0.662455439567566,-0.0375987887382507,-0.45704984664917,0.766094624996185,-0.451889753341675,-0.389741510152817,0.77929812669754,-0.490709722042084,-0.702657639980316,0.706210434436798,-0.0868282616138458,-0.839528441429138,0.382057130336761,0.386295527219772,-0.748157143592834,0.662455439567566,-0.0375987887382507,-0.702657639980316,0.706210434436798,-0.0868282616138458,-0.82332056760788,0.449285954236984,0.346821933984756,0.844655275344849,-0.376285552978516,-0.380744755268097,
- 0.752633690834045,-0.65694385766983,0.0443533733487129,0.747181951999664,-0.663407564163208,0.0401186980307102,0.839636623859406,-0.383007258176804,-0.385117888450623,0.752633690834045,-0.65694385766983,0.0443533733487129,0.460336208343506,-0.759941160678864,0.45889014005661,0.454489886760712,-0.766084492206573,0.454481571912766,0.747181951999664,-0.663407564163208,0.0401186980307102,0.460336208343506,-0.759941160678864,0.45889014005661,0.0460247658193111,-0.657754421234131,0.751824975013733,0.0400733314454556,-0.663462817668915,0.747135281562805,0.454489886760712,-0.766084492206573,0.454481571912766,0.0460247658193111,-0.657754421234131,0.751824975013733,-0.379223436117172,-0.3775934278965,0.844756007194519,-0.385153532028198,-0.383021920919418,0.839613497257233,0.0400733314454556,-0.663462817668915,0.747135281562805,-0.379223436117172,-0.3775934278965,0.844756007194519,-0.701497077941895,0.00529417628422379,0.712652623653412,-0.707122683525085,-7.55644805394695e-006,0.707090854644775,-0.385153532028198,-0.383021920919418,0.839613497257233,-0.701497077941895,0.00529417628422379,0.712652623653412,-0.834442675113678,0.388376533985138,0.390984535217285,-0.839619040489197,0.383007436990738,0.385156005620956,-0.707122683525085,-7.55644805394695e-006,0.707090854644775,-0.834442675113678,0.388376533985138,0.390984535217285,-0.742386519908905,0.66910308599472,-0.0341066233813763,-0.747160255908966,0.66343480348587,-0.0400736443698406,-0.839619040489197,0.383007436990738,0.385156005620956,-0.742386519908905,0.66910308599472,-0.0341066233813763,-0.450081139802933,0.772098481655121,-0.448654562234879,-0.454479783773422,0.766093313694,-0.454476773738861,-0.747160255908966,0.66343480348587,-0.0400736443698406,-0.450081139802933,0.772098481655121,-0.448654562234879,-0.0358072407543659,0.669864356517792,-0.741619527339935,-0.0400859303772449,0.663420677185059,-0.747172117233276,-0.454479783773422,0.766093313694,-0.454476773738861,-0.0358072407543659,0.669864356517792,-0.741619527339935,0.389506727457047,0.389759063720703,-0.834489285945892,
- 0.385155916213989,0.383015900850296,-0.839615166187286,-0.0400859303772449,0.663420677185059,-0.747172117233276,0.389506727457047,0.389759063720703,-0.834489285945892,0.720808923244476,0.0205589961260557,-0.692828893661499,0.711275041103363,0.0052905841730535,-0.702893912792206,0.385155916213989,0.383015900850296,-0.839615166187286,0.692779004573822,-0.0206360723823309,-0.720854640007019,0.844655275344849,-0.376285552978516,-0.380744755268097,0.839636623859406,-0.383007258176804,-0.385117888450623,0.70286762714386,-0.00530300801619887,-0.71130096912384,-0.707122683525085,-7.55644805394695e-006,0.707090854644775,-0.839619040489197,0.383007436990738,0.385156005620956,-0.815589487552643,0.440622895956039,0.375053763389587,-0.701888382434845,0.0628931969404221,0.709504842758179,-0.385153532028198,-0.383021920919418,0.839613497257233,-0.707122683525085,-7.55644805394695e-006,0.707090854644775,-0.701888382434845,0.0628931969404221,0.709504842758179,-0.393590807914734,-0.324016779661179,0.860290229320526,0.0400733314454556,-0.663462817668915,0.747135281562805,-0.385153532028198,-0.383021920919418,0.839613497257233,-0.393590807914734,-0.324016779661179,0.860290229320526,0.0265537332743406,-0.616338551044464,0.787033498287201,0.454489886760712,-0.766084492206573,0.454481571912766,0.0400733314454556,-0.663462817668915,0.747135281562805,0.0265537332743406,-0.616338551044464,0.787033498287201,0.446117609739304,-0.735937654972076,0.509288489818573,0.747181951999664,-0.663407564163208,0.0401186980307102,0.454489886760712,-0.766084492206573,0.454481571912766,0.446117609739304,-0.735937654972076,0.509288489818573,0.752606093883514,-0.650554716587067,0.10179752856493,0.839636623859406,-0.383007258176804,-0.385117888450623,0.747181951999664,-0.663407564163208,0.0401186980307102,0.752606093883514,-0.650554716587067,0.10179752856493,0.863875329494476,-0.383320868015289,-0.326778948307037,0.70286762714386,-0.00530300801619887,-0.71130096912384,0.839636623859406,-0.383007258176804,-0.385117888450623,0.863875329494476,-0.383320868015289,-0.326778948307037,
- 0.826058387756348,-0.0166177041828632,-0.563339471817017,0.385155916213989,0.383015900850296,-0.839615166187286,0.711275041103363,0.0052905841730535,-0.702893912792206,0.563446879386902,0.0165682844817638,-0.82598614692688,0.44190514087677,0.381236374378204,-0.812021255493164,-0.0400859303772449,0.663420677185059,-0.747172117233276,0.385155916213989,0.383015900850296,-0.839615166187286,0.44190514087677,0.381236374378204,-0.812021255493164,0.0216882638633251,0.673612594604492,-0.738766372203827,-0.454479783773422,0.766093313694,-0.454476773738861,-0.0400859303772449,0.663420677185059,-0.747172117233276,0.0216882638633251,0.673612594604492,-0.738766372203827,-0.397779554128647,0.793200373649597,-0.461090564727783,-0.747160255908966,0.66343480348587,-0.0400736443698406,-0.454479783773422,0.766093313694,-0.454476773738861,-0.397779554128647,0.793200373649597,-0.461090564727783,-0.70429915189743,0.707893192768097,-0.0533847250044346,-0.839619040489197,0.383007436990738,0.385156005620956,-0.747160255908966,0.66343480348587,-0.0400736443698406,-0.70429915189743,0.707893192768097,-0.0533847250044346,-0.815589487552643,0.440622895956039,0.375053763389587,0.844511926174164,-0.375942945480347,-0.381400674581528,0.753138184547424,-0.656444668769836,0.0431656539440155,0.74668276309967,-0.663904845714569,0.0411734059453011,0.839674770832062,-0.383508682250977,-0.38453534245491,0.753138184547424,-0.656444668769836,0.0431656539440155,0.461702883243561,-0.759697616100311,0.457919389009476,0.453461438417435,-0.766053438186646,0.455559909343719,0.74668276309967,-0.663904845714569,0.0411734059453011,0.461702883243561,-0.759697616100311,0.457919389009476,0.0477260388433933,-0.657814979553223,0.751665830612183,0.0389567725360394,-0.662968277931213,0.747633337974548,0.453461438417435,-0.766053438186646,0.455559909343719,0.0477260388433933,-0.657814979553223,0.751665830612183,-0.377844095230103,-0.377608209848404,0.84536737203598,-0.385677248239517,-0.382548063993454,0.839589178562164,0.0389567725360394,-0.662968277931213,0.747633337974548,
- -0.377844095230103,-0.377608209848404,0.84536737203598,-0.707115888595581,2.43764338847541e-006,0.707097709178925,-0.706494808197021,0.000711117580067366,0.707717955112457,-0.385677248239517,-0.382548063993454,0.839589178562164,-0.707115888595581,2.43764338847541e-006,0.707097709178925,-0.84541529417038,0.377568036317825,0.377776980400085,-0.838640213012695,0.38365039229393,0.386645644903183,-0.706494808197021,0.000711117580067366,0.707717955112457,-0.84541529417038,0.377568036317825,0.377776980400085,-0.751620411872864,0.65787410736084,-0.0476272441446781,-0.746848523616791,0.6639004945755,-0.0381257459521294,-0.838640213012695,0.38365039229393,0.386645644903183,-0.751620411872864,0.65787410736084,-0.0476272441446781,-0.457912623882294,0.759705185890198,-0.461696833372116,-0.454937756061554,0.766800165176392,-0.452823370695114,-0.746848523616791,0.6639004945755,-0.0381257459521294,-0.457912623882294,0.759705185890198,-0.461696833372116,-0.0431849174201488,0.656397521495819,-0.753178179264069,-0.0408147946000099,0.664320766925812,-0.746332347393036,-0.454937756061554,0.766800165176392,-0.452823370695114,-0.0431849174201488,0.656397521495819,-0.753178179264069,0.381419509649277,0.375974863767624,-0.84448915719986,0.384775131940842,0.383794754743576,-0.839434146881104,-0.0408147946000099,0.664320766925812,-0.746332347393036,0.381419509649277,0.375974863767624,-0.84448915719986,0.720443785190582,0.0198595616966486,-0.693229019641876,0.707602620124817,0.000592711614444852,-0.706610381603241,0.384775131940842,0.383794754743576,-0.839434146881104,0.693242788314819,-0.0198598597198725,-0.720430433750153,0.844511926174164,-0.375942945480347,-0.381400674581528,0.839674770832062,-0.383508682250977,-0.38453534245491,0.706608653068542,-0.000594986253418028,-0.707604348659515,-0.706494808197021,0.000711117580067366,0.707717955112457,-0.838640213012695,0.38365039229393,0.386645644903183,-0.816577315330505,0.447355657815933,0.364793717861176,-0.707990348339081,0.0710874944925308,0.702635288238525,-0.385677248239517,-0.382548063993454,0.839589178562164,
- -0.706494808197021,0.000711117580067366,0.707717955112457,-0.707990348339081,0.0710874944925308,0.702635288238525,-0.40344700217247,-0.316847711801529,0.858392775058746,0.0389567725360394,-0.662968277931213,0.747633337974548,-0.385677248239517,-0.382548063993454,0.839589178562164,-0.40344700217247,-0.316847711801529,0.858392775058746,0.0152962254360318,-0.612470269203186,0.790345549583435,0.453461438417435,-0.766053438186646,0.455559909343719,0.0389567725360394,-0.662968277931213,0.747633337974548,0.0152962254360318,-0.612470269203186,0.790345549583435,0.436283588409424,-0.736638367176056,0.516740322113037,0.74668276309967,-0.663904845714569,0.0411734059453011,0.453461438417435,-0.766053438186646,0.455559909343719,0.436283588409424,-0.736638367176056,0.516740322113037,0.746563136577606,-0.65599524974823,0.110967487096787,0.839674770832062,-0.383508682250977,-0.38453534245491,0.74668276309967,-0.663904845714569,0.0411734059453011,0.746563136577606,-0.65599524974823,0.110967487096787,0.862953066825867,-0.392330408096313,-0.318416208028793,0.706608653068542,-0.000594986253418028,-0.707604348659515,0.839674770832062,-0.383508682250977,-0.38453534245491,0.862953066825867,-0.392330408096313,-0.318416208028793,0.835679531097412,-0.0473174229264259,-0.547175288200378,0.384775131940842,0.383794754743576,-0.839434146881104,0.707602620124817,0.000592711614444852,-0.706610381603241,0.547199189662933,0.0473107472062111,-0.83566427230835,0.449824094772339,0.371834605932236,-0.812032699584961,-0.0408147946000099,0.664320766925812,-0.746332347393036,0.384775131940842,0.383794754743576,-0.839434146881104,0.449824094772339,0.371834605932236,-0.812032699584961,0.0309904497116804,0.667424321174622,-0.744032502174377,-0.454937756061554,0.766800165176392,-0.452823370695114,-0.0408147946000099,0.664320766925812,-0.746332347393036,0.0309904497116804,0.667424321174622,-0.744032502174377,-0.389887869358063,0.79164981842041,-0.470401793718338,-0.746848523616791,0.6639004945755,-0.0381257459521294,-0.454937756061554,0.766800165176392,-0.452823370695114,
- -0.389887869358063,0.79164981842041,-0.470401793718338,-0.700191497802734,0.711040794849396,-0.0644430220127106,-0.838640213012695,0.38365039229393,0.386645644903183,-0.746848523616791,0.6639004945755,-0.0381257459521294,-0.700191497802734,0.711040794849396,-0.0644430220127106,-0.816577315330505,0.447355657815933,0.364793717861176,0.844386994838715,-0.376688659191132,-0.380941212177277,0.752267122268677,-0.657376885414124,0.0441566184163094,0.747176229953766,-0.663412690162659,0.0401399470865726,0.839642584323883,-0.383007407188416,-0.385104835033417,0.752267122268677,-0.657376885414124,0.0441566184163094,0.45994845032692,-0.760311722755432,0.458664953708649,0.454498261213303,-0.766079843044281,0.454480886459351,0.747176229953766,-0.663412690162659,0.0401399470865726,0.45994845032692,-0.760311722755432,0.458664953708649,0.0455942377448082,-0.658079504966736,0.751566767692566,0.0400619059801102,-0.663465797901154,0.747133314609528,0.454498261213303,-0.766079843044281,0.454480886459351,0.0455942377448082,-0.658079504966736,0.751566767692566,-0.379688680171967,-0.377935349941254,0.844394087791443,-0.385160356760025,-0.383058696985245,0.839593648910522,0.0400619059801102,-0.663465797901154,0.747133314609528,-0.379688680171967,-0.377935349941254,0.844394087791443,-0.701875567436218,0.00501671526581049,0.712281882762909,-0.707104086875916,6.48482910037274e-006,0.707109451293945,-0.385160356760025,-0.383058696985245,0.839593648910522,-0.701875567436218,0.00501671526581049,0.712281882762909,-0.834742188453674,0.388119041919708,0.390601009130478,-0.839621961116791,0.383024424314499,0.385132730007172,-0.707104086875916,6.48482910037274e-006,0.707109451293945,-0.834742188453674,0.388119041919708,0.390601009130478,-0.742674708366394,0.668765664100647,-0.0344513468444347,-0.747167110443115,0.663430154323578,-0.0400223843753338,-0.839621961116791,0.383024424314499,0.385132730007172,-0.742674708366394,0.668765664100647,-0.0344513468444347,-0.450306057929993,0.771742641925812,-0.44904100894928,-0.454492092132568,0.766076922416687,-0.45449224114418,
- -0.747167110443115,0.663430154323578,-0.0400223843753338,-0.450306057929993,0.771742641925812,-0.44904100894928,-0.0359849967062473,0.669412195682526,-0.742019176483154,-0.0400460883975029,0.663402676582336,-0.747190177440643,-0.454492092132568,0.766076922416687,-0.45449224114418,-0.0359849967062473,0.669412195682526,-0.742019176483154,0.389253884553909,0.38928359746933,-0.834829151630402,0.385125875473022,0.383023351430893,-0.839625656604767,-0.0400460883975029,0.663402676582336,-0.747190177440643,0.389253884553909,0.38928359746933,-0.834829151630402,0.720028281211853,0.0191073678433895,-0.693681597709656,0.704569458961487,-0.00289834383875132,-0.70962917804718,0.385125875473022,0.383023351430893,-0.839625656604767,0.693682372570038,-0.019104927778244,-0.720027685165405,0.844386994838715,-0.376688659191132,-0.380941212177277,0.839642584323883,-0.383007407188416,-0.385104835033417,0.709631025791168,0.00290208053775132,-0.704567551612854,-0.707104086875916,6.48482910037274e-006,0.707109451293945,-0.839621961116791,0.383024424314499,0.385132730007172,-0.816996574401855,0.448353320360184,0.362623602151871,-0.70942085981369,0.0724378898739815,0.70105254650116,-0.385160356760025,-0.383058696985245,0.839593648910522,-0.707104086875916,6.48482910037274e-006,0.707109451293945,-0.70942085981369,0.0724378898739815,0.70105254650116,-0.405622690916061,-0.315746605396271,0.857772886753082,0.0400619059801102,-0.663465797901154,0.747133314609528,-0.385160356760025,-0.383058696985245,0.839593648910522,-0.405622690916061,-0.315746605396271,0.857772886753082,0.0128481779247522,-0.611941277980804,0.790798902511597,0.454498261213303,-0.766079843044281,0.454480886459351,0.0400619059801102,-0.663465797901154,0.747133314609528,0.0128481779247522,-0.611941277980804,0.790798902511597,0.434145510196686,-0.737066090106964,0.517929911613464,0.747176229953766,-0.663412690162659,0.0401399470865726,0.454498261213303,-0.766079843044281,0.454480886459351,0.434145510196686,-0.737066090106964,0.517929911613464,0.745130240917206,-0.657346487045288,0.112589426338673,
- 0.839642584323883,-0.383007407188416,-0.385104835033417,0.747176229953766,-0.663412690162659,0.0401399470865726,0.745130240917206,-0.657346487045288,0.112589426338673,0.862545430660248,-0.394369095563889,-0.316999018192291,0.709631025791168,0.00290208053775132,-0.704567551612854,0.839642584323883,-0.383007407188416,-0.385104835033417,0.862545430660248,-0.394369095563889,-0.316999018192291,0.836912095546722,-0.0541506707668304,-0.544651985168457,0.385125875473022,0.383023351430893,-0.839625656604767,0.704569458961487,-0.00289834383875132,-0.70962917804718,0.544642686843872,0.0541349686682224,-0.836919188499451,0.451207846403122,0.369634926319122,-0.812269389629364,-0.0400460883975029,0.663402676582336,-0.747190177440643,0.385125875473022,0.383023351430893,-0.839625656604767,0.451207846403122,0.369634926319122,-0.812269389629364,0.0326201692223549,0.665958166122437,-0.745275616645813,-0.454492092132568,0.766076922416687,-0.45449224114418,-0.0400460883975029,0.663402676582336,-0.747190177440643,0.0326201692223549,0.665958166122437,-0.745275616645813,-0.38859948515892,0.791055977344513,-0.47246253490448,-0.747167110443115,0.663430154323578,-0.0400223843753338,-0.454492092132568,0.766076922416687,-0.45449224114418,-0.38859948515892,0.791055977344513,-0.47246253490448,-0.699592530727386,0.71140044927597,-0.0669304579496384,-0.839621961116791,0.383024424314499,0.385132730007172,-0.747167110443115,0.663430154323578,-0.0400223843753338,-0.699592530727386,0.71140044927597,-0.0669304579496384,-0.816996574401855,0.448353320360184,0.362623602151871,0.844676196575165,-0.371841698884964,-0.385040074586868,0.713396489620209,-0.700734317302704,0.00607118895277381,0.692492008209229,-0.72142231464386,0.00218154140748084,0.839838147163391,-0.386685818433762,-0.380980342626572,0.713396489620209,-0.700734317302704,0.00607118895277381,0.342225968837738,-0.863622784614563,0.370185106992722,0.354594618082047,-0.853620111942291,0.381569534540176,0.692492008209229,-0.72142231464386,0.00218154140748084,0.342225968837738,-0.863622784614563,0.370185106992722,
- -0.0550507791340351,-0.739271879196167,0.671153128147125,-0.0488747991621494,-0.733933746814728,0.677460193634033,0.354594618082047,-0.853620111942291,0.381569534540176,-0.0550507791340351,-0.739271879196167,0.671153128147125,-0.43847393989563,-0.424095153808594,0.792391240596771,-0.426725119352341,-0.413564711809158,0.804282188415527,-0.0488747991621494,-0.733933746814728,0.677460193634033,-0.43847393989563,-0.424095153808594,0.792391240596771,-0.70710164308548,2.40453891819925e-006,0.707111835479736,-0.703370153903961,0.00345518067479134,0.7108154296875,-0.426725119352341,-0.413564711809158,0.804282188415527,-0.70710164308548,2.40453891819925e-006,0.707111835479736,-0.850442051887512,0.377350956201553,0.366544008255005,-0.834401905536652,0.384486943483353,0.394896656274796,-0.703370153903961,0.00345518067479134,0.7108154296875,-0.850442051887512,0.377350956201553,0.366544008255005,-0.750717461109161,0.657847821712494,-0.0604947544634342,-0.747336983680725,0.663861870765686,-0.0278364345431328,-0.834401905536652,0.384486943483353,0.394896656274796,-0.750717461109161,0.657847821712494,-0.0604947544634342,-0.451786577701569,0.757088541984558,-0.471917062997818,-0.460116624832153,0.768766522407532,-0.444174140691757,-0.747336983680725,0.663861870765686,-0.0278364345431328,-0.451786577701569,0.757088541984558,-0.471917062997818,-0.0361655913293362,0.651431441307068,-0.757845044136047,-0.0471916608512402,0.668134152889252,-0.742542684078217,-0.460116624832153,0.768766522407532,-0.444174140691757,-0.0361655913293362,0.651431441307068,-0.757845044136047,0.385120898485184,0.371849775314331,-0.844635784626007,0.380906164646149,0.386551231145859,-0.839933753013611,-0.0471916608512402,0.668134152889252,-0.742542684078217,0.385120898485184,0.371849775314331,-0.844635784626007,0.721255600452423,0.0214297007769346,-0.692337453365326,0.705454051494598,-0.00191142142284662,-0.708753108978271,0.380906164646149,0.386551231145859,-0.839933753013611,0.692340970039368,-0.02143744379282,-0.721251964569092,0.844676196575165,-0.371841698884964,-0.385040074586868,
- 0.839838147163391,-0.386685818433762,-0.380980342626572,0.708754360675812,0.00191653158981353,-0.705452859401703,-0.703370153903961,0.00345518067479134,0.7108154296875,-0.834401905536652,0.384486943483353,0.394896656274796,-0.815575301647186,0.440607339143753,0.375102937221527,-0.701895356178284,0.0629080832004547,0.7094966173172,-0.426725119352341,-0.413564711809158,0.804282188415527,-0.703370153903961,0.00345518067479134,0.7108154296875,-0.701895356178284,0.0629080832004547,0.7094966173172,-0.385287910699844,-0.38181009888649,0.840103685855865,-0.0488747991621494,-0.733933746814728,0.677460193634033,-0.426725119352341,-0.413564711809158,0.804282188415527,-0.385287910699844,-0.38181009888649,0.840103685855865,0.0650347173213959,-0.74502420425415,0.66385942697525,0.354594618082047,-0.853620111942291,0.381569534540176,-0.0488747991621494,-0.733933746814728,0.677460193634033,0.0650347173213959,-0.74502420425415,0.66385942697525,0.466265857219696,-0.819703757762909,0.33268877863884,0.692492008209229,-0.72142231464386,0.00218154140748084,0.354594618082047,-0.853620111942291,0.381569534540176,0.466265857219696,-0.819703757762909,0.33268877863884,0.735139310359955,-0.676533699035645,-0.043270543217659,0.839838147163391,-0.386685818433762,-0.380980342626572,0.692492008209229,-0.72142231464386,0.00218154140748084,0.735139310359955,-0.676533699035645,-0.043270543217659,0.86387300491333,-0.383331596851349,-0.326772481203079,0.708754360675812,0.00191653158981353,-0.705452859401703,0.839838147163391,-0.386685818433762,-0.380980342626572,0.86387300491333,-0.383331596851349,-0.326772481203079,0.826047897338867,-0.0166043918579817,-0.563355267047882,0.380906164646149,0.386551231145859,-0.839933753013611,0.705454051494598,-0.00191142142284662,-0.708753108978271,0.56338369846344,0.0166051685810089,-0.82602846622467,0.441951274871826,0.381179481744766,-0.812022924423218,-0.0471916608512402,0.668134152889252,-0.742542684078217,0.380906164646149,0.386551231145859,-0.839933753013611,0.441951274871826,0.381179481744766,-0.812022924423218,
- 0.0217429734766483,0.673592209815979,-0.738783359527588,-0.460116624832153,0.768766522407532,-0.444174140691757,-0.0471916608512402,0.668134152889252,-0.742542684078217,0.0217429734766483,0.673592209815979,-0.738783359527588,-0.397825866937637,0.793193817138672,-0.461061984300613,-0.747336983680725,0.663861870765686,-0.0278364345431328,-0.460116624832153,0.768766522407532,-0.444174140691757,-0.397825866937637,0.793193817138672,-0.461061984300613,-0.704309284687042,0.70788711309433,-0.0533324405550957,-0.834401905536652,0.384486943483353,0.394896656274796,-0.747336983680725,0.663861870765686,-0.0278364345431328,-0.704309284687042,0.70788711309433,-0.0533324405550957,-0.815575301647186,0.440607339143753,0.375102937221527,0.833914279937744,-0.39202207326889,-0.388465702533722,0.740057229995728,-0.671438217163086,0.0385495759546757,0.750284790992737,-0.659952700138092,0.0391807407140732,0.841748476028442,-0.379034906625748,-0.384437441825867,0.740057229995728,-0.671438217163086,0.0385495759546757,0.446320384740829,-0.771724402904511,0.453033894300461,0.458414256572723,-0.764586985111237,0.453059613704681,0.750284790992737,-0.659952700138092,0.0391807407140732,0.446320384740829,-0.771724402904511,0.453033894300461,0.0324498564004898,-0.666932642459869,0.744410932064056,0.0436279736459255,-0.663771867752075,0.746661603450775,0.458414256572723,-0.764586985111237,0.453059613704681,0.0324498564004898,-0.666932642459869,0.744410932064056,-0.391014844179153,-0.386047095060349,0.835508823394775,-0.383363008499146,-0.383806854486465,0.840074360370636,0.0436279736459255,-0.663771867752075,0.746661603450775,-0.391014844179153,-0.386047095060349,0.835508823394775,-0.707107126712799,7.75971841449064e-007,0.707106351852417,-0.706980526447296,0.000154415116412565,0.707233071327209,-0.383363008499146,-0.383806854486465,0.840074360370636,-0.707107126712799,7.75971841449064e-007,0.707106351852417,-0.835550844669342,0.386021167039871,0.390950798988342,-0.839691042900085,0.38426998257637,0.383738964796066,-0.706980526447296,0.000154415116412565,0.707233071327209,
- -0.835550844669342,0.386021167039871,0.390950798988342,-0.744413137435913,0.666936814785004,-0.0323173254728317,-0.745876491069794,0.664714753627777,-0.0426902174949646,-0.839691042900085,0.38426998257637,0.383738964796066,-0.744413137435913,0.666936814785004,-0.0323173254728317,-0.453062921762466,0.771693050861359,-0.446344882249832,-0.451806992292404,0.7661292552948,-0.45707368850708,-0.745876491069794,0.664714753627777,-0.0426902174949646,-0.453062921762466,0.771693050861359,-0.446344882249832,-0.0384536162018776,0.671359121799469,-0.740133941173553,-0.0372520983219147,0.662274897098541,-0.748334348201752,-0.451806992292404,0.7661292552948,-0.45707368850708,-0.0384536162018776,0.671359121799469,-0.740133941173553,0.388490498065948,0.392114162445068,-0.833859443664551,0.386545449495316,0.381864696741104,-0.839501023292542,-0.0372520983219147,0.662274897098541,-0.748334348201752,0.388490498065948,0.392114162445068,-0.833859443664551,0.723010897636414,0.0250116400420666,-0.690383672714233,0.713930785655975,0.00904601253569126,-0.700157880783081,0.386545449495316,0.381864696741104,-0.839501023292542,0.690366744995117,-0.0250333212316036,-0.723026394844055,0.833914279937744,-0.39202207326889,-0.388465702533722,0.841748476028442,-0.379034906625748,-0.384437441825867,0.700140535831451,-0.00904559809714556,-0.713947772979736,-0.706980526447296,0.000154415116412565,0.707233071327209,-0.839691042900085,0.38426998257637,0.383738964796066,-0.815901815891266,0.444570183753967,0.369677722454071,-0.704964160919189,0.0676485300064087,0.706009387969971,-0.383363008499146,-0.383806854486465,0.840074360370636,-0.706980526447296,0.000154415116412565,0.707233071327209,-0.704964160919189,0.0676485300064087,0.706009387969971,-0.398709446191788,-0.319835960865021,0.859497368335724,0.0436279736459255,-0.663771867752075,0.746661603450775,-0.383363008499146,-0.383806854486465,0.840074360370636,-0.398709446191788,-0.319835960865021,0.859497368335724,0.0206435061991215,-0.613950729370117,0.78907436132431,0.458414256572723,-0.764586985111237,0.453059613704681,
- 0.0436279736459255,-0.663771867752075,0.746661603450775,0.0206435061991215,-0.613950729370117,0.78907436132431,0.441006422042847,-0.736067473888397,0.513534963130951,0.750284790992737,-0.659952700138092,0.0391807407140732,0.458414256572723,-0.764586985111237,0.453059613704681,0.441006422042847,-0.736067473888397,0.513534963130951,0.749545812606812,-0.653237223625183,0.107062123715878,0.841748476028442,-0.379034906625748,-0.384437441825867,0.750284790992737,-0.659952700138092,0.0391807407140732,0.749545812606812,-0.653237223625183,0.107062123715878,0.863601982593536,-0.387974321842194,-0.321974486112595,0.700140535831451,-0.00904559809714556,-0.713947772979736,0.841748476028442,-0.379034906625748,-0.384437441825867,0.863601982593536,-0.387974321842194,-0.321974486112595,0.831997394561768,-0.032590989023447,-0.553821384906769,0.386545449495316,0.381864696741104,-0.839501023292542,0.713930785655975,0.00904601253569126,-0.700157880783081,0.553854942321777,0.0325380302965641,-0.831977128982544,0.446438848972321,0.376417189836502,-0.811789631843567,-0.0372520983219147,0.662274897098541,-0.748334348201752,0.386545449495316,0.381864696741104,-0.839501023292542,0.446438848972321,0.376417189836502,-0.811789631843567,0.0269622411578894,0.670575201511383,-0.741351366043091,-0.451806992292404,0.7661292552948,-0.45707368850708,-0.0372520983219147,0.662274897098541,-0.748334348201752,0.0269622411578894,0.670575201511383,-0.741351366043091,-0.393297553062439,0.792622685432434,-0.465903908014297,-0.745876491069794,0.664714753627777,-0.0426902174949646,-0.451806992292404,0.7661292552948,-0.45707368850708,-0.393297553062439,0.792622685432434,-0.465903908014297,-0.701799213886261,0.709904134273529,-0.0592788383364677,-0.839691042900085,0.38426998257637,0.383738964796066,-0.745876491069794,0.664714753627777,-0.0426902174949646,-0.701799213886261,0.709904134273529,-0.0592788383364677,-0.815901815891266,0.444570183753967,0.369677722454071,0.844926655292511,-0.375893533229828,-0.380530059337616,0.752845883369446,-0.656695306301117,0.0444325990974903,
- 0.747136950492859,-0.663462221622467,0.0400545969605446,0.839632153511047,-0.383019268512726,-0.385115653276443,0.752845883369446,-0.656695306301117,0.0444325990974903,0.460633367300034,-0.759664535522461,0.459049642086029,0.454514116048813,-0.766064167022705,0.454491704702377,0.747136950492859,-0.663462221622467,0.0400545969605446,0.460633367300034,-0.759664535522461,0.459049642086029,0.0463073253631592,-0.657526433467865,0.752007067203522,0.0401074178516865,-0.6634361743927,0.747157096862793,0.454514116048813,-0.766064167022705,0.454491704702377,0.0463073253631592,-0.657526433467865,0.752007067203522,-0.378940790891647,-0.377407819032669,0.844965875148773,-0.385163366794586,-0.383043020963669,0.839599430561066,0.0401074178516865,-0.6634361743927,0.747157096862793,-0.378940790891647,-0.377407819032669,0.844965875148773,-0.701273202896118,0.00544410478323698,0.712871730327606,-0.707134664058685,-3.38712452503387e-005,0.707078874111176,-0.385163366794586,-0.383043020963669,0.839599430561066,-0.701273202896118,0.00544410478323698,0.712871730327606,-0.834191381931305,0.38863006234169,0.391268908977509,-0.839633703231812,0.3830206990242,0.385110914707184,-0.707134664058685,-3.38712452503387e-005,0.707078874111176,-0.834191381931305,0.38863006234169,0.391268908977509,-0.742193877696991,0.669334352016449,-0.0337616242468357,-0.747145116329193,0.663452684879303,-0.0400586538016796,-0.839633703231812,0.3830206990242,0.385110914707184,-0.742193877696991,0.669334352016449,-0.0337616242468357,-0.449914753437042,0.772372126579285,-0.448350220918655,-0.454489678144455,0.76608008146286,-0.454489260911942,-0.747145116329193,0.663452684879303,-0.0400586538016796,-0.449914753437042,0.772372126579285,-0.448350220918655,-0.0356415025889874,0.670110642910004,-0.741404950618744,-0.0400599725544453,0.66342568397522,-0.747169017791748,-0.454489678144455,0.76608008146286,-0.454489260911942,-0.0356415025889874,0.670110642910004,-0.741404950618744,0.389638036489487,0.390082865953445,-0.834276676177979,0.385141313076019,0.383028775453568,-0.839616119861603,
- -0.0400599725544453,0.66342568397522,-0.747169017791748,0.389638036489487,0.390082865953445,-0.834276676177979,0.721310317516327,0.0215235147625208,-0.692277610301971,0.702897548675537,-0.00470412243157625,-0.711275577545166,0.385141313076019,0.383028775453568,-0.839616119861603,0.692286849021912,-0.0215334165841341,-0.721301138401031,0.844926655292511,-0.375893533229828,-0.380530059337616,0.839632153511047,-0.383019268512726,-0.385115653276443,0.711349666118622,0.00476451311260462,-0.702822148799896,-0.707134664058685,-3.38712452503387e-005,0.707078874111176,-0.839633703231812,0.3830206990242,0.385110914707184,-0.815596282482147,0.440606504678726,0.375058084726334,-0.7019202709198,0.0628939792513847,0.709473311901093,-0.385163366794586,-0.383043020963669,0.839599430561066,-0.707134664058685,-3.38712452503387e-005,0.707078874111176,-0.7019202709198,0.0628939792513847,0.709473311901093,-0.393579840660095,-0.324029594659805,0.86029052734375,0.0401074178516865,-0.6634361743927,0.747157096862793,-0.385163366794586,-0.383043020963669,0.839599430561066,-0.393579840660095,-0.324029594659805,0.86029052734375,0.026567293331027,-0.616288959980011,0.787071824073792,0.454514116048813,-0.766064167022705,0.454491704702377,0.0401074178516865,-0.6634361743927,0.747157096862793,0.026567293331027,-0.616288959980011,0.787071824073792,0.446114838123322,-0.735921740531921,0.509313941001892,0.747136950492859,-0.663462221622467,0.0400545969605446,0.454514116048813,-0.766064167022705,0.454491704702377,0.446114838123322,-0.735921740531921,0.509313941001892,0.75257533788681,-0.650593638420105,0.10177443176508,0.839632153511047,-0.383019268512726,-0.385115653276443,0.747136950492859,-0.663462221622467,0.0400545969605446,0.75257533788681,-0.650593638420105,0.10177443176508,0.863843500614166,-0.383364498615265,-0.326812148094177,0.711349666118622,0.00476451311260462,-0.702822148799896,0.839632153511047,-0.383019268512726,-0.385115653276443,0.863843500614166,-0.383364498615265,-0.326812148094177,0.826133191585541,-0.0165784545242786,-0.563230991363525,
- 0.385141313076019,0.383028775453568,-0.839616119861603,0.702897548675537,-0.00470412243157625,-0.711275577545166,0.563313186168671,0.0166621077805758,-0.826075434684753,0.441915363073349,0.381220996379852,-0.812022984027863,-0.0400599725544453,0.66342568397522,-0.747169017791748,0.385141313076019,0.383028775453568,-0.839616119861603,0.441915363073349,0.381220996379852,-0.812022984027863,0.0217720419168472,0.673586905002594,-0.738787233829498,-0.454489678144455,0.76608008146286,-0.454489260911942,-0.0400599725544453,0.66342568397522,-0.747169017791748,0.0217720419168472,0.673586905002594,-0.738787233829498,-0.397798150777817,0.79321151971817,-0.461055517196655,-0.747145116329193,0.663452684879303,-0.0400586538016796,-0.454489678144455,0.76608008146286,-0.454489260911942,-0.397798150777817,0.79321151971817,-0.461055517196655,-0.704334557056427,0.707863330841064,-0.053314495831728,-0.839633703231812,0.3830206990242,0.385110914707184,-0.747145116329193,0.663452684879303,-0.0400586538016796,-0.704334557056427,0.707863330841064,-0.053314495831728,-0.815596282482147,0.440606504678726,0.375058084726334,0.843853950500488,-0.377477645874023,-0.381341069936752,0.751581311225891,-0.658190310001373,0.0437183976173401,0.74714469909668,-0.663450717926025,0.0400988757610321,0.839634299278259,-0.383022308349609,-0.385108202695847,0.751581311225891,-0.658190310001373,0.0437183976173401,0.459243446588516,-0.760984420776367,0.458255469799042,0.454496830701828,-0.766071975231171,0.454495787620544,0.74714469909668,-0.663450717926025,0.0400988757610321,0.459243446588516,-0.760984420776367,0.458255469799042,0.0448723249137402,-0.658701717853546,0.751064896583557,0.0400941222906113,-0.663460433483124,0.747136354446411,0.454496830701828,-0.766071975231171,0.454495787620544,0.0448723249137402,-0.658701717853546,0.751064896583557,-0.38035249710083,-0.378475368022919,0.843853294849396,-0.385124176740646,-0.383062303066254,0.839608669281006,0.0400941222906113,-0.663460433483124,0.747136354446411,-0.38035249710083,-0.378475368022919,0.843853294849396,
- -0.702561438083649,0.00447189621627331,0.711609065532684,-0.707110941410065,-5.60063881493988e-006,0.707102656364441,-0.385124176740646,-0.383062303066254,0.839608669281006,-0.702561438083649,0.00447189621627331,0.711609065532684,-0.835325300693512,0.387589573860168,0.389879405498505,-0.839620411396027,0.383025288581848,0.385135322809219,-0.707110941410065,-5.60063881493988e-006,0.707102656364441,-0.835325300693512,0.387589573860168,0.389879405498505,-0.743185102939606,0.668160855770111,-0.0351708941161633,-0.747194230556488,0.663399815559387,-0.0400180816650391,-0.839620411396027,0.383025288581848,0.385135322809219,-0.743185102939606,0.668160855770111,-0.0351708941161633,-0.450738430023193,0.77107310295105,-0.449756950139999,-0.454492330551147,0.7660773396492,-0.454491227865219,-0.747194230556488,0.663399815559387,-0.0400180816650391,-0.450738430023193,0.77107310295105,-0.449756950139999,-0.0363651104271412,0.668643593788147,-0.742693245410919,-0.0399857759475708,0.663433134555817,-0.747166395187378,-0.454492330551147,0.7660773396492,-0.454491227865219,-0.0363651104271412,0.668643593788147,-0.742693245410919,0.388873994350433,0.388529002666473,-0.835357487201691,0.38513395190239,0.383017420768738,-0.83962470293045,-0.0399857759475708,0.663433134555817,-0.747166395187378,0.388873994350433,0.388529002666473,-0.835357487201691,0.71861720085144,0.0165737476199865,-0.695208311080933,0.708267688751221,0.0014035104541108,-0.705942571163177,0.38513395190239,0.383017420768738,-0.83962470293045,0.695164501667023,-0.0166336968541145,-0.718658208847046,0.843853950500488,-0.377477645874023,-0.381341069936752,0.839634299278259,-0.383022308349609,-0.385108202695847,0.705941319465637,-0.00140533456578851,-0.708269000053406,-0.707110941410065,-5.60063881493988e-006,0.707102656364441,-0.839620411396027,0.383025288581848,0.385135322809219,-0.815589487552643,0.440606653690338,0.375072747468948,-0.701884210109711,0.0629264488816261,0.709506094455719,-0.385124176740646,-0.383062303066254,0.839608669281006,-0.707110941410065,-5.60063881493988e-006,0.707102656364441,
- -0.701884210109711,0.0629264488816261,0.709506094455719,-0.393590182065964,-0.324052423238754,0.86027717590332,0.0400941222906113,-0.663460433483124,0.747136354446411,-0.385124176740646,-0.383062303066254,0.839608669281006,-0.393590182065964,-0.324052423238754,0.86027717590332,0.0265580583363771,-0.616297364234924,0.787065625190735,0.454496830701828,-0.766071975231171,0.454495787620544,0.0400941222906113,-0.663460433483124,0.747136354446411,0.0265580583363771,-0.616297364234924,0.787065625190735,0.446113705635071,-0.735948085784912,0.509276866912842,0.74714469909668,-0.663450717926025,0.0400988757610321,0.454496830701828,-0.766071975231171,0.454495787620544,0.446113705635071,-0.735948085784912,0.509276866912842,0.752551019191742,-0.650610089302063,0.101849742233753,0.839634299278259,-0.383022308349609,-0.385108202695847,0.74714469909668,-0.663450717926025,0.0400988757610321,0.752551019191742,-0.650610089302063,0.101849742233753,0.863872647285461,-0.383339047431946,-0.326764822006226,0.705941319465637,-0.00140533456578851,-0.708269000053406,0.839634299278259,-0.383022308349609,-0.385108202695847,0.863872647285461,-0.383339047431946,-0.326764822006226,0.826110780239105,-0.0166172701865435,-0.563262701034546,0.38513395190239,0.383017420768738,-0.83962470293045,0.708267688751221,0.0014035104541108,-0.705942571163177,0.563352346420288,0.0166214480996132,-0.826049566268921,0.441857039928436,0.381237417459488,-0.812047064304352,-0.0399857759475708,0.663433134555817,-0.747166395187378,0.38513395190239,0.383017420768738,-0.83962470293045,0.441857039928436,0.381237417459488,-0.812047064304352,0.0217113308608532,0.673674464225769,-0.738709211349487,-0.454492330551147,0.7660773396492,-0.454491227865219,-0.0399857759475708,0.663433134555817,-0.747166395187378,0.0217113308608532,0.673674464225769,-0.738709211349487,-0.397809147834778,0.793193399906158,-0.461077094078064,-0.747194230556488,0.663399815559387,-0.0400180816650391,-0.454492330551147,0.7660773396492,-0.454491227865219,-0.397809147834778,0.793193399906158,-0.461077094078064,
- -0.704300582408905,0.707888185977936,-0.0534329079091549,-0.839620411396027,0.383025288581848,0.385135322809219,-0.747194230556488,0.663399815559387,-0.0400180816650391,-0.704300582408905,0.707888185977936,-0.0534329079091549,-0.815589487552643,0.440606653690338,0.375072747468948,-0.70711350440979,-7.96448784967652e-006,0.707100093364716,-0.70711350440979,-7.96448784967652e-006,0.707100093364716,-0.707113742828369,-7.52489086153219e-006,0.707099795341492,-0.707140922546387,3.83555598091334e-005,0.707072615623474,-0.707105875015259,-2.09004610951524e-005,0.707107663154602,-0.707104444503784,-2.31210651691072e-005,0.707109093666077,-0.70710426568985,-2.35223997151479e-005,0.707109332084656,-0.707138299942017,3.37667297571898e-005,0.707075238227844,-0.707109868526459,-1.40675856528105e-005,0.707103729248047,-0.707089722156525,-4.80069793411531e-005,0.707123816013336,-0.707192897796631,0.000125892081996426,0.70702064037323,-0.7071173787117,-1.39946951094316e-006,0.70709615945816,0.859871447086334,-0.321063756942749,-0.396912038326263,0.788502216339111,-0.614616394042969,0.0226030834019184,0.747120082378387,-0.663479685783386,0.0400816760957241,0.839665353298187,-0.382961332798004,-0.385100722312927,0.788502216339111,-0.614616394042969,0.0226030834019184,0.512209236621857,-0.735928058624268,0.442777067422867,0.454517900943756,-0.766050517559052,0.454510748386383,0.747120082378387,-0.663479685783386,0.0400816760957241,0.512209236621857,-0.735928058624268,0.442777067422867,0.105273574590683,-0.652257084846497,0.750651836395264,0.0400842241942883,-0.663468956947327,0.747129321098328,0.454517900943756,-0.766050517559052,0.454510748386383,0.105273574590683,-0.652257084846497,0.750651836395264,-0.323639810085297,-0.386354088783264,0.863705813884735,-0.385196268558502,-0.38302618265152,0.839591979980469,0.0400842241942883,-0.663468956947327,0.747129321098328,-0.323639810085297,-0.386354088783264,0.863705813884735,-0.659193992614746,-0.00922193843871355,0.751916408538818,-0.707097291946411,1.25277692859527e-005,0.707116365432739,
- -0.385196268558502,-0.38302618265152,0.839591979980469,-0.659193992614746,-0.00922193843871355,0.751916408538818,-0.811760306358337,0.37819504737854,0.44498735666275,-0.83960896730423,0.383018016815186,0.385167449712753,-0.707097291946411,1.25277692859527e-005,0.707116365432739,-0.811760306358337,0.37819504737854,0.44498735666275,-0.740404725074768,0.671689569950104,0.02518012188375,-0.747139632701874,0.663460314273834,-0.0400351695716381,-0.83960896730423,0.383018016815186,0.385167449712753,-0.740404725074768,0.671689569950104,0.02518012188375,-0.464270949363709,0.792913675308228,-0.394639670848846,-0.454505950212479,0.766051769256592,-0.454520672559738,-0.747139632701874,0.663460314273834,-0.0400351695716381,-0.464270949363709,0.792913675308228,-0.394639670848846,-0.0572640337049961,0.709228515625,-0.702649116516113,-0.040062814950943,0.663409531116486,-0.747183263301849,-0.454505950212479,0.766051769256592,-0.454520672559738,-0.0572640337049961,0.709228515625,-0.702649116516113,0.371447324752808,0.443373829126358,-0.815749049186707,0.385111540555954,0.38300496339798,-0.839640557765961,-0.040062814950943,0.663409531116486,-0.747183263301849,0.371447324752808,0.443373829126358,-0.815749049186707,0.698575019836426,0.194851726293564,-0.688495278358459,0.724425494670868,0.0281540565192699,-0.688777923583984,0.385111540555954,0.38300496339798,-0.839640557765961,0.688595831394196,-0.195075273513794,-0.698413491249084,0.859871447086334,-0.321063756942749,-0.396912038326263,0.839665353298187,-0.382961332798004,-0.385100722312927,0.688779771327972,-0.0280961468815804,-0.724426090717316,0.70717191696167,-6.06159701419529e-005,-0.707041621208191,0.707106828689575,4.90187449031509e-005,-0.707106709480286,0.707074522972107,0.000103565282188356,-0.707139015197754,0.707100391387939,6.0001384554198e-005,-0.707113206386566,0.707134544849396,2.4010116703721e-006,-0.707079112529755,0.707120299339294,2.6414872991154e-005,-0.707093238830566,0.707116603851318,3.25324908772018e-005,-0.707096934318542,0.707119464874268,2.77066174021456e-005,-0.707094073295593,
- 0.707135438919067,7.74285581428558e-007,-0.707078099250793,0.707157135009766,-3.56722594005987e-005,-0.707056403160095,0.707114100456238,3.69272129319143e-005,-0.707099497318268,0.707120835781097,2.54938695434248e-005,-0.707092702388763,-0.707070291042328,3.06128422380425e-005,0.707143187522888,-0.83962070941925,0.383026361465454,0.385133653879166,-0.81557559967041,0.440640568733215,0.37506315112114,-0.701874077320099,0.0629164427518845,0.709516882896423,-0.385170102119446,-0.383052885532379,0.839591860771179,-0.707070291042328,3.06128422380425e-005,0.707143187522888,-0.701874077320099,0.0629164427518845,0.709516882896423,-0.393647372722626,-0.32398322224617,0.860277056694031,0.0401043817400932,-0.663445770740509,0.747148811817169,-0.385170102119446,-0.383052885532379,0.839591860771179,-0.393647372722626,-0.32398322224617,0.860277056694031,0.0265653971582651,-0.616324186325073,0.78704434633255,0.454483330249786,-0.766086757183075,0.45448437333107,0.0401043817400932,-0.663445770740509,0.747148811817169,0.0265653971582651,-0.616324186325073,0.78704434633255,0.446109414100647,-0.7359339594841,0.509300887584686,0.747175753116608,-0.663413941860199,0.0401302315294743,0.454483330249786,-0.766086757183075,0.45448437333107,0.446109414100647,-0.7359339594841,0.509300887584686,0.752578318119049,-0.650588631629944,0.101785719394684,0.839609563350677,-0.383052289485931,-0.385131925344467,0.747175753116608,-0.663413941860199,0.0401302315294743,0.752578318119049,-0.650588631629944,0.101785719394684,0.863897144794464,-0.383312910795212,-0.326730638742447,0.706254661083221,-0.00101976911537349,-0.707957208156586,0.839609563350677,-0.383052289485931,-0.385131925344467,0.863897144794464,-0.383312910795212,-0.326730638742447,0.826074481010437,-0.0166579447686672,-0.56331479549408,0.385097146034241,0.383033633232117,-0.83963418006897,0.707956552505493,0.00102521537337452,-0.706255316734314,0.563382387161255,0.0165979079902172,-0.826029539108276,0.441894382238388,0.381209552288055,-0.812039852142334,-0.0400534123182297,0.663443148136139,-0.747153997421265,
- 0.385097146034241,0.383033633232117,-0.83963418006897,0.441894382238388,0.381209552288055,-0.812039852142334,0.0216702967882156,0.673665821552277,-0.738718330860138,-0.454491972923279,0.7660773396492,-0.454491645097733,-0.0400534123182297,0.663443148136139,-0.747153997421265,0.0216702967882156,0.673665821552277,-0.738718330860138,-0.397818952798843,0.793195009231567,-0.461065858602524,-0.747175693511963,0.663416802883148,-0.0400828197598457,-0.454491972923279,0.7660773396492,-0.454491645097733,-0.397818952798843,0.793195009231567,-0.461065858602524,-0.704303383827209,0.707882761955261,-0.0534676685929298,-0.83962070941925,0.383026361465454,0.385133653879166,-0.747175693511963,0.663416802883148,-0.0400828197598457,-0.704303383827209,0.707882761955261,-0.0534676685929298,-0.81557559967041,0.440640568733215,0.37506315112114,-0.707097291946411,1.25277692859527e-005,0.707116365432739,-0.83960896730423,0.383018016815186,0.385167449712753,-0.83962070941925,0.383026361465454,0.385133653879166,-0.707070291042328,3.06128422380425e-005,0.707143187522888,-0.385196268558502,-0.38302618265152,0.839591979980469,-0.707097291946411,1.25277692859527e-005,0.707116365432739,-0.707070291042328,3.06128422380425e-005,0.707143187522888,-0.385170102119446,-0.383052885532379,0.839591860771179,0.0400842241942883,-0.663468956947327,0.747129321098328,-0.385196268558502,-0.38302618265152,0.839591979980469,-0.385170102119446,-0.383052885532379,0.839591860771179,0.0401043817400932,-0.663445770740509,0.747148811817169,0.454517900943756,-0.766050517559052,0.454510748386383,0.0400842241942883,-0.663468956947327,0.747129321098328,0.0401043817400932,-0.663445770740509,0.747148811817169,0.454483330249786,-0.766086757183075,0.45448437333107,0.747120082378387,-0.663479685783386,0.0400816760957241,0.454517900943756,-0.766050517559052,0.454510748386383,0.454483330249786,-0.766086757183075,0.45448437333107,0.747175753116608,-0.663413941860199,0.0401302315294743,0.839665353298187,-0.382961332798004,-0.385100722312927,0.747120082378387,-0.663479685783386,0.0400816760957241,
- 0.747175753116608,-0.663413941860199,0.0401302315294743,0.839609563350677,-0.383052289485931,-0.385131925344467,0.688779771327972,-0.0280961468815804,-0.724426090717316,0.839665353298187,-0.382961332798004,-0.385100722312927,0.839609563350677,-0.383052289485931,-0.385131925344467,0.706254661083221,-0.00101976911537349,-0.707957208156586,0.385111540555954,0.38300496339798,-0.839640557765961,0.724425494670868,0.0281540565192699,-0.688777923583984,0.707956552505493,0.00102521537337452,-0.706255316734314,0.385097146034241,0.383033633232117,-0.83963418006897,-0.040062814950943,0.663409531116486,-0.747183263301849,0.385111540555954,0.38300496339798,-0.839640557765961,0.385097146034241,0.383033633232117,-0.83963418006897,-0.0400534123182297,0.663443148136139,-0.747153997421265,-0.454505950212479,0.766051769256592,-0.454520672559738,-0.040062814950943,0.663409531116486,-0.747183263301849,-0.0400534123182297,0.663443148136139,-0.747153997421265,-0.454491972923279,0.7660773396492,-0.454491645097733,-0.747139632701874,0.663460314273834,-0.0400351695716381,-0.454505950212479,0.766051769256592,-0.454520672559738,-0.454491972923279,0.7660773396492,-0.454491645097733,-0.747175693511963,0.663416802883148,-0.0400828197598457,-0.83960896730423,0.383018016815186,0.385167449712753,-0.747139632701874,0.663460314273834,-0.0400351695716381,-0.747175693511963,0.663416802883148,-0.0400828197598457,-0.83962070941925,0.383026361465454,0.385133653879166,0.843401968479156,-0.378118336200714,-0.381706237792969,0.686740338802338,-0.726866364479065,-0.0072775911539793,0.675082743167877,-0.737235128879547,-0.0273463279008865,0.83964067697525,-0.383008241653442,-0.385108083486557,0.686740338802338,-0.726866364479065,-0.0072775911539793,0.274703979492188,-0.91191291809082,0.304881066083908,0.336605757474899,-0.879985153675079,0.33514592051506,0.675082743167877,-0.737235128879547,-0.0273463279008865,0.274703979492188,-0.91191291809082,0.304881066083908,-0.104437723755836,-0.789194226264954,0.605198323726654,-0.0581354722380638,-0.769453227519989,0.636051952838898,
- 0.336605757474899,-0.879985153675079,0.33514592051506,-0.104437723755836,-0.789194226264954,0.605198323726654,-0.471399515867233,-0.467853218317032,0.747593402862549,-0.428381115198135,-0.435248106718063,0.791864037513733,-0.0581354722380638,-0.769453227519989,0.636051952838898,-0.471399515867233,-0.467853218317032,0.747593402862549,-0.703105866909027,0.00399263389408588,0.711073875427246,-0.707129597663879,-6.23992600594647e-005,0.707083940505981,-0.428381115198135,-0.435248106718063,0.791864037513733,-0.703105866909027,0.00399263389408588,0.711073875427246,-0.835799217224121,0.387156456708908,0.389293819665909,-0.839602828025818,0.383055329322815,0.385143518447876,-0.707129597663879,-6.23992600594647e-005,0.707083940505981,-0.835799217224121,0.387156456708908,0.389293819665909,-0.743567943572998,0.667704880237579,-0.0357305631041527,-0.747139513492584,0.663464248180389,-0.0399723127484322,-0.839602828025818,0.383055329322815,0.385143518447876,-0.743567943572998,0.667704880237579,-0.0357305631041527,-0.451108306646347,0.770520687103271,-0.450332283973694,-0.454532533884048,0.766030311584473,-0.45453017950058,-0.747139513492584,0.663464248180389,-0.0399723127484322,-0.451108306646347,0.770520687103271,-0.450332283973694,-0.0367245115339756,0.668036699295044,-0.743221521377563,-0.0400094427168369,0.663435220718384,-0.74716329574585,-0.454532533884048,0.766030311584473,-0.45453017950058,-0.0367245115339756,0.668036699295044,-0.743221521377563,0.388469815254211,0.387873858213425,-0.83585000038147,0.385103553533554,0.383011341094971,-0.839641332626343,-0.0400094427168369,0.663435220718384,-0.74716329574585,0.388469815254211,0.387873858213425,-0.83585000038147,0.717516899108887,0.0146628711372614,-0.696386754512787,0.706352710723877,-0.000901541905477643,-0.707859516143799,0.385103553533554,0.383011341094971,-0.839641332626343,0.696405351161957,-0.0146582825109363,-0.717498958110809,0.843401968479156,-0.378118336200714,-0.381706237792969,0.83964067697525,-0.383008241653442,-0.385108083486557,0.707911729812622,0.000929302303120494,-0.706300377845764,
- -0.707129597663879,-6.23992600594647e-005,0.707083940505981,-0.839602828025818,0.383055329322815,0.385143518447876,-0.816158711910248,0.446144640445709,0.367205500602722,-0.706530392169952,0.069483146071434,0.70426332950592,-0.428381115198135,-0.435248106718063,0.791864037513733,-0.707129597663879,-6.23992600594647e-005,0.707083940505981,-0.706530392169952,0.069483146071434,0.70426332950592,-0.384613156318665,-0.38498592376709,0.838962852954865,-0.0581354722380638,-0.769453227519989,0.636051952838898,-0.428381115198135,-0.435248106718063,0.791864037513733,-0.384613156318665,-0.38498592376709,0.838962852954865,0.0842115506529808,-0.755349934101105,0.649888515472412,0.336605757474899,-0.879985153675079,0.33514592051506,-0.0581354722380638,-0.769453227519989,0.636051952838898,0.0842115506529808,-0.755349934101105,0.649888515472412,0.482322007417679,-0.819587409496307,0.309260010719299,0.675082743167877,-0.737235128879547,-0.0273463279008865,0.336605757474899,-0.879985153675079,0.33514592051506,0.482322007417679,-0.819587409496307,0.309260010719299,0.73955249786377,-0.670434057712555,-0.0598352029919624,0.83964067697525,-0.383008241653442,-0.385108083486557,0.675082743167877,-0.737235128879547,-0.0273463279008865,0.73955249786377,-0.670434057712555,-0.0598352029919624,0.863283812999725,-0.390187799930573,-0.320147633552551,0.707911729812622,0.000929302303120494,-0.706300377845764,0.83964067697525,-0.383008241653442,-0.385108083486557,0.863283812999725,-0.390187799930573,-0.320147633552551,0.834101319313049,-0.0401023998856544,-0.550151824951172,0.385103553533554,0.383011341094971,-0.839641332626343,0.706352710723877,-0.000901541905477643,-0.707859516143799,0.550248503684998,0.0401587411761284,-0.83403468132019,0.448256433010101,0.374052405357361,-0.811881184577942,-0.0400094427168369,0.663435220718384,-0.74716329574585,0.385103553533554,0.383011341094971,-0.839641332626343,0.448256433010101,0.374052405357361,-0.811881184577942,0.0291070938110352,0.668991684913635,-0.742699682712555,-0.454532533884048,0.766030311584473,-0.45453017950058,
- -0.0400094427168369,0.663435220718384,-0.74716329574585,0.0291070938110352,0.668991684913635,-0.742699682712555,-0.391453385353088,0.792169153690338,-0.468222439289093,-0.747139513492584,0.663464248180389,-0.0399723127484322,-0.454532533884048,0.766030311584473,-0.45453017950058,-0.391453385353088,0.792169153690338,-0.468222439289093,-0.700929403305054,0.710535049438477,-0.0619510747492313,-0.839602828025818,0.383055329322815,0.385143518447876,-0.747139513492584,0.663464248180389,-0.0399723127484322,-0.700929403305054,0.710535049438477,-0.0619510747492313,-0.816158711910248,0.446144640445709,0.367205500602722,0.829150974750519,-0.400117814540863,-0.390402972698212,0.733941793441772,-0.678202748298645,0.0370217636227608,0.751417815685272,-0.658667683601379,0.0390915684401989,0.842658877372742,-0.377467125654221,-0.383984982967377,0.733941793441772,-0.678202748298645,0.0370217636227608,0.439353883266449,-0.776844561100006,0.45108836889267,0.459863841533661,-0.763680875301361,0.453118711709976,0.751417815685272,-0.658667683601379,0.0390915684401989,0.439353883266449,-0.776844561100006,0.45108836889267,0.0253749005496502,-0.670775294303894,0.741226494312286,0.0449386797845364,-0.663225591182709,0.747069120407104,0.459863841533661,-0.763680875301361,0.453118711709976,0.0253749005496502,-0.670775294303894,0.741226494312286,-0.39739066362381,-0.389514148235321,0.830878674983978,-0.382382422685623,-0.383415549993515,0.840699851512909,0.0449386797845364,-0.663225591182709,0.747069120407104,-0.39739066362381,-0.389514148235321,0.830878674983978,-0.707112491130829,-3.02256885333918e-005,0.707101047039032,-0.70675790309906,0.000360145408194512,0.707455337047577,-0.382382422685623,-0.383415549993515,0.840699851512909,-0.707112491130829,-3.02256885333918e-005,0.707101047039032,-0.830853939056396,0.389492779970169,0.397463262081146,-0.839660346508026,0.384604603052139,0.383470922708511,-0.70675790309906,0.000360145408194512,0.707455337047577,-0.830853939056396,0.389492779970169,0.397463262081146,-0.741158902645111,0.670854270458221,-0.025261327624321,
- -0.745540499687195,0.665053367614746,-0.0432833880186081,-0.839660346508026,0.384604603052139,0.383470922708511,-0.741158902645111,0.670854270458221,-0.025261327624321,-0.451071441173553,0.776878297328949,-0.439311593770981,-0.451118499040604,0.766218781471252,-0.457603454589844,-0.745540499687195,0.665053367614746,-0.0432833880186081,-0.451071441173553,0.776878297328949,-0.439311593770981,-0.0370641276240349,0.678057551383972,-0.734073758125305,-0.0366299450397491,0.661981821060181,-0.748624265193939,-0.451118499040604,0.766218781471252,-0.457603454589844,-0.0370641276240349,0.678057551383972,-0.734073758125305,0.390411078929901,0.399993300437927,-0.829207122325897,0.386975198984146,0.381602346897125,-0.839422345161438,-0.0366299450397491,0.661981821060181,-0.748624265193939,0.390411078929901,0.399993300437927,-0.829207122325897,0.732028126716614,0.0503881871700287,-0.679408431053162,0.716637551784515,0.0132149625569582,-0.697320580482483,0.386975198984146,0.381602346897125,-0.839422345161438,0.679444670677185,-0.0502970851957798,-0.732000827789307,0.829150974750519,-0.400117814540863,-0.390402972698212,0.842658877372742,-0.377467125654221,-0.383984982967377,0.697403490543365,-0.013116686604917,-0.716558635234833,-0.70675790309906,0.000360145408194512,0.707455337047577,-0.839660346508026,0.384604603052139,0.383470922708511,-0.818307816982269,0.45045080780983,0.357024163007736,-0.713089644908905,0.0750951841473579,0.697039365768433,-0.382382422685623,-0.383415549993515,0.840699851512909,-0.70675790309906,0.000360145408194512,0.707455337047577,-0.713089644908905,0.0750951841473579,0.697039365768433,-0.410884946584702,-0.313542932271957,0.856075048446655,0.0449386797845364,-0.663225591182709,0.747069120407104,-0.382382422685623,-0.383415549993515,0.840699851512909,-0.410884946584702,-0.313542932271957,0.856075048446655,0.00707119610160589,-0.611174583435059,0.791464269161224,0.459863841533661,-0.763680875301361,0.453118711709976,0.0449386797845364,-0.663225591182709,0.747069120407104,0.00707119610160589,-0.611174583435059,0.791464269161224,
- 0.428827524185181,-0.738387107849121,0.520472407341003,0.751417815685272,-0.658667683601379,0.0390915684401989,0.459863841533661,-0.763680875301361,0.453118711709976,0.428827524185181,-0.738387107849121,0.520472407341003,0.741456925868988,-0.6609166264534,0.115891866385937,0.842658877372742,-0.377467125654221,-0.383984982967377,0.751417815685272,-0.658667683601379,0.0390915684401989,0.741456925868988,-0.6609166264534,0.115891866385937,0.861247479915619,-0.39947783946991,-0.314118087291718,0.697403490543365,-0.013116686604917,-0.716558635234833,0.842658877372742,-0.377467125654221,-0.383984982967377,0.861247479915619,-0.39947783946991,-0.314118087291718,0.838754117488861,-0.0708348751068115,-0.539883255958557,0.386975198984146,0.381602346897125,-0.839422345161438,0.716637551784515,0.0132149625569582,-0.697320580482483,0.539974987506866,0.0709498524665833,-0.83868533372879,0.45389723777771,0.364439398050308,-0.813118278980255,-0.0366299450397491,0.661981821060181,-0.748624265193939,0.386975198984146,0.381602346897125,-0.839422345161438,0.45389723777771,0.364439398050308,-0.813118278980255,0.0359464623034,0.662128388881683,-0.748527884483337,-0.451118499040604,0.766218781471252,-0.457603454589844,-0.0366299450397491,0.661981821060181,-0.748624265193939,0.0359464623034,0.662128388881683,-0.748527884483337,-0.385857492685318,0.789343953132629,-0.477546036243439,-0.745540499687195,0.665053367614746,-0.0432833880186081,-0.451118499040604,0.766218781471252,-0.457603454589844,-0.385857492685318,0.789343953132629,-0.477546036243439,-0.698596239089966,0.711806535720825,-0.0727652832865715,-0.839660346508026,0.384604603052139,0.383470922708511,-0.745540499687195,0.665053367614746,-0.0432833880186081,-0.698596239089966,0.711806535720825,-0.0727652832865715,-0.818307816982269,0.45045080780983,0.357024163007736,0.833173215389252,-0.38589158654213,-0.396118730306625,0.740777313709259,-0.670846462249756,0.0348427221179008,0.751285195350647,-0.659207284450531,0.0318798087537289,0.839150726795197,-0.375965982675552,-0.393033921718597,
- 0.740777313709259,-0.670846462249756,0.0348427221179008,0.444747149944305,-0.771776437759399,0.454489856958389,0.457897990942001,-0.766566157341003,0.450228631496429,0.751285195350647,-0.659207284450531,0.0318798087537289,0.444747149944305,-0.771776437759399,0.454489856958389,0.0311261396855116,-0.66603010892868,0.74527508020401,0.0429256297647953,-0.666646957397461,0.7441366314888,0.457897990942001,-0.766566157341003,0.450228631496429,0.0311261396855116,-0.66603010892868,0.74527508020401,-0.391303032636642,-0.384973347187042,0.835869193077087,-0.384758442640305,-0.386987119913101,0.837974905967712,0.0429256297647953,-0.666646957397461,0.7441366314888,-0.391303032636642,-0.384973347187042,0.835869193077087,-0.70712548494339,-3.87548652724945e-006,0.707088112831116,-0.707934498786926,-0.00105424481444061,0.706277251243591,-0.384758442640305,-0.386987119913101,0.837974905967712,-0.70712548494339,-3.87548652724945e-006,0.707088112831116,-0.835888504981995,0.384930908679962,0.391303896903992,-0.839782774448395,0.384737312793732,0.383069306612015,-0.707934498786926,-0.00105424481444061,0.706277251243591,-0.835888504981995,0.384930908679962,0.391303896903992,-0.745284140110016,0.666024565696716,-0.0310292914509773,-0.745405256748199,0.665155708789825,-0.0440339185297489,-0.839782774448395,0.384737312793732,0.383069306612015,-0.745284140110016,0.666024565696716,-0.0310292914509773,-0.454524487257004,0.771729946136475,-0.444792538881302,-0.450694799423218,0.766015350818634,-0.458361089229584,-0.745405256748199,0.665155708789825,-0.0440339185297489,-0.454524487257004,0.771729946136475,-0.444792538881302,-0.034777507185936,0.670806646347046,-0.740816473960876,-0.0315481051802635,0.659509360790253,-0.751034080982208,-0.450694799423218,0.766015350818634,-0.458361089229584,-0.034777507185936,0.670806646347046,-0.740816473960876,0.396185547113419,0.385948210954666,-0.833115220069885,0.393068641424179,0.375940084457397,-0.839146018028259,-0.0315481051802635,0.659509360790253,-0.751034080982208,0.396185547113419,0.385948210954666,-0.833115220069885,
- 0.723532915115356,0.026126341894269,-0.689795255661011,0.710073351860046,0.00370801240205765,-0.704118013381958,0.393068641424179,0.375940084457397,-0.839146018028259,0.689773440361023,-0.0261442176997662,-0.723553061485291,0.833173215389252,-0.38589158654213,-0.396118730306625,0.839150726795197,-0.375965982675552,-0.393033921718597,0.704112887382507,-0.0036691278219223,-0.710078656673431,-0.707934498786926,-0.00105424481444061,0.706277251243591,-0.839782774448395,0.384737312793732,0.383069306612015,-0.815680623054504,0.437622576951981,0.378354042768478,-0.700125932693481,0.0593896768987179,0.71154510974884,-0.384758442640305,-0.386987119913101,0.837974905967712,-0.707934498786926,-0.00105424481444061,0.706277251243591,-0.700125932693481,0.0593896768987179,0.71154510974884,-0.390527456998825,-0.327059626579285,0.86053478717804,0.0429256297647953,-0.666646957397461,0.7441366314888,-0.384758442640305,-0.386987119913101,0.837974905967712,-0.390527456998825,-0.327059626579285,0.86053478717804,0.0301532093435526,-0.61830335855484,0.785360872745514,0.457897990942001,-0.766566157341003,0.450228631496429,0.0429256297647953,-0.666646957397461,0.7441366314888,0.0301532093435526,-0.61830335855484,0.785360872745514,0.449211984872818,-0.73619818687439,0.506182610988617,0.751285195350647,-0.659207284450531,0.0318798087537289,0.457897990942001,-0.766566157341003,0.450228631496429,0.449211984872818,-0.73619818687439,0.506182610988617,0.749306738376617,-0.661338150501251,0.034223809838295,0.839150726795197,-0.375965982675552,-0.393033921718597,0.751285195350647,-0.659207284450531,0.0318798087537289,0.749306738376617,-0.661338150501251,0.034223809838295,0.816639363765717,-0.375432461500168,-0.438349962234497,0.704112887382507,-0.0036691278219223,-0.710078656673431,0.839150726795197,-0.375965982675552,-0.393033921718597,0.816639363765717,-0.375432461500168,-0.438349962234497,0.816021680831909,0.00122919445857406,-0.578020036220551,0.393068641424179,0.375940084457397,-0.839146018028259,0.710073351860046,0.00370801240205765,-0.704118013381958,
- 0.578077793121338,-0.00123260379768908,-0.815980732440948,0.438379526138306,0.37540802359581,-0.816634714603424,-0.0315481051802635,0.659509360790253,-0.751034080982208,0.393068641424179,0.375940084457397,-0.839146018028259,0.438379526138306,0.37540802359581,-0.816634714603424,0.0248453002423048,0.673599064350128,-0.738679349422455,-0.450694799423218,0.766015350818634,-0.458361089229584,-0.0315481051802635,0.659509360790253,-0.751034080982208,0.0248453002423048,0.673599064350128,-0.738679349422455,-0.401141375303268,0.793208420276642,-0.458154827356339,-0.745405256748199,0.665155708789825,-0.0440339185297489,-0.450694799423218,0.766015350818634,-0.458361089229584,-0.401141375303268,0.793208420276642,-0.458154827356339,-0.706217229366302,0.706238329410553,-0.0498472340404987,-0.839782774448395,0.384737312793732,0.383069306612015,-0.745405256748199,0.665155708789825,-0.0440339185297489,-0.706217229366302,0.706238329410553,-0.0498472340404987,-0.815680623054504,0.437622576951981,0.378354042768478,0.842560231685638,-0.376259654760361,-0.385384202003479,0.753925979137421,-0.655895531177521,0.0373710617423058,0.744555830955505,-0.665981352329254,0.0458858050405979,0.839742302894592,-0.38565781712532,-0.382231593132019,0.753925979137421,-0.655895531177521,0.0373710617423058,0.465876072645187,-0.760220050811768,0.452796787023544,0.44903638958931,-0.765910089015961,0.460160881280899,0.744555830955505,-0.665981352329254,0.0458858050405979,0.465876072645187,-0.760220050811768,0.452796787023544,0.0533361509442329,-0.659582257270813,0.749737560749054,0.0345742106437683,-0.660603582859039,0.749938428401947,0.44903638958931,-0.765910089015961,0.460160881280899,0.0533361509442329,-0.659582257270813,0.749737560749054,-0.373443484306335,-0.378667294979095,0.846847772598267,-0.3879354596138,-0.3802410364151,0.839596807956696,0.0345742106437683,-0.660603582859039,0.749938428401947,-0.373443484306335,-0.378667294979095,0.846847772598267,-0.707100450992584,9.70422888713074e-007,0.707112967967987,-0.704835891723633,0.00231634266674519,0.709366679191589,
- -0.3879354596138,-0.3802410364151,0.839596807956696,-0.707100450992584,9.70422888713074e-007,0.707112967967987,-0.846855759620667,0.378619700670242,0.37347349524498,-0.83634877204895,0.383751749992371,0.391478300094604,-0.704835891723633,0.00231634266674519,0.709366679191589,-0.846855759620667,0.378619700670242,0.37347349524498,-0.749739825725555,0.659584403038025,-0.0532806031405926,-0.747592866420746,0.663390159606934,-0.0319131314754486,-0.83634877204895,0.383751749992371,0.391478300094604,-0.749739825725555,0.659584403038025,-0.0532806031405926,-0.452783226966858,0.760246753692627,-0.465845763683319,-0.458878129720688,0.767503082752228,-0.447627007961273,-0.747592866420746,0.663390159606934,-0.0319131314754486,-0.452783226966858,0.760246753692627,-0.465845763683319,-0.0373820401728153,0.655827224254608,-0.753984868526459,-0.0456623248755932,0.666205048561096,-0.744369328022003,-0.458878129720688,0.767503082752228,-0.447627007961273,-0.0373820401728153,0.655827224254608,-0.753984868526459,0.385421723127365,0.376225978136063,-0.842558026313782,0.381588637828827,0.384863018989563,-0.840399086475372,-0.0456623248755932,0.666205048561096,-0.744369328022003,0.385421723127365,0.376225978136063,-0.842558026313782,0.715510606765747,0.0114484699442983,-0.698508083820343,0.704196512699127,-0.00328410393558443,-0.709997534751892,0.381588637828827,0.384863018989563,-0.840399086475372,0.698522984981537,-0.0113803241401911,-0.715497136116028,0.842560231685638,-0.376259654760361,-0.385384202003479,0.839742302894592,-0.38565781712532,-0.382231593132019,0.710000276565552,0.00333197182044387,-0.704193532466888,-0.704835891723633,0.00231634266674519,0.709366679191589,-0.83634877204895,0.383751749992371,0.391478300094604,-0.815588593482971,0.440596401691437,0.375086903572083,-0.701876699924469,0.0628949552774429,0.709516167640686,-0.3879354596138,-0.3802410364151,0.839596807956696,-0.704835891723633,0.00231634266674519,0.709366679191589,-0.701876699924469,0.0628949552774429,0.709516167640686,-0.393577754497528,-0.3240065574646,0.860300123691559,
- 0.0345742106437683,-0.660603582859039,0.749938428401947,-0.3879354596138,-0.3802410364151,0.839596807956696,-0.393577754497528,-0.3240065574646,0.860300123691559,0.0265441127121449,-0.616346001625061,0.787027895450592,0.44903638958931,-0.765910089015961,0.460160881280899,0.0345742106437683,-0.660603582859039,0.749938428401947,0.0265441127121449,-0.616346001625061,0.787027895450592,0.446110248565674,-0.735929667949677,0.509306669235229,0.744555830955505,-0.665981352329254,0.0458858050405979,0.44903638958931,-0.765910089015961,0.460160881280899,0.446110248565674,-0.735929667949677,0.509306669235229,0.752606511116028,-0.650554776191711,0.101793944835663,0.839742302894592,-0.38565781712532,-0.382231593132019,0.744555830955505,-0.665981352329254,0.0458858050405979,0.752606511116028,-0.650554776191711,0.101793944835663,0.863885819911957,-0.383313328027725,-0.326760023832321,0.710000276565552,0.00333197182044387,-0.704193532466888,0.839742302894592,-0.38565781712532,-0.382231593132019,0.863885819911957,-0.383313328027725,-0.326760023832321,0.826043009757996,-0.0166111197322607,-0.563362419605255,0.381588637828827,0.384863018989563,-0.840399086475372,0.704196512699127,-0.00328410393558443,-0.709997534751892,0.563423097133636,0.0165876299142838,-0.82600200176239,0.441964477300644,0.381169438362122,-0.812020480632782,-0.0456623248755932,0.666205048561096,-0.744369328022003,0.381588637828827,0.384863018989563,-0.840399086475372,0.441964477300644,0.381169438362122,-0.812020480632782,0.0217441525310278,0.673580288887024,-0.738794088363647,-0.458878129720688,0.767503082752228,-0.447627007961273,-0.0456623248755932,0.666205048561096,-0.744369328022003,0.0217441525310278,0.673580288887024,-0.738794088363647,-0.397829860448837,0.793180823326111,-0.461080729961395,-0.747592866420746,0.663390159606934,-0.0319131314754486,-0.458878129720688,0.767503082752228,-0.447627007961273,-0.397829860448837,0.793180823326111,-0.461080729961395,-0.704308032989502,0.707886695861816,-0.0533538050949574,-0.83634877204895,0.383751749992371,0.391478300094604,
- -0.747592866420746,0.663390159606934,-0.0319131314754486,-0.704308032989502,0.707886695861816,-0.0533538050949574,-0.815588593482971,0.440596401691437,0.375086903572083,0.848155915737152,-0.370588183403015,-0.378544688224792,0.756977558135986,-0.651801407337189,0.0462596192955971,0.747184455394745,-0.663406610488892,0.0400868505239487,0.839662551879883,-0.382994830608368,-0.385073900222778,0.756977558135986,-0.651801407337189,0.0462596192955971,0.465324848890305,-0.755584895610809,0.46104696393013,0.454506129026413,-0.766068577766418,0.454492092132568,0.747184455394745,-0.663406610488892,0.0400868505239487,0.465324848890305,-0.755584895610809,0.46104696393013,0.051268894225359,-0.654156446456909,0.754619717597961,0.0400269627571106,-0.663469970226288,0.74713134765625,0.454506129026413,-0.766068577766418,0.454492092132568,0.051268894225359,-0.654156446456909,0.754619717597961,-0.374119430780411,-0.374679833650589,0.848321616649628,-0.385141462087631,-0.383076608181,0.839594185352325,0.0400269627571106,-0.663469970226288,0.74713134765625,-0.374119430780411,-0.374679833650589,0.848321616649628,-0.696911692619324,0.0080481581389904,0.717111825942993,-0.707113564014435,5.84834333494655e-006,0.707099914550781,-0.385141462087631,-0.383076608181,0.839594185352325,-0.696911692619324,0.0080481581389904,0.717111825942993,-0.830659866333008,0.391355752944946,0.396036416292191,-0.83959972858429,0.383069336414337,0.38513645529747,-0.707113564014435,5.84834333494655e-006,0.707099914550781,-0.830659866333008,0.391355752944946,0.396036416292191,-0.739466845989227,0.672581911087036,-0.0286754257977009,-0.747133553028107,0.663471400737762,-0.0399653650820255,-0.83959972858429,0.383069336414337,0.38513645529747,-0.739466845989227,0.672581911087036,-0.0286754257977009,-0.447827965021133,0.776338279247284,-0.443563878536224,-0.454525232315063,0.766045451164246,-0.454511940479279,-0.747133553028107,0.663471400737762,-0.0399653650820255,-0.447827965021133,0.776338279247284,-0.443563878536224,-0.033842109143734,0.674722909927368,-0.737294852733612,
- -0.0400565341114998,0.663355767726898,-0.747231185436249,-0.454525232315063,0.766045451164246,-0.454511940479279,-0.033842109143734,0.674722909927368,-0.737294852733612,0.391559422016144,0.395346105098724,-0.830892741680145,0.385128170251846,0.383027285337448,-0.839622676372528,-0.0400565341114998,0.663355767726898,-0.747231185436249,0.391559422016144,0.395346105098724,-0.830892741680145,0.728320896625519,0.0379594676196575,-0.684184074401855,0.709589421749115,0.00307404715567827,-0.704608798027039,0.385128170251846,0.383027285337448,-0.839622676372528,0.684171974658966,-0.0379865542054176,-0.728330790996552,0.848155915737152,-0.370588183403015,-0.378544688224792,0.839662551879883,-0.382994830608368,-0.385073900222778,0.704585909843445,-0.0030770692974329,-0.70961207151413,-0.707113564014435,5.84834333494655e-006,0.707099914550781,-0.83959972858429,0.383069336414337,0.38513645529747,-0.816562473773956,0.447380810976028,0.364796191453934,-0.707984149456024,0.071101114153862,0.702640056610107,-0.385141462087631,-0.383076608181,0.839594185352325,-0.707113564014435,5.84834333494655e-006,0.707099914550781,-0.707984149456024,0.071101114153862,0.702640056610107,-0.403464376926422,-0.316875964403152,0.858374118804932,0.0400269627571106,-0.663469970226288,0.74713134765625,-0.385141462087631,-0.383076608181,0.839594185352325,-0.403464376926422,-0.316875964403152,0.858374118804932,0.0152944503352046,-0.612484633922577,0.790334522724152,0.454506129026413,-0.766068577766418,0.454492092132568,0.0400269627571106,-0.663469970226288,0.74713134765625,0.0152944503352046,-0.612484633922577,0.790334522724152,0.436272352933884,-0.73662406206131,0.516770124435425,0.747184455394745,-0.663406610488892,0.0400868505239487,0.454506129026413,-0.766068577766418,0.454492092132568,0.436272352933884,-0.73662406206131,0.516770124435425,0.746580958366394,-0.655978441238403,0.110946767032146,0.839662551879883,-0.382994830608368,-0.385073900222778,0.747184455394745,-0.663406610488892,0.0400868505239487,0.746580958366394,-0.655978441238403,0.110946767032146,
- 0.862967729568481,-0.392304092645645,-0.318408817052841,0.704585909843445,-0.0030770692974329,-0.70961207151413,0.839662551879883,-0.382994830608368,-0.385073900222778,0.862967729568481,-0.392304092645645,-0.318408817052841,0.835695028305054,-0.047333300113678,-0.547150433063507,0.385128170251846,0.383027285337448,-0.839622676372528,0.709589421749115,0.00307404715567827,-0.704608798027039,0.54719340801239,0.0472891665995121,-0.835669279098511,0.449828624725342,0.371828645467758,-0.812033116817474,-0.0400565341114998,0.663355767726898,-0.747231185436249,0.385128170251846,0.383027285337448,-0.839622676372528,0.449828624725342,0.371828645467758,-0.812033116817474,0.0309708621352911,0.66740494966507,-0.744050741195679,-0.454525232315063,0.766045451164246,-0.454511940479279,-0.0400565341114998,0.663355767726898,-0.747231185436249,0.0309708621352911,0.66740494966507,-0.744050741195679,-0.389910936355591,0.791631639003754,-0.470413446426392,-0.747133553028107,0.663471400737762,-0.0399653650820255,-0.454525232315063,0.766045451164246,-0.454511940479279,-0.389910936355591,0.791631639003754,-0.470413446426392,-0.700171947479248,0.711056768894196,-0.0644784495234489,-0.83959972858429,0.383069336414337,0.38513645529747,-0.747133553028107,0.663471400737762,-0.0399653650820255,-0.700171947479248,0.711056768894196,-0.0644784495234489,-0.816562473773956,0.447380810976028,0.364796191453934,0.842308461666107,-0.416325718164444,-0.342329353094101,0.685313582420349,-0.727976024150848,-0.019901106134057,0.6523197889328,-0.757190227508545,-0.0337909124791622,0.840652108192444,-0.422984272241592,-0.338213533163071,0.685313582420349,-0.727976024150848,-0.019901106134057,0.271158933639526,-0.917691946029663,0.290369212627411,0.333024710416794,-0.87499076128006,0.351405203342438,0.6523197889328,-0.757190227508545,-0.0337909124791622,0.271158933639526,-0.917691946029663,0.290369212627411,-0.108975499868393,-0.793853938579559,0.598264276981354,-0.0682176649570465,-0.762886822223663,0.642923057079315,0.333024710416794,-0.87499076128006,0.351405203342438,
- -0.108975499868393,-0.793853938579559,0.598264276981354,-0.474870532751083,-0.467978894710541,0.745314419269562,-0.420993745326996,-0.414820641279221,0.806652307510376,-0.0682176649570465,-0.762886822223663,0.642923057079315,-0.474870532751083,-0.467978894710541,0.745314419269562,-0.707091391086578,9.31854238217511e-009,0.707122206687927,-0.707101047039032,-8.42772715259343e-006,0.707112491130829,-0.420993745326996,-0.414820641279221,0.806652307510376,-0.707091391086578,9.31854238217511e-009,0.707122206687927,-0.845232486724854,0.380071729421616,0.375669449567795,-0.838371217250824,0.380363941192627,0.390457391738892,-0.707101047039032,-8.42772715259343e-006,0.707112491130829,-0.845232486724854,0.380071729421616,0.375669449567795,-0.748440802097321,0.661228358745575,-0.0511206611990929,-0.750393450260162,0.660270869731903,-0.0308557283133268,-0.838371217250824,0.380363941192627,0.390457391738892,-0.748440802097321,0.661228358745575,-0.0511206611990929,-0.451567709445953,0.762133896350861,-0.463937938213348,-0.46278777718544,0.766329646110535,-0.445607841014862,-0.750393450260162,0.660270869731903,-0.0308557283133268,-0.451567709445953,0.762133896350861,-0.463937938213348,-0.0360210984945297,0.657914996147156,-0.75223034620285,-0.0493537522852421,0.667394757270813,-0.743066847324371,-0.46278777718544,0.766329646110535,-0.445607841014862,-0.0360210984945297,0.657914996147156,-0.75223034620285,0.342690408229828,0.416751593351364,-0.841950953006744,0.338446885347366,0.423196315765381,-0.84045147895813,-0.0493537522852421,0.667394757270813,-0.743066847324371,0.342690408229828,0.416751593351364,-0.841950953006744,0.717670679092407,0.0141396811231971,-0.696239233016968,0.707382440567017,0.000326729321386665,-0.706830978393555,0.338446885347366,0.423196315765381,-0.84045147895813,0.699748337268829,-0.00962047185748816,-0.714324653148651,0.842308461666107,-0.416325718164444,-0.342329353094101,0.840652108192444,-0.422984272241592,-0.338213533163071,0.706896841526031,-0.000250705139478669,-0.707316696643829,-0.707101047039032,-8.42772715259343e-006,0.707112491130829,
- -0.838371217250824,0.380363941192627,0.390457391738892,-0.822888016700745,0.446535527706146,0.351370722055435,-0.707099854946136,-3.31022965838201e-005,0.707113742828369,-0.420993745326996,-0.414820641279221,0.806652307510376,-0.707101047039032,-8.42772715259343e-006,0.707112491130829,-0.707099854946136,-3.31022965838201e-005,0.707113742828369,-0.302644163370132,-0.563428699970245,0.768735706806183,-0.0682176649570465,-0.762886822223663,0.642923057079315,-0.420993745326996,-0.414820641279221,0.806652307510376,-0.302644163370132,-0.563428699970245,0.768735706806183,0.143620431423187,-0.817679703235626,0.557470321655273,0.333024710416794,-0.87499076128006,0.351405203342438,-0.0682176649570465,-0.762886822223663,0.642923057079315,0.143620431423187,-0.817679703235626,0.557470321655273,0.497954905033112,-0.841597557067871,0.209175914525986,0.6523197889328,-0.757190227508545,-0.0337909124791622,0.333024710416794,-0.87499076128006,0.351405203342438,0.497954905033112,-0.841597557067871,0.209175914525986,0.740106523036957,-0.666204988956451,-0.0917236432433128,0.840652108192444,-0.422984272241592,-0.338213533163071,0.6523197889328,-0.757190227508545,-0.0337909124791622,0.740106523036957,-0.666204988956451,-0.0917236432433128,0.831413745880127,-0.406858861446381,-0.378440260887146,0.706896841526031,-0.000250705139478669,-0.707316696643829,0.840652108192444,-0.422984272241592,-0.338213533163071,0.831413745880127,-0.406858861446381,-0.378440260887146,0.860461950302124,-0.00448771519586444,-0.509494960308075,0.338446885347366,0.423196315765381,-0.84045147895813,0.707382440567017,0.000326729321386665,-0.706830978393555,0.509594917297363,0.00446178624406457,-0.860402822494507,0.378471940755844,0.406835675239563,-0.831410646438599,-0.0493537522852421,0.667394757270813,-0.743066847324371,0.338446885347366,0.423196315765381,-0.84045147895813,0.378471940755844,0.406835675239563,-0.831410646438599,0.0225717704743147,0.648622393608093,-0.760775625705719,-0.46278777718544,0.766329646110535,-0.445607841014862,-0.0493537522852421,0.667394757270813,-0.743066847324371,
- 0.0225717704743147,0.648622393608093,-0.760775625705719,-0.394823640584946,0.775651276111603,-0.492421925067902,-0.750393450260162,0.660270869731903,-0.0308557283133268,-0.46278777718544,0.766329646110535,-0.445607841014862,-0.394823640584946,0.775651276111603,-0.492421925067902,-0.705799341201782,0.703298985958099,-0.0849576741456985,-0.838371217250824,0.380363941192627,0.390457391738892,-0.750393450260162,0.660270869731903,-0.0308557283133268,-0.705799341201782,0.703298985958099,-0.0849576741456985,-0.822888016700745,0.446535527706146,0.351370722055435,0.832746505737305,-0.39282751083374,-0.390153557062149,0.739242494106293,-0.672490239143372,0.0357382521033287,0.745792269706726,-0.664775192737579,0.0432180389761925,0.839751064777374,-0.384545713663101,-0.383331149816513,0.739242494106293,-0.672490239143372,0.0357382521033287,0.445782899856567,-0.773866355419159,0.449898362159729,0.451853692531586,-0.76612663269043,0.457031965255737,0.745792269706726,-0.664775192737579,0.0432180389761925,0.445782899856567,-0.773866355419159,0.449898362159729,0.0314430482685566,-0.67002147436142,0.741675496101379,0.0376701354980469,-0.662475407123566,0.748135805130005,0.451853692531586,-0.76612663269043,0.457031965255737,0.0314430482685566,-0.67002147436142,0.741675496101379,-0.393049091100693,-0.389118045568466,0.833126306533813,-0.386269211769104,-0.38212263584137,0.839510858058929,0.0376701354980469,-0.662475407123566,0.748135805130005,-0.393049091100693,-0.389118045568466,0.833126306533813,-0.707092940807343,5.18234037372167e-006,0.707120597362518,-0.707106113433838,2.8094038952986e-006,0.707107484340668,-0.386269211769104,-0.38212263584137,0.839510858058929,-0.707092940807343,5.18234037372167e-006,0.707120597362518,-0.8331578373909,0.389065593481064,0.393034279346466,-0.839525163173676,0.382064670324326,0.386295288801193,-0.707106113433838,2.8094038952986e-006,0.707107484340668,-0.8331578373909,0.389065593481064,0.393034279346466,-0.741690218448639,0.670011579990387,-0.0313036218285561,-0.748158752918243,0.662454903125763,-0.0375763922929764,
- -0.839525163173676,0.382064670324326,0.386295288801193,-0.741690218448639,0.670011579990387,-0.0313036218285561,-0.449921131134033,0.77383953332901,-0.445806473493576,-0.457052260637283,0.766098260879517,-0.451881259679794,-0.748158752918243,0.662454903125763,-0.0375763922929764,-0.449921131134033,0.77383953332901,-0.445806473493576,-0.0356487892568111,0.672435879707336,-0.739296436309814,-0.0431232154369354,0.664780616760254,-0.745793044567108,-0.457052260637283,0.766098260879517,-0.451881259679794,-0.0356487892568111,0.672435879707336,-0.739296436309814,0.390172511339188,0.392837882041931,-0.832732737064362,0.383344411849976,0.384505331516266,-0.839763522148132,-0.0431232154369354,0.664780616760254,-0.745793044567108,0.390172511339188,0.392837882041931,-0.832732737064362,0.724982738494873,0.0293657034635544,-0.688140749931335,0.712005317211151,0.00627189129590988,-0.702146053314209,0.383344411849976,0.384505331516266,-0.839763522148132,0.688153088092804,-0.0293625555932522,-0.724971234798431,0.832746505737305,-0.39282751083374,-0.390153557062149,0.839751064777374,-0.384545713663101,-0.383331149816513,0.702170550823212,-0.0062516494654119,-0.711981415748596,-0.707106113433838,2.8094038952986e-006,0.707107484340668,-0.839525163173676,0.382064670324326,0.386295288801193,-0.823314249515533,0.449288487434387,0.346833735704422,-0.707103669643402,-3.42718631145544e-005,0.707109808921814,-0.386269211769104,-0.38212263584137,0.839510858058929,-0.707106113433838,2.8094038952986e-006,0.707107484340668,-0.707103669643402,-3.42718631145544e-005,0.707109808921814,-0.34678453207016,-0.449302762746811,0.82332706451416,0.0376701354980469,-0.662475407123566,0.748135805130005,-0.386269211769104,-0.38212263584137,0.839510858058929,-0.34678453207016,-0.449302762746811,0.82332706451416,0.0867841392755508,-0.706225514411926,0.702647924423218,0.451853692531586,-0.76612663269043,0.457031965255737,0.0376701354980469,-0.662475407123566,0.748135805130005,0.0867841392755508,-0.706225514411926,0.702647924423218,0.490717798471451,-0.779285192489624,0.389757066965103,
- 0.745792269706726,-0.664775192737579,0.0432180389761925,0.451853692531586,-0.76612663269043,0.457031965255737,0.490717798471451,-0.779285192489624,0.389757066965103,0.757176160812378,-0.652520895004272,-0.0300137791782618,0.839751064777374,-0.384545713663101,-0.383331149816513,0.745792269706726,-0.664775192737579,0.0432180389761925,0.757176160812378,-0.652520895004272,-0.0300137791782618,0.817824125289917,-0.365242153406143,-0.444704234600067,0.702170550823212,-0.0062516494654119,-0.711981415748596,0.839751064777374,-0.384545713663101,-0.383331149816513,0.817824125289917,-0.365242153406143,-0.444704234600067,0.825450479984283,-0.0153074748814106,-0.564266979694366,0.383344411849976,0.384505331516266,-0.839763522148132,0.712005317211151,0.00627189129590988,-0.702146053314209,0.564358413219452,0.015275364741683,-0.825388550758362,0.444733440876007,0.365193903446198,-0.817829787731171,-0.0431232154369354,0.664780616760254,-0.745793044567108,0.383344411849976,0.384505331516266,-0.839763522148132,0.444733440876007,0.365193903446198,-0.817829787731171,0.0300039164721966,0.652512848377228,-0.757183432579041,-0.457052260637283,0.766098260879517,-0.451881259679794,-0.0431232154369354,0.664780616760254,-0.745793044567108,0.0300039164721966,0.652512848377228,-0.757183432579041,-0.389723300933838,0.779305577278137,-0.490712136030197,-0.748158752918243,0.662454903125763,-0.0375763922929764,-0.457052260637283,0.766098260879517,-0.451881259679794,-0.389723300933838,0.779305577278137,-0.490712136030197,-0.702656209468842,0.706212759017944,-0.0868203565478325,-0.839525163173676,0.382064670324326,0.386295288801193,-0.748158752918243,0.662454903125763,-0.0375763922929764,-0.702656209468842,0.706212759017944,-0.0868203565478325,-0.823314249515533,0.449288487434387,0.346833735704422,0.844650864601135,-0.376272201538086,-0.380767971277237,0.752610683441162,-0.656969487667084,0.0443632081151009,0.747192978858948,-0.663393378257751,0.0401488840579987,0.839617550373077,-0.383012712001801,-0.385153949260712,0.752610683441162,-0.656969487667084,0.0443632081151009,
- 0.460335791110992,-0.759934604167938,0.458901256322861,0.454479426145554,-0.766091763973236,0.45447963476181,0.747192978858948,-0.663393378257751,0.0401488840579987,0.460335791110992,-0.759934604167938,0.458901256322861,0.0460260473191738,-0.657765507698059,0.75181519985199,0.0400800928473473,-0.663469731807709,0.747128903865814,0.454479426145554,-0.766091763973236,0.45447963476181,0.0460260473191738,-0.657765507698059,0.75181519985199,-0.379218012094498,-0.377590209245682,0.844759941101074,-0.385154485702515,-0.383029758930206,0.839609622955322,0.0400800928473473,-0.663469731807709,0.747128903865814,-0.379218012094498,-0.377590209245682,0.844759941101074,-0.701518952846527,0.00528689147904515,0.712631106376648,-0.707127749919891,-1.01657096820418e-005,0.707085788249969,-0.385154485702515,-0.383029758930206,0.839609622955322,-0.701518952846527,0.00528689147904515,0.712631106376648,-0.834447085857391,0.388378202915192,0.390973687171936,-0.839623272418976,0.383009374141693,0.385144829750061,-0.707127749919891,-1.01657096820418e-005,0.707085788249969,-0.834447085857391,0.388378202915192,0.390973687171936,-0.742382884025574,0.669107496738434,-0.0340988114476204,-0.747146248817444,0.663451075553894,-0.0400623939931393,-0.839623272418976,0.383009374141693,0.385144829750061,-0.742382884025574,0.669107496738434,-0.0340988114476204,-0.450069695711136,0.772114932537079,-0.448637723922729,-0.454475730657578,0.766095876693726,-0.454476535320282,-0.747146248817444,0.663451075553894,-0.0400623939931393,-0.450069695711136,0.772114932537079,-0.448637723922729,-0.0358011685311794,0.669852435588837,-0.741630554199219,-0.0400747582316399,0.663413763046265,-0.747178852558136,-0.454475730657578,0.766095876693726,-0.454476535320282,-0.0358011685311794,0.669852435588837,-0.741630554199219,0.389514535665512,0.389746695756912,-0.834491431713104,0.385164946317673,0.383015632629395,-0.839611172676086,-0.0400747582316399,0.663413763046265,-0.747178852558136,0.389514535665512,0.389746695756912,-0.834491431713104,0.720793902873993,0.0205710902810097,-0.692844152450562,
- 0.711265921592712,0.00529845943674445,-0.702903151512146,0.385164946317673,0.383015632629395,-0.839611172676086,0.692842125892639,-0.0205141045153141,-0.720797479152679,0.844650864601135,-0.376272201538086,-0.380767971277237,0.839617550373077,-0.383012712001801,-0.385153949260712,0.702870786190033,-0.00527972541749477,-0.711298048496246,-0.707127749919891,-1.01657096820418e-005,0.707085788249969,-0.839623272418976,0.383009374141693,0.385144829750061,-0.815592467784882,0.440610855817795,0.375061392784119,-0.701889336109161,0.0629019513726234,0.70950311422348,-0.385154485702515,-0.383029758930206,0.839609622955322,-0.707127749919891,-1.01657096820418e-005,0.707085788249969,-0.701889336109161,0.0629019513726234,0.70950311422348,-0.393592268228531,-0.324027538299561,0.860285520553589,0.0400800928473473,-0.663469731807709,0.747128903865814,-0.385154485702515,-0.383029758930206,0.839609622955322,-0.393592268228531,-0.324027538299561,0.860285520553589,0.0265231542289257,-0.61633437871933,0.78703773021698,0.454479426145554,-0.766091763973236,0.45447963476181,0.0400800928473473,-0.663469731807709,0.747128903865814,0.0265231542289257,-0.61633437871933,0.78703773021698,0.446103692054749,-0.735951125621796,0.509281396865845,0.747192978858948,-0.663393378257751,0.0401488840579987,0.454479426145554,-0.766091763973236,0.45447963476181,0.446103692054749,-0.735951125621796,0.509281396865845,0.752615690231323,-0.650539338588715,0.101824201643467,0.839617550373077,-0.383012712001801,-0.385153949260712,0.747192978858948,-0.663393378257751,0.0401488840579987,0.752615690231323,-0.650539338588715,0.101824201643467,0.863873779773712,-0.383319705724716,-0.326784521341324,0.702870786190033,-0.00527972541749477,-0.711298048496246,0.839617550373077,-0.383012712001801,-0.385153949260712,0.863873779773712,-0.383319705724716,-0.326784521341324,0.826054215431213,-0.0166309345513582,-0.563345372676849,0.385164946317673,0.383015632629395,-0.839611172676086,0.711265921592712,0.00529845943674445,-0.702903151512146,0.563408851623535,0.0165750272572041,-0.826011955738068,
- 0.441912174224854,0.381224513053894,-0.812023103237152,-0.0400747582316399,0.663413763046265,-0.747178852558136,0.385164946317673,0.383015632629395,-0.839611172676086,0.441912174224854,0.381224513053894,-0.812023103237152,0.0217020250856876,0.673624813556671,-0.738754749298096,-0.454475730657578,0.766095876693726,-0.454476535320282,-0.0400747582316399,0.663413763046265,-0.747178852558136,0.0217020250856876,0.673624813556671,-0.738754749298096,-0.397794723510742,0.793204665184021,-0.461070030927658,-0.747146248817444,0.663451075553894,-0.0400623939931393,-0.454475730657578,0.766095876693726,-0.454476535320282,-0.397794723510742,0.793204665184021,-0.461070030927658,-0.704298138618469,0.707895338535309,-0.0533706359565258,-0.839623272418976,0.383009374141693,0.385144829750061,-0.747146248817444,0.663451075553894,-0.0400623939931393,-0.704298138618469,0.707895338535309,-0.0533706359565258,-0.815592467784882,0.440610855817795,0.375061392784119,0.844521522521973,-0.375919312238693,-0.381402850151062,0.753139615058899,-0.656443357467651,0.043162364512682,0.746689677238464,-0.663897097110748,0.0411729961633682,0.839679598808289,-0.383495777845383,-0.384537518024445,0.753139615058899,-0.656443357467651,0.043162364512682,0.461695820093155,-0.759696364402771,0.45792829990387,0.453450888395309,-0.766056060791016,0.455566048622131,0.746689677238464,-0.663897097110748,0.0411729961633682,0.461695820093155,-0.759696364402771,0.45792829990387,0.0477075316011906,-0.657811522483826,0.751670241355896,0.0389551445841789,-0.662956655025482,0.747643709182739,0.453450888395309,-0.766056060791016,0.455566048622131,0.0477075316011906,-0.657811522483826,0.751670241355896,-0.377839684486389,-0.377604842185974,0.845370769500732,-0.385682493448257,-0.382559478282928,0.839581608772278,0.0389551445841789,-0.662956655025482,0.747643709182739,-0.377839684486389,-0.377604842185974,0.845370769500732,-0.707116603851318,4.05248465540353e-006,0.707096934318542,-0.706497311592102,0.00070738943759352,0.707715332508087,-0.385682493448257,-0.382559478282928,0.839581608772278,
- -0.707116603851318,4.05248465540353e-006,0.707096934318542,-0.845409572124481,0.377569675445557,0.377787917852402,-0.8386270403862,0.383664399385452,0.386660367250443,-0.706497311592102,0.00070738943759352,0.707715332508087,-0.845409572124481,0.377569675445557,0.377787917852402,-0.75161600112915,0.657880306243896,-0.0476137846708298,-0.746843457221985,0.663906693458557,-0.0381149128079414,-0.8386270403862,0.383664399385452,0.386660367250443,-0.75161600112915,0.657880306243896,-0.0476137846708298,-0.45793417096138,0.759688436985016,-0.46170300245285,-0.45494869351387,0.766800463199615,-0.452811926603317,-0.746843457221985,0.663906693458557,-0.0381149128079414,-0.45793417096138,0.759688436985016,-0.46170300245285,-0.0431818850338459,0.656400740146637,-0.753175556659698,-0.0408305376768112,0.664298176765442,-0.746351659297943,-0.45494869351387,0.766800463199615,-0.452811926603317,-0.0431818850338459,0.656400740146637,-0.753175556659698,0.381424307823181,0.375956982374191,-0.844495058059692,0.38478022813797,0.383783519268036,-0.839437007904053,-0.0408305376768112,0.664298176765442,-0.746351659297943,0.381424307823181,0.375956982374191,-0.844495058059692,0.720433413982391,0.0198436416685581,-0.693240284919739,0.707587122917175,0.000571672397200018,-0.706625878810883,0.38478022813797,0.383783519268036,-0.839437007904053,0.693242847919464,-0.0198600813746452,-0.720430374145508,0.844521522521973,-0.375919312238693,-0.381402850151062,0.839679598808289,-0.383495777845383,-0.384537518024445,0.706622540950775,-0.000580831780098379,-0.707590520381927,-0.706497311592102,0.00070738943759352,0.707715332508087,-0.8386270403862,0.383664399385452,0.386660367250443,-0.816570937633514,0.447353094816208,0.364810913801193,-0.707992017269135,0.0711008161306381,0.702632308006287,-0.385682493448257,-0.382559478282928,0.839581608772278,-0.706497311592102,0.00070738943759352,0.707715332508087,-0.707992017269135,0.0711008161306381,0.702632308006287,-0.403457224369049,-0.316869020462036,0.858380019664764,0.0389551445841789,-0.662956655025482,0.747643709182739,
- -0.385682493448257,-0.382559478282928,0.839581608772278,-0.403457224369049,-0.316869020462036,0.858380019664764,0.0152963018044829,-0.61246520280838,0.79034960269928,0.453450888395309,-0.766056060791016,0.455566048622131,0.0389551445841789,-0.662956655025482,0.747643709182739,0.0152963018044829,-0.61246520280838,0.79034960269928,0.436291188001633,-0.73663455247879,0.516739428043365,0.746689677238464,-0.663897097110748,0.0411729961633682,0.453450888395309,-0.766056060791016,0.455566048622131,0.436291188001633,-0.73663455247879,0.516739428043365,0.746555685997009,-0.655999600887299,0.110990911722183,0.839679598808289,-0.383495777845383,-0.384537518024445,0.746689677238464,-0.663897097110748,0.0411729961633682,0.746555685997009,-0.655999600887299,0.110990911722183,0.862957954406738,-0.392316818237305,-0.318419963121414,0.706622540950775,-0.000580831780098379,-0.707590520381927,0.839679598808289,-0.383495777845383,-0.384537518024445,0.862957954406738,-0.392316818237305,-0.318419963121414,0.835693955421448,-0.0473109371960163,-0.547153830528259,0.38478022813797,0.383783519268036,-0.839437007904053,0.707587122917175,0.000571672397200018,-0.706625878810883,0.547174572944641,0.0472963377833366,-0.835681319236755,0.449808925390244,0.371823787689209,-0.812046110630035,-0.0408305376768112,0.664298176765442,-0.746351659297943,0.38478022813797,0.383783519268036,-0.839437007904053,0.449808925390244,0.371823787689209,-0.812046110630035,0.030991030856967,0.66741555929184,-0.744040250778198,-0.45494869351387,0.766800463199615,-0.452811926603317,-0.0408305376768112,0.664298176765442,-0.746351659297943,0.030991030856967,0.66741555929184,-0.744040250778198,-0.389915972948074,0.791637480258942,-0.470399349927902,-0.746843457221985,0.663906693458557,-0.0381149128079414,-0.45494869351387,0.766800463199615,-0.452811926603317,-0.389915972948074,0.791637480258942,-0.470399349927902,-0.700177848339081,0.711054384708405,-0.0644407868385315,-0.8386270403862,0.383664399385452,0.386660367250443,-0.746843457221985,0.663906693458557,-0.0381149128079414,
- -0.700177848339081,0.711054384708405,-0.0644407868385315,-0.816570937633514,0.447353094816208,0.364810913801193,0.844399452209473,-0.376671195030212,-0.38093090057373,0.752263963222504,-0.657381057739258,0.0441499054431915,0.747168123722076,-0.663423359394073,0.0401166826486588,0.839653611183167,-0.382999032735825,-0.385089069604874,0.752263963222504,-0.657381057739258,0.0441499054431915,0.45992186665535,-0.76032567024231,0.458668559789658,0.454495519399643,-0.766073703765869,0.454494088888168,0.747168123722076,-0.663423359394073,0.0401166826486588,0.45992186665535,-0.76032567024231,0.458668559789658,0.0456183291971684,-0.65807831287384,0.751566350460052,0.0400796383619308,-0.663469731807709,0.747128903865814,0.454495519399643,-0.766073703765869,0.454494088888168,0.0456183291971684,-0.65807831287384,0.751566350460052,-0.379682928323746,-0.377949386835098,0.844390451908112,-0.385155588388443,-0.383074283599854,0.839588761329651,0.0400796383619308,-0.663469731807709,0.747128903865814,-0.379682928323746,-0.377949386835098,0.844390451908112,-0.701876103878021,0.00501851830631495,0.712281465530396,-0.707103967666626,5.75951480641379e-006,0.707109570503235,-0.385155588388443,-0.383074283599854,0.839588761329651,-0.701876103878021,0.00501851830631495,0.712281465530396,-0.834741294384003,0.388120204210281,0.390601605176926,-0.839621722698212,0.383023470640183,0.385134279727936,-0.707103967666626,5.75951480641379e-006,0.707109570503235,-0.834741294384003,0.388120204210281,0.390601605176926,-0.742669463157654,0.668772339820862,-0.0344353169202805,-0.747160136699677,0.663439035415649,-0.0400053597986698,-0.839621722698212,0.383023470640183,0.385134279727936,-0.742669463157654,0.668772339820862,-0.0344353169202805,-0.450306266546249,0.771742880344391,-0.449040174484253,-0.454499155282974,0.766067981719971,-0.454500108957291,-0.747160136699677,0.663439035415649,-0.0400053597986698,-0.450306266546249,0.771742880344391,-0.449040174484253,-0.0359922423958778,0.66940039396286,-0.742029368877411,-0.040051456540823,0.663404881954193,-0.747188031673431,
- -0.454499155282974,0.766067981719971,-0.454500108957291,-0.0359922423958778,0.66940039396286,-0.742029368877411,0.389249801635742,0.389285415410995,-0.834830284118652,0.385122776031494,0.383027493953705,-0.839625120162964,-0.040051456540823,0.663404881954193,-0.747188031673431,0.389249801635742,0.389285415410995,-0.834830284118652,0.720021188259125,0.0190989729017019,-0.693689286708832,0.704558849334717,-0.00291136326268315,-0.709639668464661,0.385122776031494,0.383027493953705,-0.839625120162964,0.693694770336151,-0.0190848018974066,-0.720016181468964,0.844399452209473,-0.376671195030212,-0.38093090057373,0.839653611183167,-0.382999032735825,-0.385089069604874,0.709635674953461,0.00290668057277799,-0.704562842845917,-0.707103967666626,5.75951480641379e-006,0.707109570503235,-0.839621722698212,0.383023470640183,0.385134279727936,-0.816994845867157,0.448363363742828,0.36261510848999,-0.709423542022705,0.0724356770515442,0.701050102710724,-0.385155588388443,-0.383074283599854,0.839588761329651,-0.707103967666626,5.75951480641379e-006,0.707109570503235,-0.709423542022705,0.0724356770515442,0.701050102710724,-0.405629068613052,-0.315741389989853,0.857771754264832,0.0400796383619308,-0.663469731807709,0.747128903865814,-0.385155588388443,-0.383074283599854,0.839588761329651,-0.405629068613052,-0.315741389989853,0.857771754264832,0.0128667531535029,-0.611954867839813,0.790788114070892,0.454495519399643,-0.766073703765869,0.454494088888168,0.0400796383619308,-0.663469731807709,0.747128903865814,0.0128667531535029,-0.611954867839813,0.790788114070892,0.434150606393814,-0.737063884735107,0.517928659915924,0.747168123722076,-0.663423359394073,0.0401166826486588,0.454495519399643,-0.766073703765869,0.454494088888168,0.434150606393814,-0.737063884735107,0.517928659915924,0.745128750801086,-0.657349526882172,0.11258315294981,0.839653611183167,-0.382999032735825,-0.385089069604874,0.747168123722076,-0.663423359394073,0.0401166826486588,0.745128750801086,-0.657349526882172,0.11258315294981,0.862552464008331,-0.394360214471817,-0.316990911960602,
- 0.709635674953461,0.00290668057277799,-0.704562842845917,0.839653611183167,-0.382999032735825,-0.385089069604874,0.862552464008331,-0.394360214471817,-0.316990911960602,0.836918830871582,-0.0541496053338051,-0.544641852378845,0.385122776031494,0.383027493953705,-0.839625120162964,0.704558849334717,-0.00291136326268315,-0.709639668464661,0.544633090496063,0.0541333816945553,-0.836925566196442,0.45120170712471,0.36963564157486,-0.812272369861603,-0.040051456540823,0.663404881954193,-0.747188031673431,0.385122776031494,0.383027493953705,-0.839625120162964,0.45120170712471,0.36963564157486,-0.812272369861603,0.032601572573185,0.665964365005493,-0.745270788669586,-0.454499155282974,0.766067981719971,-0.454500108957291,-0.040051456540823,0.663404881954193,-0.747188031673431,0.032601572573185,0.665964365005493,-0.745270788669586,-0.388611644506454,0.791049778461456,-0.472462892532349,-0.747160136699677,0.663439035415649,-0.0400053597986698,-0.454499155282974,0.766067981719971,-0.454500108957291,-0.388611644506454,0.791049778461456,-0.472462892532349,-0.699582934379578,0.711408376693726,-0.0669464096426964,-0.839621722698212,0.383023470640183,0.385134279727936,-0.747160136699677,0.663439035415649,-0.0400053597986698,-0.699582934379578,0.711408376693726,-0.0669464096426964,-0.816994845867157,0.448363363742828,0.36261510848999,0.844678938388824,-0.371829569339752,-0.385045617818832,0.713397920131683,-0.70073276758194,0.00608242908492684,0.692489564418793,-0.721424639225006,0.0021821625996381,0.839840173721313,-0.386681854724884,-0.380979835987091,0.713397920131683,-0.70073276758194,0.00608242908492684,0.342233091592789,-0.863624691963196,0.370174288749695,0.354611277580261,-0.85361111164093,0.381574213504791,0.692489564418793,-0.721424639225006,0.0021821625996381,0.342233091592789,-0.863624691963196,0.370174288749695,-0.0550465919077396,-0.739276170730591,0.671148717403412,-0.0488842353224754,-0.733952879905701,0.677438974380493,0.354611277580261,-0.85361111164093,0.381574213504791,-0.0550465919077396,-0.739276170730591,0.671148717403412,
- -0.4384885430336,-0.424100428819656,0.792380392551422,-0.426717609167099,-0.413564443588257,0.804286360740662,-0.0488842353224754,-0.733952879905701,0.677438974380493,-0.4384885430336,-0.424100428819656,0.792380392551422,-0.707100927829742,7.37415462026547e-007,0.707112729549408,-0.703377246856689,0.0034498528111726,0.710808396339417,-0.426717609167099,-0.413564443588257,0.804286360740662,-0.707100927829742,7.37415462026547e-007,0.707112729549408,-0.850431799888611,0.377360671758652,0.366557985544205,-0.83439040184021,0.384498536586761,0.394909411668777,-0.703377246856689,0.0034498528111726,0.710808396339417,-0.850431799888611,0.377360671758652,0.366557985544205,-0.750712394714355,0.657853603363037,-0.0604944415390491,-0.747332394123077,0.663867294788361,-0.0278298184275627,-0.83439040184021,0.384498536586761,0.394909411668777,-0.750712394714355,0.657853603363037,-0.0604944415390491,-0.451791197061539,0.757082521915436,-0.471922308206558,-0.460127890110016,0.768753826618195,-0.444184571504593,-0.747332394123077,0.663867294788361,-0.0278298184275627,-0.451791197061539,0.757082521915436,-0.471922308206558,-0.0361782610416412,0.651440560817719,-0.757836699485779,-0.0472026318311691,0.668143093585968,-0.742533981800079,-0.460127890110016,0.768753826618195,-0.444184571504593,-0.0361782610416412,0.651440560817719,-0.757836699485779,0.385118514299393,0.371843427419662,-0.844639718532562,0.380906522274017,0.386551141738892,-0.839933574199677,-0.0472026318311691,0.668143093585968,-0.742533981800079,0.385118514299393,0.371843427419662,-0.844639718532562,0.721222460269928,0.0213820263743401,-0.692373514175415,0.705443680286407,-0.00192120322026312,-0.708763360977173,0.380906522274017,0.386551141738892,-0.839933574199677,0.692372858524323,-0.0213872380554676,-0.721222877502441,0.844678938388824,-0.371829569339752,-0.385045617818832,0.839840173721313,-0.386681854724884,-0.380979835987091,0.708765923976898,0.00193226884584874,-0.705441176891327,-0.703377246856689,0.0034498528111726,0.710808396339417,-0.83439040184021,0.384498536586761,0.394909411668777,
- -0.815571665763855,0.440630584955215,0.375083178281784,-0.701896667480469,0.0629135742783546,0.709494829177856,-0.426717609167099,-0.413564443588257,0.804286360740662,-0.703377246856689,0.0034498528111726,0.710808396339417,-0.701896667480469,0.0629135742783546,0.709494829177856,-0.385274052619934,-0.38182806968689,0.840101897716522,-0.0488842353224754,-0.733952879905701,0.677438974380493,-0.426717609167099,-0.413564443588257,0.804286360740662,-0.385274052619934,-0.38182806968689,0.840101897716522,0.0650316253304482,-0.745035648345947,0.663846909999847,0.354611277580261,-0.85361111164093,0.381574213504791,-0.0488842353224754,-0.733952879905701,0.677438974380493,0.0650316253304482,-0.745035648345947,0.663846909999847,0.466258585453033,-0.819709300994873,0.332685261964798,0.692489564418793,-0.721424639225006,0.0021821625996381,0.354611277580261,-0.85361111164093,0.381574213504791,0.466258585453033,-0.819709300994873,0.332685261964798,0.735142409801483,-0.676531076431274,-0.043258510529995,0.839840173721313,-0.386681854724884,-0.380979835987091,0.692489564418793,-0.721424639225006,0.0021821625996381,0.735142409801483,-0.676531076431274,-0.043258510529995,0.86387836933136,-0.383313477039337,-0.326779574155808,0.708765923976898,0.00193226884584874,-0.705441176891327,0.839840173721313,-0.386681854724884,-0.380979835987091,0.86387836933136,-0.383313477039337,-0.326779574155808,0.826048791408539,-0.0166001468896866,-0.563354134559631,0.380906522274017,0.386551141738892,-0.839933574199677,0.705443680286407,-0.00192120322026312,-0.708763360977173,0.563383519649506,0.0166113879531622,-0.82602846622467,0.441949248313904,0.381179630756378,-0.812024056911469,-0.0472026318311691,0.668143093585968,-0.742533981800079,0.380906522274017,0.386551141738892,-0.839933574199677,0.441949248313904,0.381179630756378,-0.812024056911469,0.0217453371733427,0.67359060049057,-0.738784790039063,-0.460127890110016,0.768753826618195,-0.444184571504593,-0.0472026318311691,0.668143093585968,-0.742533981800079,0.0217453371733427,0.67359060049057,-0.738784790039063,
- -0.397833108901978,0.79318380355835,-0.461072891950607,-0.747332394123077,0.663867294788361,-0.0278298184275627,-0.460127890110016,0.768753826618195,-0.444184571504593,-0.397833108901978,0.79318380355835,-0.461072891950607,-0.704323887825012,0.707871198654175,-0.0533491410315037,-0.83439040184021,0.384498536586761,0.394909411668777,-0.747332394123077,0.663867294788361,-0.0278298184275627,-0.704323887825012,0.707871198654175,-0.0533491410315037,-0.815571665763855,0.440630584955215,0.375083178281784,0.833911955356598,-0.392014563083649,-0.388478487730026,0.740065932273865,-0.671428918838501,0.0385429300367832,0.750272512435913,-0.659967303276062,0.0391681045293808,0.841758787631989,-0.379009962081909,-0.384439438581467,0.740065932273865,-0.671428918838501,0.0385429300367832,0.446343332529068,-0.771700918674469,0.453051179647446,0.458428829908371,-0.764570653438568,0.45307245850563,0.750272512435913,-0.659967303276062,0.0391681045293808,0.446343332529068,-0.771700918674469,0.453051179647446,0.0324330441653728,-0.66694563627243,0.744400203227997,0.0436395332217216,-0.66376519203186,0.746666848659515,0.458428829908371,-0.764570653438568,0.45307245850563,0.0324330441653728,-0.66694563627243,0.744400203227997,-0.391007512807846,-0.38606521487236,0.835503935813904,-0.383351504802704,-0.383815854787827,0.840075612068176,0.0436395332217216,-0.66376519203186,0.746666848659515,-0.391007512807846,-0.38606521487236,0.835503935813904,-0.707107841968536,2.22544372263656e-006,0.70710563659668,-0.706989645957947,0.000143000856041908,0.707223892211914,-0.383351504802704,-0.383815854787827,0.840075612068176,-0.707107841968536,2.22544372263656e-006,0.70710563659668,-0.835531532764435,0.386055737733841,0.390957653522491,-0.839690625667572,0.384286910295486,0.383722752332687,-0.706989645957947,0.000143000856041908,0.707223892211914,-0.835531532764435,0.386055737733841,0.390957653522491,-0.744424223899841,0.666923642158508,-0.0323300287127495,-0.74587881565094,0.6647127866745,-0.042681984603405,-0.839690625667572,0.384286910295486,0.383722752332687,
- -0.744424223899841,0.666923642158508,-0.0323300287127495,-0.453067481517792,0.771681606769562,-0.446360260248184,-0.451797515153885,0.766139388084412,-0.457066118717194,-0.74587881565094,0.6647127866745,-0.042681984603405,-0.453067481517792,0.771681606769562,-0.446360260248184,-0.0384466610848904,0.671370685100555,-0.740123867988586,-0.0372635424137115,0.662258088588715,-0.748348474502563,-0.451797515153885,0.766139388084412,-0.457066118717194,-0.0384466610848904,0.671370685100555,-0.740123867988586,0.388496041297913,0.392074972391129,-0.833875358104706,0.386550277471542,0.381840139627457,-0.839509963989258,-0.0372635424137115,0.662258088588715,-0.748348474502563,0.388496041297913,0.392074972391129,-0.833875358104706,0.723009645938873,0.0250226818025112,-0.690384685993195,0.71393346786499,0.00905629061162472,-0.700154960155487,0.386550277471542,0.381840139627457,-0.839509963989258,0.690364480018616,-0.0250236541032791,-0.723028838634491,0.833911955356598,-0.392014563083649,-0.388478487730026,0.841758787631989,-0.379009962081909,-0.384439438581467,0.700140953063965,-0.00903858710080385,-0.713947474956512,-0.706989645957947,0.000143000856041908,0.707223892211914,-0.839690625667572,0.384286910295486,0.383722752332687,-0.81589686870575,0.444577276706696,0.369679987430573,-0.704974949359894,0.0676225498318672,0.706001102924347,-0.383351504802704,-0.383815854787827,0.840075612068176,-0.706989645957947,0.000143000856041908,0.707223892211914,-0.704974949359894,0.0676225498318672,0.706001102924347,-0.398718297481537,-0.319846600294113,0.85948920249939,0.0436395332217216,-0.66376519203186,0.746666848659515,-0.383351504802704,-0.383815854787827,0.840075612068176,-0.398718297481537,-0.319846600294113,0.85948920249939,0.020694462582469,-0.613929569721222,0.789089441299438,0.458428829908371,-0.764570653438568,0.45307245850563,0.0436395332217216,-0.66376519203186,0.746666848659515,0.020694462582469,-0.613929569721222,0.789089441299438,0.441005885601044,-0.736073791980743,0.513526320457459,0.750272512435913,-0.659967303276062,0.0391681045293808,
- 0.458428829908371,-0.764570653438568,0.45307245850563,0.441005885601044,-0.736073791980743,0.513526320457459,0.749517858028412,-0.653264760971069,0.107089877128601,0.841758787631989,-0.379009962081909,-0.384439438581467,0.750272512435913,-0.659967303276062,0.0391681045293808,0.749517858028412,-0.653264760971069,0.107089877128601,0.863615095615387,-0.387954771518707,-0.321962743997574,0.700140953063965,-0.00903858710080385,-0.713947474956512,0.841758787631989,-0.379009962081909,-0.384439438581467,0.863615095615387,-0.387954771518707,-0.321962743997574,0.83198869228363,-0.0325754657387733,-0.553835391998291,0.386550277471542,0.381840139627457,-0.839509963989258,0.71393346786499,0.00905629061162472,-0.700154960155487,0.553883492946625,0.0325368084013462,-0.831958174705505,0.446443915367126,0.376383274793625,-0.811802625656128,-0.0372635424137115,0.662258088588715,-0.748348474502563,0.386550277471542,0.381840139627457,-0.839509963989258,0.446443915367126,0.376383274793625,-0.811802625656128,0.0269608665257692,0.670554637908936,-0.741370141506195,-0.451797515153885,0.766139388084412,-0.457066118717194,-0.0372635424137115,0.662258088588715,-0.748348474502563,0.0269608665257692,0.670554637908936,-0.741370141506195,-0.3932925760746,0.792627573013306,-0.465899735689163,-0.74587881565094,0.6647127866745,-0.042681984603405,-0.451797515153885,0.766139388084412,-0.457066118717194,-0.3932925760746,0.792627573013306,-0.465899735689163,-0.701794445514679,0.709911167621613,-0.0592510998249054,-0.839690625667572,0.384286910295486,0.383722752332687,-0.74587881565094,0.6647127866745,-0.042681984603405,-0.701794445514679,0.709911167621613,-0.0592510998249054,-0.81589686870575,0.444577276706696,0.369679987430573,0.844928681850433,-0.37589618563652,-0.380522847175598,0.752858638763428,-0.656679213047028,0.044454425573349,0.747146546840668,-0.663450419902802,0.0400690212845802,0.839642465114594,-0.383015066385269,-0.385097235441208,0.752858638763428,-0.656679213047028,0.044454425573349,0.460614532232285,-0.759677588939667,0.459047049283981,
- 0.454492270946503,-0.766079783439636,0.454487144947052,0.747146546840668,-0.663450419902802,0.0400690212845802,0.460614532232285,-0.759677588939667,0.459047049283981,0.0463268868625164,-0.657519459724426,0.752012014389038,0.0400977097451687,-0.663443386554718,0.747151255607605,0.454492270946503,-0.766079783439636,0.454487144947052,0.0463268868625164,-0.657519459724426,0.752012014389038,-0.37893083691597,-0.377423644065857,0.844963252544403,-0.385149091482162,-0.383044511079788,0.839605331420898,0.0400977097451687,-0.663443386554718,0.747151255607605,-0.37893083691597,-0.377423644065857,0.844963252544403,-0.701279759407043,0.00544175831601024,0.71286541223526,-0.707131803035736,-3.78213189833332e-005,0.70708167552948,-0.385149091482162,-0.383044511079788,0.839605331420898,-0.701279759407043,0.00544175831601024,0.71286541223526,-0.834194898605347,0.388626575469971,0.391265094280243,-0.839628040790558,0.383030116558075,0.385113954544067,-0.707131803035736,-3.78213189833332e-005,0.70708167552948,-0.834194898605347,0.388626575469971,0.391265094280243,-0.742189586162567,0.669340014457703,-0.0337401852011681,-0.747145533561707,0.663452923297882,-0.0400466620922089,-0.839628040790558,0.383030116558075,0.385113954544067,-0.742189586162567,0.669340014457703,-0.0337401852011681,-0.449905157089233,0.772374153137207,-0.448356449604034,-0.454476296901703,0.766088426113129,-0.454488456249237,-0.747145533561707,0.663452923297882,-0.0400466620922089,-0.449905157089233,0.772374153137207,-0.448356449604034,-0.0356504619121552,0.670095682144165,-0.741418063640594,-0.040071114897728,0.663412809371948,-0.747179806232452,-0.454476296901703,0.766088426113129,-0.454488456249237,-0.0356504619121552,0.670095682144165,-0.741418063640594,0.389630943536758,0.390080720186234,-0.834281086921692,0.385133415460587,0.38303554058075,-0.839616656303406,-0.040071114897728,0.663412809371948,-0.747179806232452,0.389630943536758,0.390080720186234,-0.834281086921692,0.72130686044693,0.02152194455266,-0.692281186580658,0.702889084815979,-0.00470864959061146,-0.711284041404724,
- 0.385133415460587,0.38303554058075,-0.839616656303406,0.692301630973816,-0.0215088874101639,-0.721287667751312,0.844928681850433,-0.37589618563652,-0.380522847175598,0.839642465114594,-0.383015066385269,-0.385097235441208,0.711330652236938,0.00474780891090631,-0.702841520309448,-0.707131803035736,-3.78213189833332e-005,0.70708167552948,-0.839628040790558,0.383030116558075,0.385113954544067,-0.815603315830231,0.440600782632828,0.375049471855164,-0.701914429664612,0.062909297645092,0.709477603435516,-0.385149091482162,-0.383044511079788,0.839605331420898,-0.707131803035736,-3.78213189833332e-005,0.70708167552948,-0.701914429664612,0.062909297645092,0.709477603435516,-0.393565505743027,-0.32404550909996,0.860291063785553,0.0400977097451687,-0.663443386554718,0.747151255607605,-0.385149091482162,-0.383044511079788,0.839605331420898,-0.393565505743027,-0.32404550909996,0.860291063785553,0.026553750038147,-0.6162970662117,0.787065982818604,0.454492270946503,-0.766079783439636,0.454487144947052,0.0400977097451687,-0.663443386554718,0.747151255607605,0.026553750038147,-0.6162970662117,0.787065982818604,0.446089833974838,-0.735943853855133,0.509303987026215,0.747146546840668,-0.663450419902802,0.0400690212845802,0.454492270946503,-0.766079783439636,0.454487144947052,0.446089833974838,-0.735943853855133,0.509303987026215,0.752583920955658,-0.650584876537323,0.101767957210541,0.839642465114594,-0.383015066385269,-0.385097235441208,0.747146546840668,-0.663450419902802,0.0400690212845802,0.752583920955658,-0.650584876537323,0.101767957210541,0.863864243030548,-0.383369386196136,-0.326751321554184,0.711330652236938,0.00474780891090631,-0.702841520309448,0.839642465114594,-0.383015066385269,-0.385097235441208,0.863864243030548,-0.383369386196136,-0.326751321554184,0.826134085655212,-0.0166083164513111,-0.563228785991669,0.385133415460587,0.38303554058075,-0.839616656303406,0.702889084815979,-0.00470864959061146,-0.711284041404724,0.563281834125519,0.0166582576930523,-0.826096892356873,0.441911399364471,0.381226658821106,-0.812022507190704,
- -0.040071114897728,0.663412809371948,-0.747179806232452,0.385133415460587,0.38303554058075,-0.839616656303406,0.441911399364471,0.381226658821106,-0.812022507190704,0.0217543300241232,0.6735919713974,-0.738783180713654,-0.454476296901703,0.766088426113129,-0.454488456249237,-0.040071114897728,0.663412809371948,-0.747179806232452,0.0217543300241232,0.6735919713974,-0.738783180713654,-0.397807389497757,0.793208658695221,-0.461052387952805,-0.747145533561707,0.663452923297882,-0.0400466620922089,-0.454476296901703,0.766088426113129,-0.454488456249237,-0.397807389497757,0.793208658695221,-0.461052387952805,-0.704307794570923,0.707889020442963,-0.053326454013586,-0.839628040790558,0.383030116558075,0.385113954544067,-0.747145533561707,0.663452923297882,-0.0400466620922089,-0.704307794570923,0.707889020442963,-0.053326454013586,-0.815603315830231,0.440600782632828,0.375049471855164,0.84387469291687,-0.377460926771164,-0.38131195306778,0.751570999622345,-0.658202171325684,0.0437129884958267,0.747126877307892,-0.663471639156342,0.040085680782795,0.839631855487823,-0.38303679227829,-0.385099142789841,0.751570999622345,-0.658202171325684,0.0437129884958267,0.459221392869949,-0.761000096797943,0.458251625299454,0.454499930143356,-0.766068756580353,0.454498052597046,0.747126877307892,-0.663471639156342,0.040085680782795,0.459221392869949,-0.761000096797943,0.458251625299454,0.0448733158409595,-0.658709049224854,0.751058399677277,0.0401037856936455,-0.663455426692963,0.747140228748322,0.454499930143356,-0.766068756580353,0.454498052597046,0.0448733158409595,-0.658709049224854,0.751058399677277,-0.380333691835403,-0.37847512960434,0.843861877918243,-0.385113894939423,-0.383071541786194,0.839609205722809,0.0401037856936455,-0.663455426692963,0.747140228748322,-0.380333691835403,-0.37847512960434,0.843861877918243,-0.702570557594299,0.00446330197155476,0.711600065231323,-0.707110524177551,-6.41131691736518e-006,0.707102954387665,-0.385113894939423,-0.383071541786194,0.839609205722809,-0.702570557594299,0.00446330197155476,0.711600065231323,
- -0.83531266450882,0.38760033249855,0.389895886182785,-0.839620292186737,0.38302293419838,0.385137915611267,-0.707110524177551,-6.41131691736518e-006,0.707102954387665,-0.83531266450882,0.38760033249855,0.389895886182785,-0.743184983730316,0.66816121339798,-0.0351665392518044,-0.747190237045288,0.66340446472168,-0.0400153137743473,-0.839620292186737,0.38302293419838,0.385137915611267,-0.743184983730316,0.66816121339798,-0.0351665392518044,-0.450734317302704,0.771077990531921,-0.449752449989319,-0.454500675201416,0.766065835952759,-0.45450222492218,-0.747190237045288,0.66340446472168,-0.0400153137743473,-0.450734317302704,0.771077990531921,-0.449752449989319,-0.0363796129822731,0.668627262115479,-0.742707252502441,-0.0399832352995873,0.663443148136139,-0.747157514095306,-0.454500675201416,0.766065835952759,-0.45450222492218,-0.0363796129822731,0.668627262115479,-0.742707252502441,0.388881653547287,0.388533622026443,-0.835351824760437,0.385144799947739,0.383019953966141,-0.839618504047394,-0.0399832352995873,0.663443148136139,-0.747157514095306,0.388881653547287,0.388533622026443,-0.835351824760437,0.71861058473587,0.0165631398558617,-0.695215404033661,0.708270668983459,0.00140681012999266,-0.705939590930939,0.385144799947739,0.383019953966141,-0.839618504047394,0.695175647735596,-0.0166197642683983,-0.71864777803421,0.84387469291687,-0.377460926771164,-0.38131195306778,0.839631855487823,-0.38303679227829,-0.385099142789841,0.705947518348694,-0.00139803567435592,-0.708262801170349,-0.707110524177551,-6.41131691736518e-006,0.707102954387665,-0.839620292186737,0.38302293419838,0.385137915611267,-0.815597534179688,0.44058832526207,0.375076740980148,-0.701889634132385,0.062943235039711,0.709499180316925,-0.385113894939423,-0.383071541786194,0.839609205722809,-0.707110524177551,-6.41131691736518e-006,0.707102954387665,-0.701889634132385,0.062943235039711,0.709499180316925,-0.393593311309814,-0.324064970016479,0.860270977020264,0.0401037856936455,-0.663455426692963,0.747140228748322,-0.385113894939423,-0.383071541786194,0.839609205722809,
- -0.393593311309814,-0.324064970016479,0.860270977020264,0.0265789031982422,-0.616289019584656,0.787071466445923,0.454499930143356,-0.766068756580353,0.454498052597046,0.0401037856936455,-0.663455426692963,0.747140228748322,0.0265789031982422,-0.616289019584656,0.787071466445923,0.446104228496552,-0.735948503017426,0.509284675121307,0.747126877307892,-0.663471639156342,0.040085680782795,0.454499930143356,-0.766068756580353,0.454498052597046,0.446104228496552,-0.735948503017426,0.509284675121307,0.752548933029175,-0.650611996650696,0.101853117346764,0.839631855487823,-0.38303679227829,-0.385099142789841,0.747126877307892,-0.663471639156342,0.040085680782795,0.752548933029175,-0.650611996650696,0.101853117346764,0.863857626914978,-0.383356630802155,-0.32678410410881,0.705947518348694,-0.00139803567435592,-0.708262801170349,0.839631855487823,-0.38303679227829,-0.385099142789841,0.863857626914978,-0.383356630802155,-0.32678410410881,0.826106786727905,-0.0166351664811373,-0.563268005847931,0.385144799947739,0.383019953966141,-0.839618504047394,0.708270668983459,0.00140681012999266,-0.705939590930939,0.563368678092957,0.0166423097252846,-0.826038002967834,0.441891849040985,0.38124206662178,-0.812025785446167,-0.0399832352995873,0.663443148136139,-0.747157514095306,0.385144799947739,0.383019953966141,-0.839618504047394,0.441891849040985,0.38124206662178,-0.812025785446167,0.0217064972966909,0.673687815666199,-0.738697171211243,-0.454500675201416,0.766065835952759,-0.45450222492218,-0.0399832352995873,0.663443148136139,-0.747157514095306,0.0217064972966909,0.673687815666199,-0.738697171211243,-0.397821724414825,0.793189823627472,-0.461072534322739,-0.747190237045288,0.66340446472168,-0.0400153137743473,-0.454500675201416,0.766065835952759,-0.45450222492218,-0.397821724414825,0.793189823627472,-0.461072534322739,-0.70429527759552,0.707892239093781,-0.0534483678638935,-0.839620292186737,0.38302293419838,0.385137915611267,-0.747190237045288,0.66340446472168,-0.0400153137743473,-0.70429527759552,0.707892239093781,-0.0534483678638935,
- -0.815597534179688,0.44058832526207,0.375076740980148,-0.70711225271225,-6.47454726276919e-006,0.707101345062256,-0.70711225271225,-6.50163701720885e-006,0.707101285457611,-0.707105875015259,-1.72139225469437e-005,0.707107663154602,-0.707133054733276,2.86392860289197e-005,0.707080543041229,-0.707110524177551,-9.4490224000765e-006,0.707103133201599,-0.707112312316895,-6.33915260550566e-006,0.707101285457611,-0.707101821899414,-2.39868422795553e-005,0.707111716270447,-0.707141280174255,4.24720856244676e-005,0.707072257995605,-0.707084357738495,-5.3459640184883e-005,0.707129240036011,-0.706920742988586,-0.00032918676151894,0.70729273557663,-0.707089602947235,-4.47453385277186e-005,0.707124054431915,-0.707120001316071,6.52857852401212e-006,0.707093596458435,8.062890515248e-007,-1.31487738030955e-007,1,9.67115511230077e-007,-1.06145897404986e-007,1,8.52173002385825e-007,-6.39400411728275e-007,1,6.15569888395839e-007,-6.72307464810729e-007,1,-4.81714934608135e-009,-6.4964607027207e-009,1,-1.50622071259932e-007,-1.59068740401835e-008,1,-7.74867203290341e-007,0,1,-4.39890754933003e-007,0,1,8.94114180027827e-007,-3.50426603290543e-008,1,8.64310663928336e-007,0,1,9.67115511230077e-007,-1.06145897404986e-007,1,8.062890515248e-007,-1.31487738030955e-007,1,5.78853814658942e-007,-4.71825728709518e-007,1,2.71883209279622e-007,-4.98730514664203e-007,1,6.05478817305993e-007,-6.71664452056575e-007,1,8.34859292808687e-007,-5.04022239056212e-007,1,6.92614946729009e-007,-7.23503376320878e-007,1,9.18749833545007e-007,-5.77713080929243e-007,1,8.34859292808687e-007,-5.04022239056212e-007,1,6.05478817305993e-007,-6.71664452056575e-007,1,6.15569888395839e-007,-6.72307464810729e-007,1,8.52173002385825e-007,-6.39400411728275e-007,1,9.18749833545007e-007,-5.77713080929243e-007,1,6.92614946729009e-007,-7.23503376320878e-007,1,-4.81714934608135e-009,-6.4964607027207e-009,1,2.71883209279622e-007,-4.98730514664203e-007,1,5.78853814658942e-007,-4.71825728709518e-007,1,-1.50622071259932e-007,-1.59068740401835e-008,1,1,-0.000449143000878394,-0,1,-0.000131330831209198,-0,
- 1,3.37861678190166e-007,-0,1,-0.000244645401835442,-0,0.999996304512024,0.00273845950141549,-0,0.999985098838806,0.00547669315710664,-0,0.999998509883881,0.00171714404132217,-0,0.99999988079071,-0.000480385351693258,-0,1.53390274704179e-007,6.22886545897927e-007,1,0,6.48839773020882e-007,1,0,6.74793227517512e-007,1,1.53390260493325e-007,6.48840000394557e-007,1,3.30378810531329e-007,6.82423660691711e-007,1,2.66688766714651e-006,3.24073994306673e-007,1,2.24104269364034e-006,-2.46481988597225e-007,1,5.2032902431165e-007,-7.24499386706157e-007,1,7.73524391206593e-007,-1.36362245939381e-007,1,7.9678147812956e-007,-1.29948219296239e-007,1,5.18104968705302e-007,-4.90935178731888e-007,1,5.42687530469266e-007,-4.93187940264761e-007,1,-6.15234284850885e-007,-2.52234144682006e-008,1,-4.56242673863017e-007,-1.59573971814098e-008,1,-1.66261088452302e-007,0,1,-4.40761766640208e-007,0,1,2.7232539423494e-007,-4.92106664751191e-007,1,2.49021155696028e-007,-5.37906544195721e-007,1,4.13522997178006e-007,-4.84127212985186e-007,1,4.79212758364156e-007,-3.89887389928845e-007,1,4.6594968239333e-007,-5.16608224643278e-007,1,5.45969783161127e-007,-4.50227503279166e-007,1,4.79212758364156e-007,-3.89887389928845e-007,1,4.13522997178006e-007,-4.84127212985186e-007,1,5.42687530469266e-007,-4.93187940264761e-007,1,5.18104968705302e-007,-4.90935178731888e-007,1,5.45969783161127e-007,-4.50227503279166e-007,1,4.6594968239333e-007,-5.16608224643278e-007,1,-6.15234284850885e-007,-2.52234144682006e-008,1,2.49021155696028e-007,-5.37906544195721e-007,1,2.7232539423494e-007,-4.92106664751191e-007,1,-4.56242673863017e-007,-1.59573971814098e-008,1,-1,-7.24109270322515e-008,8.15837779555295e-007,-1,-4.79066635250547e-008,9.77499325927056e-007,-1,-5.90339254813443e-007,9.4405299932987e-007,-1,-5.70275631162076e-007,8.05452032182075e-007,-1,-1.19653833507982e-008,-4.69263738978043e-009,-1,-2.04617798260642e-008,-1.50688435951452e-007,-1,0,-7.74871011799405e-007,-1,0,-4.3989439291181e-007,-1,0,8.94114123184409e-007,-1,4.993992774871e-008,8.64310663928336e-007,
- -1,-4.79066635250547e-008,9.77499325927056e-007,-1,-7.24109270322515e-008,8.15837779555295e-007,-1,-4.85057171317749e-007,7.77396508055972e-007,-1,-5.2625290436481e-007,6.84187341448705e-007,-1,-5.2901577873854e-007,9.23815719033882e-007,-1,-4.39042707967019e-007,9.80875483946875e-007,-1,-6.13094812251802e-007,8.98363168744254e-007,-1,-5.33593720319914e-007,1.0011647191277e-006,-1,-4.39042707967019e-007,9.80875483946875e-007,-1,-5.2901577873854e-007,9.23815719033882e-007,-1,-5.70275631162076e-007,8.05452032182075e-007,-1,-5.90339254813443e-007,9.4405299932987e-007,-1,-5.33593720319914e-007,1.0011647191277e-006,-1,-6.13094812251802e-007,8.98363168744254e-007,-1,-1.19653833507982e-008,-4.69263738978043e-009,-1,-5.2625290436481e-007,6.84187341448705e-007,-1,-4.85057171317749e-007,7.77396508055972e-007,-1,-2.04617798260642e-008,-1.50688435951452e-007,0,-2.05505799044658e-007,-1,0,-0.000207146164029837,-1,0,-5.91616014844476e-007,-1,0,6.14856276115461e-007,-1,0,-5.1571173571574e-006,-1,0,0.0004554403712973,-1,0,-0.00061588321113959,-0.999999821186066,0,-0.00107749411836267,-0.999999523162842,-1,6.22886375367671e-007,-0,-1,6.48839545647206e-007,2.99692146654706e-007,-1,6.74792943300417e-007,2.99692118232997e-007,-1,6.48839773020882e-007,0,-1,-2.4903876294502e-008,8.38605615172128e-007,-1,-9.62451380814855e-008,1.13671546841942e-006,-1,-6.70043732498016e-007,1.11718759399082e-006,-1,-6.21338529072091e-007,9.60620241130528e-007,-1,-8.72261018969311e-009,3.89059550798265e-007,-1,-4.7401393032942e-008,3.92937494098078e-007,-1,-0,3.66645281246747e-007,-1,-0,5.16251930093858e-007,-1,4.99399774867015e-008,9.74129648056987e-007,-1,1.44572453564251e-007,9.0837590960291e-007,-1,-9.62451380814855e-008,1.13671546841942e-006,-1,-2.4903876294502e-008,8.38605615172128e-007,-1,-7.0681534225514e-007,1.09462393993454e-006,-1,-5.54840823951963e-007,1.33462617668556e-006,-1,-5.25408609064471e-007,1.09026052541594e-006,-1,-6.37717789686576e-007,1.06938591670769e-006,-1,-6.21338529072091e-007,9.60620241130528e-007,-1,-6.70043732498016e-007,1.11718759399082e-006,
- -1,-5.54840823951963e-007,1.33462617668556e-006,-1,-7.0681534225514e-007,1.09462393993454e-006,-1,-8.72261018969311e-009,3.89059550798265e-007,-1,-6.33832314633764e-007,7.67473920859629e-007,-1,-6.68521579427761e-007,9.24094081256044e-007,-1,-4.7401393032942e-008,3.92937494098078e-007,-1,6.36214963378734e-007,2.99692146654706e-007,-0.443411648273468,4.18973058913252e-006,0.896318197250366,-0.443416893482208,4.54112023362541e-006,0.896315515041351,-1,7.92067339716596e-007,2.99692231919835e-007,3.65602750207472e-006,-7.90406488704321e-007,1,3.21884681397933e-006,2.70996650897359e-007,1,9.07701519281545e-007,-1.60267603632747e-007,1,1.47996104260528e-006,-2.25138705900463e-006,1,4.17177852796158e-006,-0,1,4.52820813734434e-006,1.86792270540082e-009,1,4.36075697507476e-006,9.03125396689575e-008,1,3.21884681397933e-006,2.70996650897359e-007,1,1.04784146515158e-006,-6.9395191815147e-008,1,9.07701519281545e-007,-1.60267603632747e-007,1,2.24104269364034e-006,-2.46481988597225e-007,1,1.57580723225692e-006,3.41647307777748e-007,1,8.92769548954675e-007,-1.30575244838838e-006,1,5.2032902431165e-007,-7.24499386706157e-007,1,1.57580723225692e-006,3.41647307777748e-007,1,3.65602750207472e-006,-7.90406488704321e-007,1,1.47996104260528e-006,-2.25138705900463e-006,1,8.92769548954675e-007,-1.30575244838838e-006,1,4.52820813734434e-006,1.86792270540082e-009,1,2.66688766714651e-006,3.24073994306673e-007,1,3.30378810531329e-007,6.82423660691711e-007,1,4.36075697507476e-006,9.03125396689575e-008,1,8.69043105922174e-007,-6.93953765562583e-008,1,9.03579632449691e-007,-3.50426567763407e-008,1,7.9678147812956e-007,-1.29948219296239e-007,1,7.73524391206593e-007,-1.36362245939381e-007,1,-0.443416774272919,5.85668735730849e-010,0.896315574645996,-0.44341179728508,5.7340201919942e-008,0.896318137645721,1.53390260493325e-007,6.29479529834498e-007,1,1.53390345758453e-007,5.78606204726384e-007,1,-1,-5.25408609064471e-007,1.09026052541594e-006,-1,-6.68521579427761e-007,9.24094081256044e-007,-1,-6.33832314633764e-007,7.67473920859629e-007,-1,-6.37717789686576e-007,1.06938591670769e-006,
- -0.818246304988861,-0.574848115444183,0.00476738717406988,-0.42115581035614,-0.906975865364075,0.00476073659956455,-0.499433934688568,-0.866352021694183,-0.000145442463690415,-0.865843117237091,-0.500315606594086,-0.000124135782243684,-0.42115581035614,-0.906975865364075,0.00476073659956455,0.088693730533123,-0.996047556400299,0.00475766509771347,0.000737445312552154,-0.999999761581421,-7.68917670939118e-005,-0.499433934688568,-0.866352021694183,-0.000145442463690415,0.088693730533123,-0.996047556400299,0.00475766509771347,0.574807167053223,-0.818275034427643,0.00476920930668712,0.500519692897797,-0.865725159645081,-0.000121953118650708,0.000737445312552154,-0.999999761581421,-7.68917670939118e-005,0.574807167053223,-0.818275034427643,0.00476920930668712,0.906949281692505,-0.421212553977966,0.00478930911049247,0.86620831489563,-0.499683082103729,1.75311797647737e-005,0.500519692897797,-0.865725159645081,-0.000121953118650708,0.906949281692505,-0.421212553977966,0.00478930911049247,0.999999940395355,-4.3468226067489e-005,4.31038051829091e-006,1,-8.28042402645224e-007,-4.59807824881864e-006,0.86620831489563,-0.499683082103729,1.75311797647737e-005,0.999999940395355,-4.3468226067489e-005,4.31038051829091e-006,0.906957149505615,0.421195864677429,-0.00477248290553689,0.866220235824585,0.499662339687347,6.54578616376966e-005,1,-8.28042402645224e-007,-4.59807824881864e-006,0.906957149505615,0.421195864677429,-0.00477248290553689,0.574898362159729,0.818211019039154,-0.00476256851106882,0.500596761703491,0.865680575370789,1.11114495666698e-005,0.866220235824585,0.499662339687347,6.54578616376966e-005,0.574898362159729,0.818211019039154,-0.00476256851106882,0.0887932479381561,0.996038675308228,-0.00476501788944006,0.000726236321497709,0.999999701976776,0.000150425388710573,0.500596761703491,0.865680575370789,1.11114495666698e-005,0.0887932479381561,0.996038675308228,-0.00476501788944006,-0.421351134777069,0.906885147094727,-0.00475594541057944,-0.499498784542084,0.866314589977264,0.000161966483574361,0.000726236321497709,0.999999701976776,0.000150425388710573,
- -0.421351134777069,0.906885147094727,-0.00475594541057944,-0.818244457244873,0.574850499629974,-0.00478541059419513,-0.865856528282166,0.500292241573334,6.3329549448099e-005,-0.499498784542084,0.866314589977264,0.000161966483574361,-0.818244457244873,0.574850499629974,-0.00478541059419513,-0.966045141220093,0.257996469736099,-0.0139569789171219,-0.999116599559784,0.00659746397286654,-0.0415020398795605,-0.865856528282166,0.500292241573334,6.3329549448099e-005,-0.966027975082397,-0.258060872554779,0.0139477662742138,-0.818246304988861,-0.574848115444183,0.00476738717406988,-0.865843117237091,-0.500315606594086,-0.000124135782243684,-0.999116361141205,-0.00659896340221167,0.041509136557579,1,4.98294923545473e-007,1.25199539979803e-006,0.866658806800842,0.498901396989822,-6.85579725541174e-005,0.827778279781342,0.560190975666046,-0.0311316028237343,0.999999940395355,-7.28333725419361e-006,4.21002141592908e-006,0.866638600826263,-0.498936265707016,9.76573282969184e-005,1,4.98294923545473e-007,1.25199539979803e-006,0.999999940395355,-7.28333725419361e-006,4.21002141592908e-006,0.827749311923981,-0.560234487056732,0.031118381768465,0.501972496509552,-0.864883661270142,0.000114721107820515,0.866638600826263,-0.498936265707016,9.76573282969184e-005,0.827749311923981,-0.560234487056732,0.031118381768465,0.436055243015289,-0.899524569511414,0.0266706794500351,0.00300591066479683,-0.999995470046997,9.77185409283265e-005,0.501972496509552,-0.864883661270142,0.000114721107820515,0.436055243015289,-0.899524569511414,0.0266706794500351,-0.0707240626215935,-0.997200727462769,0.0242627765983343,-0.497393578290939,-0.867525041103363,-7.55003857193515e-005,0.00300591066479683,-0.999995470046997,9.77185409283265e-005,-0.0707240626215935,-0.997200727462769,0.0242627765983343,-0.555992126464844,-0.830788254737854,0.0257604215294123,-0.865064680576324,-0.501660227775574,-2.68198436970124e-005,-0.497393578290939,-0.867525041103363,-7.55003857193515e-005,-0.555992126464844,-0.830788254737854,0.0257604215294123,-0.892302989959717,-0.450244516134262,0.0327914915978909,
- -0.999987900257111,-9.07609573914669e-005,0.00493879290297627,-0.865064680576324,-0.501660227775574,-2.68198436970124e-005,-0.892302989959717,-0.450244516134262,0.0327914915978909,-0.983101546764374,-0.127213776111603,-0.13163585960865,-0.865084230899811,0.50162672996521,2.68726962531218e-005,-0.999987900257111,9.1303612862248e-005,-0.00493828626349568,-0.983101546764374,0.127212166786194,0.131637543439865,-0.892335772514343,0.450180202722549,-0.0327788293361664,-0.497443407773972,0.867496430873871,-5.2649952522188e-006,-0.865084230899811,0.50162672996521,2.68726962531218e-005,-0.892335772514343,0.450180202722549,-0.0327788293361664,-0.555965483188629,0.830805480480194,-0.0257829558104277,0.0030034442897886,0.999995410442352,-3.81499557988718e-005,-0.497443407773972,0.867496430873871,-5.2649952522188e-006,-0.555965483188629,0.830805480480194,-0.0257829558104277,-0.0707316175103188,0.997199416160584,-0.0242977607995272,0.502024114131927,0.86485368013382,-0.000125635895528831,0.0030034442897886,0.999995410442352,-3.81499557988718e-005,-0.0707316175103188,0.997199416160584,-0.0242977607995272,0.436036765575409,0.899535298347473,-0.0266148317605257,0.866658806800842,0.498901396989822,-6.85579725541174e-005,0.502024114131927,0.86485368013382,-0.000125635895528831,0.436036765575409,0.899535298347473,-0.0266148317605257,0.827778279781342,0.560190975666046,-0.0311316028237343,-0.867215216159821,-0.497709661722183,-0.0149243026971817,-0.502128183841705,-0.864664256572723,-0.0149357309564948,-0.499962151050568,-0.866047203540802,-8.16889441921376e-005,-0.866041898727417,-0.499971508979797,-6.55542066851922e-007,-0.502128183841705,-0.864664256572723,-0.0149357309564948,-0.00257420679554343,-0.999884843826294,-0.014960490167141,1.21727657642623e-006,-0.999999940395355,3.0902858270565e-005,-0.499962151050568,-0.866047203540802,-8.16889441921376e-005,-0.00257420679554343,-0.999884843826294,-0.014960490167141,0.497689843177795,-0.867227256298065,-0.0148905273526907,0.499963015317917,-0.866046667098999,2.04448970180238e-005,1.21727657642623e-006,-0.999999940395355,3.0902858270565e-005,
- 0.497689843177795,-0.867227256298065,-0.0148905273526907,0.864648997783661,-0.502154946327209,-0.0149141531437635,0.866042077541351,-0.499971091747284,3.10759096464608e-005,0.499963015317917,-0.866046667098999,2.04448970180238e-005,0.864648997783661,-0.502154946327209,-0.0149141531437635,0.999885201454163,-0.00256990129128098,-0.0149320084601641,1,1.64075686370779e-006,-1.668737354521e-006,0.866042077541351,-0.499971091747284,3.10759096464608e-005,0.999885201454163,-0.00256990129128098,-0.0149320084601641,0.867236256599426,0.497673124074936,-0.0149318976327777,0.866043150424957,0.499969184398651,6.69823350563092e-007,1,1.64075686370779e-006,-1.668737354521e-006,0.867236256599426,0.497673124074936,-0.0149318976327777,0.502137303352356,0.864659249782562,-0.0149192661046982,0.499985873699188,0.866033554077148,2.40080839830625e-006,0.866043150424957,0.499969184398651,6.69823350563092e-007,0.502137303352356,0.864659249782562,-0.0149192661046982,0.00256975996308029,0.999885261058807,-0.0149313285946846,1.41031659950386e-006,1,-3.64987936336547e-005,0.499985873699188,0.866033554077148,2.40080839830625e-006,0.00256975996308029,0.999885261058807,-0.0149313285946846,-0.49768203496933,0.867231130599976,-0.0149286268278956,-0.499983787536621,0.866034746170044,3.57634307874832e-005,1.41031659950386e-006,1,-3.64987936336547e-005,-0.49768203496933,0.867231130599976,-0.0149286268278956,-0.864665806293488,0.50212550163269,-0.0149298505857587,-0.86604380607605,0.499968081712723,-2.42859505306114e-006,-0.499983787536621,0.866034746170044,3.57634307874832e-005,-0.864665806293488,0.50212550163269,-0.0149298505857587,-0.99896901845932,0.0076998071745038,-0.0447393842041492,-0.999929428100586,0.000527924043126404,-0.0118623692542315,-0.86604380607605,0.499968081712723,-2.42859505306114e-006,-0.998968839645386,-0.00770081114023924,0.0447438582777977,-0.867215216159821,-0.497709661722183,-0.0149243026971817,-0.866041898727417,-0.499971508979797,-6.55542066851922e-007,-0.999929428100586,-0.000524824659805745,0.0118657080456614,1,1.64075686370779e-006,-1.668737354521e-006,
- 0.866043150424957,0.499969184398651,6.69823350563092e-007,0.842524170875549,0.536810755729675,-0.0445776134729385,0.99805474281311,0.0436095036566257,-0.0445518903434277,0.866042077541351,-0.499971091747284,3.10759096464608e-005,1,1.64075686370779e-006,-1.668737354521e-006,0.99805474281311,0.0436095036566257,-0.0445518903434277,0.886112093925476,-0.461326599121094,-0.0445324741303921,0.499963015317917,-0.866046667098999,2.04448970180238e-005,0.866042077541351,-0.499971091747284,3.10759096464608e-005,0.886112093925476,-0.461326599121094,-0.0445324741303921,0.536822378635406,-0.842518746852875,-0.0445404052734375,1.21727657642623e-006,-0.999999940395355,3.0902858270565e-005,0.499963015317917,-0.866046667098999,2.04448970180238e-005,0.536822378635406,-0.842518746852875,-0.0445404052734375,0.0435656532645226,-0.998059093952179,-0.0444990992546082,-0.499962151050568,-0.866047203540802,-8.16889441921376e-005,1.21727657642623e-006,-0.999999940395355,3.0902858270565e-005,0.0435656532645226,-0.998059093952179,-0.0444990992546082,-0.461183249950409,-0.886179745197296,-0.0446711294353008,-0.866041898727417,-0.499971508979797,-6.55542066851922e-007,-0.499962151050568,-0.866047203540802,-8.16889441921376e-005,-0.461183249950409,-0.886179745197296,-0.0446711294353008,-0.842515110969543,-0.536826908588409,-0.0445552878081799,-0.999929428100586,-0.000524824659805745,0.0118657080456614,-0.866041898727417,-0.499971508979797,-6.55542066851922e-007,-0.842515110969543,-0.536826908588409,-0.0445552878081799,-0.982882082462311,-0.128873378038406,-0.131660372018814,-0.86604380607605,0.499968081712723,-2.42859505306114e-006,-0.999929428100586,0.000527924043126404,-0.0118623692542315,-0.982890248298645,0.128842428326607,0.131630524992943,-0.886155843734741,0.461240202188492,-0.0445564091205597,-0.499983787536621,0.866034746170044,3.57634307874832e-005,-0.86604380607605,0.499968081712723,-2.42859505306114e-006,-0.886155843734741,0.461240202188492,-0.0445564091205597,-0.536803364753723,0.842531204223633,-0.0445340871810913,1.41031659950386e-006,1,-3.64987936336547e-005,
- -0.499983787536621,0.866034746170044,3.57634307874832e-005,-0.536803364753723,0.842531204223633,-0.0445340871810913,-0.0436104945838451,0.998054027557373,-0.044568732380867,0.499985873699188,0.866033554077148,2.40080839830625e-006,1.41031659950386e-006,1,-3.64987936336547e-005,-0.0436104945838451,0.998054027557373,-0.044568732380867,0.4612977206707,0.886125206947327,-0.0445708483457565,0.866043150424957,0.499969184398651,6.69823350563092e-007,0.499985873699188,0.866033554077148,2.40080839830625e-006,0.4612977206707,0.886125206947327,-0.0445708483457565,0.842524170875549,0.536810755729675,-0.0445776134729385,-0.867234587669373,-0.497763067483902,-0.011667288839817,-0.502866625785828,-0.864282310009003,-0.0118839768692851,-0.498594462871552,-0.866835415363312,-6.42953673377633e-005,-0.865560114383698,-0.500804960727692,-3.66024614777416e-005,-0.502866625785828,-0.864282310009003,-0.0118839768692851,-0.00375201227143407,-0.999916017055511,-0.0123986527323723,0.0018678680062294,-0.999998271465302,-2.90683547063963e-005,-0.498594462871552,-0.866835415363312,-6.42953673377633e-005,-0.00375201227143407,-0.999916017055511,-0.0123986527323723,0.496821194887161,-0.867757678031921,-0.0128592448309064,0.501401126384735,-0.865214884281158,1.40090014610905e-005,0.0018678680062294,-0.999998271465302,-2.90683547063963e-005,0.496821194887161,-0.867757678031921,-0.0128592448309064,0.864420533180237,-0.502592980861664,-0.0133113265037537,0.866494357585907,-0.49918669462204,7.99711961008143e-006,0.501401126384735,-0.865214884281158,1.40090014610905e-005,0.864420533180237,-0.502592980861664,-0.0133113265037537,1,-1.35356208375015e-006,-4.79951177112525e-006,0.999999046325684,-3.32999406964518e-005,-0.00136457849293947,0.866494357585907,-0.49918669462204,7.99711961008143e-006,1,-1.35356208375015e-006,-4.79951177112525e-006,0.864411354064941,0.50260716676712,0.0133848385885358,0.866515517234802,0.499145746231079,-0.00211845268495381,0.999999046325684,-3.32999406964518e-005,-0.00136457849293947,0.864411354064941,0.50260716676712,0.0133848385885358,
- 0.496874451637268,0.867728531360626,0.0127672692760825,0.501470625400543,0.865172684192657,-0.00179878226481378,0.866515517234802,0.499145746231079,-0.00211845268495381,0.496874451637268,0.867728531360626,0.0127672692760825,-0.00375368655659258,0.999915957450867,0.0124054783955216,0.00188972719479352,0.99999725818634,-0.00133325043134391,0.501470625400543,0.865172684192657,-0.00179878226481378,-0.00375368655659258,0.999915957450867,0.0124054783955216,-0.502909958362579,0.86425644159317,0.0119364988058805,-0.498630702495575,0.866814255714417,-0.000681322650052607,0.00188972719479352,0.99999725818634,-0.00133325043134391,-0.502909958362579,0.86425644159317,0.0119364988058805,-0.867228507995605,0.49777489900589,0.0116120027378201,-0.865555703639984,0.500812530517578,-0.00044601658009924,-0.498630702495575,0.866814255714417,-0.000681322650052607,-0.867228507995605,0.49777489900589,0.0116120027378201,-0.999383389949799,0.00460425857454538,-0.0348091125488281,-0.999999642372131,4.75761953566689e-006,-0.000957525393459946,-0.865555703639984,0.500812530517578,-0.00044601658009924,-0.999383151531219,-0.00460614403709769,0.0348155200481415,-0.867234587669373,-0.497763067483902,-0.011667288839817,-0.865560114383698,-0.500804960727692,-3.66024614777416e-005,-0.999999523162842,-2.14194551517721e-006,0.000957844022195786,0.999999046325684,-3.32999406964518e-005,-0.00136457849293947,0.866515517234802,0.499145746231079,-0.00211845268495381,0.83591765165329,0.547159552574158,-0.0431055650115013,0.997510671615601,0.0558308400213718,-0.0430749095976353,0.866494357585907,-0.49918669462204,7.99711961008143e-006,0.999999046325684,-3.32999406964518e-005,-0.00136457849293947,0.997510671615601,0.0558308400213718,-0.0430749095976353,0.891761779785156,-0.450450301170349,-0.0430742874741554,0.501401126384735,-0.865214884281158,1.40090014610905e-005,0.866494357585907,-0.49918669462204,7.99711961008143e-006,0.891761779785156,-0.450450301170349,-0.0430742874741554,0.54715883731842,-0.835921883583069,-0.0430343486368656,0.0018678680062294,-0.999998271465302,-2.90683547063963e-005,
- 0.501401126384735,-0.865214884281158,1.40090014610905e-005,0.54715883731842,-0.835921883583069,-0.0430343486368656,0.0558395348489285,-0.997510492801666,-0.0430650487542152,-0.498594462871552,-0.866835415363312,-6.42953673377633e-005,0.0018678680062294,-0.999998271465302,-2.90683547063963e-005,0.0558395348489285,-0.997510492801666,-0.0430650487542152,-0.450352907180786,-0.891805589199066,-0.0431850887835026,-0.865560114383698,-0.500804960727692,-3.66024614777416e-005,-0.498594462871552,-0.866835415363312,-6.42953673377633e-005,-0.450352907180786,-0.891805589199066,-0.0431850887835026,-0.83593624830246,-0.54713362455368,-0.0430741906166077,-0.999999523162842,-2.14194551517721e-006,0.000957844022195786,-0.865560114383698,-0.500804960727692,-3.66024614777416e-005,-0.83593624830246,-0.54713362455368,-0.0430741906166077,-0.97822630405426,-0.164323031902313,-0.126773238182068,-0.865555703639984,0.500812530517578,-0.00044601658009924,-0.999999642372131,4.75761953566689e-006,-0.000957525393459946,-0.978242874145508,0.164259880781174,0.126727163791656,-0.891789555549622,0.450392842292786,-0.0430983901023865,-0.498630702495575,0.866814255714417,-0.000681322650052607,-0.865555703639984,0.500812530517578,-0.00044601658009924,-0.891789555549622,0.450392842292786,-0.0430983901023865,-0.547135710716248,0.835937976837158,-0.0430144928395748,0.00188972719479352,0.99999725818634,-0.00133325043134391,-0.498630702495575,0.866814255714417,-0.000681322650052607,-0.547135710716248,0.835937976837158,-0.0430144928395748,-0.0558758713304996,0.997506380081177,-0.0431148856878281,0.501470625400543,0.865172684192657,-0.00179878226481378,0.00188972719479352,0.99999725818634,-0.00133325043134391,-0.0558758713304996,0.997506380081177,-0.0431148856878281,0.450484246015549,0.89174222946167,-0.0431257598102093,0.866515517234802,0.499145746231079,-0.00211845268495381,0.501470625400543,0.865172684192657,-0.00179878226481378,0.450484246015549,0.89174222946167,-0.0431257598102093,0.83591765165329,0.547159552574158,-0.0431055650115013,-0.86642199754715,-0.499236553907394,-0.00870818737894297,
- -0.500667989253998,-0.865596115589142,-0.00865605194121599,-0.499949067831039,-0.866054832935333,-5.41540757694747e-005,-0.866029679775238,-0.499992549419403,-3.11337316816207e-005,-0.500667989253998,-0.865596115589142,-0.00865605194121599,-0.000850282027386129,-0.999961853027344,-0.00869382824748755,-2.928868809704e-007,-1,3.49676292898948e-006,-0.499949067831039,-0.866054832935333,-5.41540757694747e-005,-0.000850282027386129,-0.999961853027344,-0.00869382824748755,0.499216467142105,-0.866434514522552,-0.00860869698226452,0.499955862760544,-0.866050839424133,4.7588884626748e-005,-2.928868809704e-007,-1,3.49676292898948e-006,0.499216467142105,-0.866434514522552,-0.00860869698226452,0.865572869777679,-0.500709295272827,-0.00858428794890642,0.86602509021759,-0.500000417232513,3.4177559427917e-005,0.499955862760544,-0.866050839424133,4.7588884626748e-005,0.865572869777679,-0.500709295272827,-0.00858428794890642,0.999962210655212,-0.000846483395434916,-0.00865368824452162,1,1.07731705156766e-006,6.27174472356273e-007,0.86602509021759,-0.500000417232513,3.4177559427917e-005,0.999962210655212,-0.000846483395434916,-0.00865368824452162,0.866421401500702,0.499238520860672,-0.00864822883158922,0.866030514240265,0.49999126791954,-6.56821896427573e-007,1,1.07731705156766e-006,6.27174472356273e-007,0.866421401500702,0.499238520860672,-0.00864822883158922,0.500763535499573,0.865540325641632,-0.00871074851602316,0.500031113624573,0.866007387638092,-3.08582930301782e-005,0.866030514240265,0.49999126791954,-6.56821896427573e-007,0.500763535499573,0.865540325641632,-0.00871074851602316,0.000845680013298988,0.999962210655212,-0.00865080300718546,-1.5104551209788e-007,1,-3.79828111363167e-006,0.500031113624573,0.866007387638092,-3.08582930301782e-005,0.000845680013298988,0.999962210655212,-0.00865080300718546,-0.499289274215698,0.86639279127121,-0.00858303066343069,-0.500024259090424,0.866011321544647,3.52444731106516e-005,-1.5104551209788e-007,1,-3.79828111363167e-006,-0.499289274215698,0.86639279127121,-0.00858303066343069,-0.865580141544342,0.500695765018463,-0.00865466799587011,
- -0.866035044193268,0.499983459711075,-1.8580072946861e-007,-0.500024259090424,0.866011321544647,3.52444731106516e-005,-0.865580141544342,0.500695765018463,-0.00865466799587011,-0.999660432338715,0.00253528915345669,-0.0259345751255751,-0.999989926815033,7.6318443461787e-005,0.00448929797858,-0.866035044193268,0.499983459711075,-1.8580072946861e-007,-0.99966037273407,-0.0025363105814904,0.02593725733459,-0.86642199754715,-0.499236553907394,-0.00870818737894297,-0.866029679775238,-0.499992549419403,-3.11337316816207e-005,-0.999989926815033,-7.42384581826627e-005,-0.00448997830972075,1,1.07731705156766e-006,6.27174472356273e-007,0.866030514240265,0.49999126791954,-6.56821896427573e-007,0.83464652299881,0.549152553081512,-0.042388804256916,0.99740070104599,0.058282483369112,-0.0423675179481506,0.86602509021759,-0.500000417232513,3.4177559427917e-005,1,1.07731705156766e-006,6.27174472356273e-007,0.99740070104599,0.058282483369112,-0.0423675179481506,0.892887473106384,-0.448285073041916,-0.0423378832638264,0.499955862760544,-0.866050839424133,4.7588884626748e-005,0.86602509021759,-0.500000417232513,3.4177559427917e-005,0.892887473106384,-0.448285073041916,-0.0423378832638264,0.549230933189392,-0.834596931934357,-0.0423477180302143,-2.928868809704e-007,-1,3.49676292898948e-006,0.499955862760544,-0.866050839424133,4.7588884626748e-005,0.549230933189392,-0.834596931934357,-0.0423477180302143,0.0582106746733189,-0.997407019138336,-0.0423174761235714,-0.499949067831039,-0.866054832935333,-5.41540757694747e-005,-2.928868809704e-007,-1,3.49676292898948e-006,0.0582106746733189,-0.997407019138336,-0.0423174761235714,-0.448185414075851,-0.892931461334229,-0.0424653589725494,-0.866029679775238,-0.499992549419403,-3.11337316816207e-005,-0.499949067831039,-0.866054832935333,-5.41540757694747e-005,-0.448185414075851,-0.892931461334229,-0.0424653589725494,-0.834630012512207,-0.549178838729858,-0.0423707775771618,-0.999989926815033,-7.42384581826627e-005,-0.00448997830972075,-0.866029679775238,-0.499992549419403,-3.11337316816207e-005,
- -0.834630012512207,-0.549178838729858,-0.0423707775771618,-0.97730553150177,-0.171347081661224,-0.124555513262749,-0.866035044193268,0.499983459711075,-1.8580072946861e-007,-0.999989926815033,7.6318443461787e-005,0.00448929797858,-0.977307677268982,0.171339094638824,0.124549701809883,-0.89294171333313,0.448174655437469,-0.0423607043921947,-0.500024259090424,0.866011321544647,3.52444731106516e-005,-0.866035044193268,0.499983459711075,-1.8580072946861e-007,-0.89294171333313,0.448174655437469,-0.0423607043921947,-0.549182415008545,0.834629416465759,-0.0423359461128712,-1.5104551209788e-007,1,-3.79828111363167e-006,-0.500024259090424,0.866011321544647,3.52444731106516e-005,-0.549182415008545,0.834629416465759,-0.0423359461128712,-0.0582893304526806,0.997399687767029,-0.0423803441226482,0.500031113624573,0.866007387638092,-3.08582930301782e-005,-1.5104551209788e-007,1,-3.79828111363167e-006,-0.0582893304526806,0.997399687767029,-0.0423803441226482,0.448261737823486,0.89289665222168,-0.0423920154571533,0.866030514240265,0.49999126791954,-6.56821896427573e-007,0.500031113624573,0.866007387638092,-3.08582930301782e-005,0.448261737823486,0.89289665222168,-0.0423920154571533,0.83464652299881,0.549152553081512,-0.042388804256916,-0.86945652961731,-0.493913501501083,-0.00973744317889214,-0.499831229448318,-0.863855123519897,0.0626352801918983,-0.488234132528305,-0.868099749088287,0.0896114856004715,-0.863327383995056,-0.504644215106964,-2.08357851079199e-005,-0.499831229448318,-0.863855123519897,0.0626352801918983,0.0201313812285662,-0.98453813791275,0.174009665846825,0.0187774822115898,-0.987914323806763,0.153859585523605,-0.488234132528305,-0.868099749088287,0.0896114856004715,0.0201313812285662,-0.98453813791275,0.174009665846825,0.513509690761566,-0.845623672008514,0.145700067281723,0.513147175312042,-0.847637832164764,0.13487084209919,0.0187774822115898,-0.987914323806763,0.153859585523605,0.513509690761566,-0.845623672008514,0.145700067281723,0.870313942432404,-0.48530986905098,0.0838328897953033,0.870298326015472,-0.488460004329681,0.0631468147039413,
- 0.513147175312042,-0.847637832164764,0.13487084209919,0.870313942432404,-0.48530986905098,0.0838328897953033,0.999999940395355,-1.0985436347255e-006,-4.92431263410253e-006,0.999981224536896,-0.0007012186688371,-0.00610095774754882,0.870298326015472,-0.488460004329681,0.0631468147039413,0.999999940395355,-1.0985436347255e-006,-4.92431263410253e-006,0.86070305109024,0.508745968341827,0.0191791411489248,0.8691446185112,0.494478940963745,-0.00884153414517641,0.999981224536896,-0.0007012186688371,-0.00610095774754882,0.86070305109024,0.508745968341827,0.0191791411489248,0.488410294055939,0.872462570667267,0.0162590891122818,0.508542060852051,0.861011564731598,-0.00664473744109273,0.8691446185112,0.494478940963745,-0.00884153414517641,0.488410294055939,0.872462570667267,0.0162590891122818,-0.0138499960303307,0.999813377857208,0.0134666096419096,0.0109901027753949,0.999930858612061,-0.00417929328978062,0.508542060852051,0.861011564731598,-0.00664473744109273,-0.0138499960303307,0.999813377857208,0.0134666096419096,-0.510031402111053,0.860083222389221,0.0111722387373447,-0.491891205310822,0.870655119419098,-0.00161465106066316,0.0109901027753949,0.999930858612061,-0.00417929328978062,-0.510031402111053,0.860083222389221,0.0111722387373447,-0.869465351104736,0.493899315595627,0.00967662781476974,-0.863329172134399,0.504641115665436,0.000196221022633836,-0.491891205310822,0.870655119419098,-0.00161465106066316,-0.869465351104736,0.493899315595627,0.00967662781476974,-0.999582171440125,0.00312000652775168,-0.0287392530590296,-0.999995648860931,3.3819567761384e-005,0.00295691168867052,-0.863329172134399,0.504641115665436,0.000196221022633836,-0.999582171440125,-0.00312005332671106,0.0287392474710941,-0.86945652961731,-0.493913501501083,-0.00973744317889214,-0.863327383995056,-0.504644215106964,-2.08357851079199e-005,-0.999995589256287,-3.14028402499389e-005,-0.00295758922584355,0.999981224536896,-0.0007012186688371,-0.00610095774754882,0.8691446185112,0.494478940963745,-0.00884153414517641,0.842527747154236,0.536804795265198,-0.0445838607847691,
- 0.998055458068848,0.04359982162714,-0.0445465631783009,0.870298326015472,-0.488460004329681,0.0631468147039413,0.999981224536896,-0.0007012186688371,-0.00610095774754882,0.998055458068848,0.04359982162714,-0.0445465631783009,0.865911662578583,-0.500196993350983,0.000190151273272932,0.513147175312042,-0.847637832164764,0.13487084209919,0.870298326015472,-0.488460004329681,0.0631468147039413,0.865911662578583,-0.500196993350983,0.000190151273272932,0.422210961580276,-0.902276158332825,0.0873817428946495,0.0187774822115898,-0.987914323806763,0.153859585523605,0.513147175312042,-0.847637832164764,0.13487084209919,0.422210961580276,-0.902276158332825,0.0873817428946495,-0.0956414490938187,-0.990610241889954,0.0976935923099518,-0.488234132528305,-0.868099749088287,0.0896114856004715,0.0187774822115898,-0.987914323806763,0.153859585523605,-0.0956414490938187,-0.990610241889954,0.0976935923099518,-0.551290094852448,-0.831950664520264,0.0627479180693626,-0.863327383995056,-0.504644215106964,-2.08357851079199e-005,-0.488234132528305,-0.868099749088287,0.0896114856004715,-0.551290094852448,-0.831950664520264,0.0627479180693626,-0.842515110969543,-0.536826729774475,-0.0445556491613388,-0.999995589256287,-3.14028402499389e-005,-0.00295758922584355,-0.863327383995056,-0.504644215106964,-2.08357851079199e-005,-0.842515110969543,-0.536826729774475,-0.0445556491613388,-0.982882261276245,-0.128872692584991,-0.131659865379334,-0.863329172134399,0.504641115665436,0.000196221022633836,-0.999995648860931,3.3819567761384e-005,0.00295691168867052,-0.98289030790329,0.128840729594231,0.131631046533585,-0.886156380176544,0.461239337921143,-0.0445548109710217,-0.491891205310822,0.870655119419098,-0.00161465106066316,-0.863329172134399,0.504641115665436,0.000196221022633836,-0.886156380176544,0.461239337921143,-0.0445548109710217,-0.536803185939789,0.842531383037567,-0.0445340983569622,0.0109901027753949,0.999930858612061,-0.00417929328978062,-0.491891205310822,0.870655119419098,-0.00161465106066316,-0.536803185939789,0.842531383037567,-0.0445340983569622,
- -0.0436104163527489,0.998053967952728,-0.0445687659084797,0.508542060852051,0.861011564731598,-0.00664473744109273,0.0109901027753949,0.999930858612061,-0.00417929328978062,-0.0436104163527489,0.998053967952728,-0.0445687659084797,0.461298078298569,0.886124908924103,-0.0445712804794312,0.8691446185112,0.494478940963745,-0.00884153414517641,0.508542060852051,0.861011564731598,-0.00664473744109273,0.461298078298569,0.886124908924103,-0.0445712804794312,0.842527747154236,0.536804795265198,-0.0445838607847691,-0.86441034078598,-0.502678692340851,0.0104302624240518,-0.496178448200226,-0.868167698383331,0.00958294235169888,-0.502764821052551,-0.864416718482971,-0.00335615267977118,-0.867019355297089,-0.498258471488953,-0.00398363545536995,-0.496178448200226,-0.868167698383331,0.00958294235169888,0.00461387541145086,-0.999952018260956,0.00863541476428509,-0.00368865695782006,-0.99999064207077,-0.00225144880823791,-0.502764821052551,-0.864416718482971,-0.00335615267977118,0.00461387541145086,-0.999952018260956,0.00863541476428509,0.503343164920807,-0.86405223608017,0.00769522180780768,0.497194975614548,-0.867637813091278,-0.00141901767347008,-0.00368865695782006,-0.99999064207077,-0.00225144880823791,0.503343164920807,-0.86405223608017,0.00769522180780768,0.867235004901886,-0.497847706079483,0.00715643027797341,0.865118980407715,-0.501566290855408,-0.000674941344186664,0.497194975614548,-0.867637813091278,-0.00141901767347008,0.867235004901886,-0.497847706079483,0.00715643027797341,0.999999940395355,-4.54353084933246e-007,-1.9506210264808e-006,0.999999940395355,-3.91244810771241e-007,-0.000211399732506834,0.865118980407715,-0.501566290855408,-0.000674941344186664,0.999999940395355,-4.54353084933246e-007,-1.9506210264808e-006,0.867228329181671,0.497859954833984,-0.00709815928712487,0.86511766910553,0.501568853855133,-1.60532090376364e-005,0.999999940395355,-3.91244810771241e-007,-0.000211399732506834,0.867228329181671,0.497859954833984,-0.00709815928712487,0.503419637680054,0.864007353782654,-0.00774866854771972,0.497293412685394,0.867582380771637,-8.6153726442717e-005,
- 0.86511766910553,0.501568853855133,-1.60532090376364e-005,0.503419637680054,0.864007353782654,-0.00774866854771972,0.00461441045626998,0.999952375888824,-0.00859986990690231,-0.00362985930405557,0.99999338388443,-0.000103463316918351,0.497293412685394,0.867582380771637,-8.6153726442717e-005,0.00461441045626998,0.999952375888824,-0.00859986990690231,-0.496260821819305,0.868120968341827,-0.00954580493271351,-0.502725541591644,0.864446043968201,-9.73471032921225e-005,-0.00362985930405557,0.99999338388443,-0.000103463316918351,-0.496260821819305,0.868120968341827,-0.00954580493271351,-0.86440098285675,0.502693235874176,-0.0105012850835919,-0.866931080818176,0.498427987098694,-9.09712471184321e-005,-0.502725541591644,0.864446043968201,-9.73471032921225e-005,-0.86440098285675,0.502693235874176,-0.0105012850835919,-0.999447345733643,0.0041263634338975,-0.0329841375350952,-0.999915719032288,0.000630354683380574,-0.0129684871062636,-0.866931080818176,0.498427987098694,-9.09712471184321e-005,-0.999447107315063,-0.00412823632359505,0.0329917669296265,-0.86441034078598,-0.502678692340851,0.0104302624240518,-0.867019355297089,-0.498258471488953,-0.00398363545536995,-0.999915659427643,-0.000628436508122832,0.012972217053175,0.999999940395355,-3.91244810771241e-007,-0.000211399732506834,0.86511766910553,0.501568853855133,-1.60532090376364e-005,0.838923215866089,0.54245126247406,-0.0442103855311871,0.997758269309998,0.0502565577626228,-0.0441900976002216,0.865118980407715,-0.501566290855408,-0.000674941344186664,0.999999940395355,-3.91244810771241e-007,-0.000211399732506834,0.997758269309998,0.0502565577626228,-0.0441900976002216,0.889167070388794,-0.455444902181625,-0.0441795364022255,0.497194975614548,-0.867637813091278,-0.00141901767347008,0.865118980407715,-0.501566290855408,-0.000674941344186664,0.889167070388794,-0.455444902181625,-0.0441795364022255,0.542406022548676,-0.83895343542099,-0.0441920012235641,-0.00368865695782006,-0.99999064207077,-0.00225144880823791,0.497194975614548,-0.867637813091278,-0.00141901767347008,0.542406022548676,-0.83895343542099,-0.0441920012235641,
- 0.0501687005162239,-0.997765958309174,-0.0441169142723084,-0.502764821052551,-0.864416718482971,-0.00335615267977118,-0.00368865695782006,-0.99999064207077,-0.00225144880823791,0.0501687005162239,-0.997765958309174,-0.0441169142723084,-0.455261021852493,-0.889255046844482,-0.0443038195371628,-0.867019355297089,-0.498258471488953,-0.00398363545536995,-0.502764821052551,-0.864416718482971,-0.00335615267977118,-0.455261021852493,-0.889255046844482,-0.0443038195371628,-0.838934779167175,-0.54243677854538,-0.0441694594919682,-0.999915659427643,-0.000628436508122832,0.012972217053175,-0.867019355297089,-0.498258471488953,-0.00398363545536995,-0.838934779167175,-0.54243677854538,-0.0441694594919682,-0.980351328849792,-0.148132383823395,-0.130261868238449,-0.866931080818176,0.498427987098694,-9.09712471184321e-005,-0.999915719032288,0.000630354683380574,-0.0129684871062636,-0.980356514453888,0.148113384842873,0.130244195461273,-0.889200687408447,0.455377370119095,-0.0441975072026253,-0.502725541591644,0.864446043968201,-9.73471032921225e-005,-0.866931080818176,0.498427987098694,-9.09712471184321e-005,-0.889200687408447,0.455377370119095,-0.0441975072026253,-0.542384564876556,0.838968753814697,-0.0441637225449085,-0.00362985930405557,0.99999338388443,-0.000103463316918351,-0.502725541591644,0.864446043968201,-9.73471032921225e-005,-0.542384564876556,0.838968753814697,-0.0441637225449085,-0.0502583459019661,0.997757375240326,-0.0442078225314617,0.497293412685394,0.867582380771637,-8.6153726442717e-005,-0.00362985930405557,0.99999338388443,-0.000103463316918351,-0.0502583459019661,0.997757375240326,-0.0442078225314617,0.455383360385895,0.889198422431946,-0.0441842339932919,0.86511766910553,0.501568853855133,-1.60532090376364e-005,0.497293412685394,0.867582380771637,-8.6153726442717e-005,0.455383360385895,0.889198422431946,-0.0441842339932919,0.838923215866089,0.54245126247406,-0.0442103855311871,-0.866508543491364,-0.499067753553391,-0.00971421040594578,-0.500840485095978,-0.865486681461334,-0.00956800300627947,-0.49994882941246,-0.866054952144623,-1.45135140883212e-006,
- -0.866030752658844,-0.499990731477737,-2.97014539683005e-005,-0.500840485095978,-0.865486681461334,-0.00956800300627947,-0.00105210125911981,-0.999952852725983,-0.00965733174234629,-8.95427945124538e-008,-1,1.82699420747667e-006,-0.49994882941246,-0.866054952144623,-1.45135140883212e-006,-0.00105210125911981,-0.999952852725983,-0.00965733174234629,0.499030500650406,-0.866531550884247,-0.00957274250686169,0.499944716691971,-0.866057336330414,-1.98780799109954e-006,-8.95427945124538e-008,-1,1.82699420747667e-006,0.499030500650406,-0.866531550884247,-0.00957274250686169,0.865456998348236,-0.500891149044037,-0.00960334111005068,0.866032302379608,-0.499987930059433,3.09943970933091e-005,0.499944716691971,-0.866057336330414,-1.98780799109954e-006,0.865456998348236,-0.500891149044037,-0.00960334111005068,0.999953806400299,-0.00105029973201454,-0.00956330168992281,1,-9.38281209528213e-006,5.19341665494721e-005,0.866032302379608,-0.499987930059433,3.09943970933091e-005,0.999953806400299,-0.00105029973201454,-0.00956330168992281,0.86650562286377,0.499074667692184,-0.00961383152753115,0.866022765636444,0.500004410743713,-7.14033546955761e-007,1,-9.38281209528213e-006,5.19341665494721e-005,0.86650562286377,0.499074667692184,-0.00961383152753115,0.500922083854675,0.865438401699066,-0.00967231579124928,0.500009298324585,0.866020083427429,-2.84955312963575e-005,0.866022765636444,0.500004410743713,-7.14033546955761e-007,0.500922083854675,0.865438401699066,-0.00967231579124928,0.00104799820110202,0.999953150749207,-0.00961898639798164,-6.35256753866997e-008,1,-2.35685297411692e-006,0.500009298324585,0.866020083427429,-2.84955312963575e-005,0.00104799820110202,0.999953150749207,-0.00961898639798164,-0.499113082885742,0.866484224796295,-0.00955423340201378,-0.500012934207916,0.866017937660217,3.11444418912288e-005,-6.35256753866997e-008,1,-2.35685297411692e-006,-0.499113082885742,0.866484224796295,-0.00955423340201378,-0.865458548069,0.500888109207153,-0.00962093193084002,-0.866021275520325,0.500007033348084,3.11225477389598e-007,-0.500012934207916,0.866017937660217,3.11444418912288e-005,
- -0.865458548069,0.500888109207153,-0.00962093193084002,-0.999579548835754,0.00313076982274652,-0.0288261026144028,-0.999972581863403,0.000196710345335305,0.00740305706858635,-0.866021275520325,0.500007033348084,3.11225477389598e-007,-0.999579608440399,-0.00314771570265293,0.028822373598814,-0.866508543491364,-0.499067753553391,-0.00971421040594578,-0.866030752658844,-0.499990731477737,-2.97014539683005e-005,-0.999971807003021,-0.00021561371977441,-0.00750607531517744,1,-9.38281209528213e-006,5.19341665494721e-005,0.866022765636444,0.500004410743713,-7.14033546955761e-007,0.84251457452774,0.536825597286224,-0.0445807762444019,0.99805474281311,0.0436506941914558,-0.0445125587284565,0.866032302379608,-0.499987930059433,3.09943970933091e-005,1,-9.38281209528213e-006,5.19341665494721e-005,0.99805474281311,0.0436506941914558,-0.0445125587284565,0.88611227273941,-0.461327522993088,-0.0445171222090721,0.499944716691971,-0.866057336330414,-1.98780799109954e-006,0.866032302379608,-0.499987930059433,3.09943970933091e-005,0.88611227273941,-0.461327522993088,-0.0445171222090721,0.536821365356445,-0.842516362667084,-0.0445976778864861,-8.95427945124538e-008,-1,1.82699420747667e-006,0.499944716691971,-0.866057336330414,-1.98780799109954e-006,0.536821365356445,-0.842516362667084,-0.0445976778864861,0.0435725562274456,-0.9980588555336,-0.0444978922605515,-0.49994882941246,-0.866054952144623,-1.45135140883212e-006,-8.95427945124538e-008,-1,1.82699420747667e-006,0.0435725562274456,-0.9980588555336,-0.0444978922605515,-0.461151480674744,-0.886197924613953,-0.0446391217410564,-0.866030752658844,-0.499990731477737,-2.97014539683005e-005,-0.49994882941246,-0.866054952144623,-1.45135140883212e-006,-0.461151480674744,-0.886197924613953,-0.0446391217410564,-0.842510402202606,-0.536836862564087,-0.0445272512733936,-0.999971807003021,-0.00021561371977441,-0.00750607531517744,-0.866030752658844,-0.499990731477737,-2.97014539683005e-005,-0.842510402202606,-0.536836862564087,-0.0445272512733936,-0.982861518859863,-0.128938168287277,-0.131750553846359,
- -0.866021275520325,0.500007033348084,3.11225477389598e-007,-0.999972581863403,0.000196710345335305,0.00740305706858635,-0.982879400253296,0.128934562206268,0.131620600819588,-0.88614946603775,0.461252748966217,-0.0445525273680687,-0.500012934207916,0.866017937660217,3.11444418912288e-005,-0.866021275520325,0.500007033348084,3.11225477389598e-007,-0.88614946603775,0.461252748966217,-0.0445525273680687,-0.536817014217377,0.84252268075943,-0.0445304997265339,-6.35256753866997e-008,1,-2.35685297411692e-006,-0.500012934207916,0.866017937660217,3.11444418912288e-005,-0.536817014217377,0.84252268075943,-0.0445304997265339,-0.0436232723295689,0.998053252696991,-0.0445726551115513,0.500009298324585,0.866020083427429,-2.84955312963575e-005,-6.35256753866997e-008,1,-2.35685297411692e-006,-0.0436232723295689,0.998053252696991,-0.0445726551115513,0.461286783218384,0.886130928993225,-0.0445687994360924,0.866022765636444,0.500004410743713,-7.14033546955761e-007,0.500009298324585,0.866020083427429,-2.84955312963575e-005,0.461286783218384,0.886130928993225,-0.0445687994360924,0.84251457452774,0.536825597286224,-0.0445807762444019,-0.866331040859222,-0.499410420656204,-0.00773156387731433,-0.500513970851898,-0.865695297718048,-0.00757730007171631,-0.499960392713547,-0.866048216819763,1.9324989608549e-008,-0.866025328636169,-0.500000178813934,-3.17055237246677e-005,-0.500513970851898,-0.865695297718048,-0.00757730007171631,-0.000659375044051558,-0.999970316886902,-0.00766770169138908,-1.13802634871263e-007,-1,4.69542982273197e-008,-0.499960392713547,-0.866048216819763,1.9324989608549e-008,-0.000659375044051558,-0.999970316886902,-0.00766770169138908,0.499390810728073,-0.86634373664856,-0.00758098252117634,0.499964147806168,-0.866046071052551,-2.74740799000028e-008,-1.13802634871263e-007,-1,4.69542982273197e-008,0.499390810728073,-0.86634373664856,-0.00758098252117634,0.865672886371613,-0.500552177429199,-0.00760822929441929,0.866024911403656,-0.500000774860382,3.16061014018487e-005,0.499964147806168,-0.866046071052551,-2.74740799000028e-008,
- 0.865672886371613,-0.500552177429199,-0.00760822929441929,0.999971151351929,-0.000651641224976629,-0.00757522182539105,1,8.56607414334576e-007,-2.87507702978473e-007,0.866024911403656,-0.500000774860382,3.16061014018487e-005,0.999971151351929,-0.000651641224976629,-0.00757522182539105,0.866335570812225,0.49940350651741,-0.00767203001305461,0.866032004356384,0.499988555908203,2.87701851675592e-007,1,8.56607414334576e-007,-2.87507702978473e-007,0.866335570812225,0.49940350651741,-0.00767203001305461,0.50060373544693,0.865642786026001,-0.00763256195932627,0.500040888786316,0.866001844406128,1.98934048967203e-005,0.866032004356384,0.499988555908203,2.87701851675592e-007,0.50060373544693,0.865642786026001,-0.00763256195932627,0.000655392883345485,0.99997079372406,-0.00762363988906145,-1.03066930989826e-007,1,-2.91427095788777e-008,0.500040888786316,0.866001844406128,1.98934048967203e-005,0.000655392883345485,0.99997079372406,-0.00762363988906145,-0.499467581510544,0.866299569606781,-0.00755651853978634,-0.50003707408905,0.866004049777985,-1.99012047232827e-005,-1.03066930989826e-007,1,-2.91427095788777e-008,-0.499467581510544,0.866299569606781,-0.00755651853978634,-0.865675032138824,0.500547468662262,-0.00767861073836684,-0.866032481193542,0.499987691640854,-2.54911412866932e-007,-0.50003707408905,0.866004049777985,-1.99012047232827e-005,-0.865675032138824,0.500547468662262,-0.00767861073836684,-0.999738574028015,0.00195865822024643,-0.022784536704421,-0.999997794628143,1.83576958079357e-005,-0.00210640951991081,-0.866032481193542,0.499987691640854,-2.54911412866932e-007,-0.999736607074738,-0.00196639820933342,0.0228671357035637,-0.866331040859222,-0.499410420656204,-0.00773156387731433,-0.866025328636169,-0.500000178813934,-3.17055237246677e-005,-0.999997794628143,-1.64933699124958e-005,0.00210711592808366,1,8.56607414334576e-007,-2.87507702978473e-007,0.866032004356384,0.499988555908203,2.87701851675592e-007,0.84252917766571,0.536804795265198,-0.0445544496178627,0.998051822185516,0.0436499901115894,-0.0445785485208035,
- 0.866024911403656,-0.500000774860382,3.16061014018487e-005,1,8.56607414334576e-007,-2.87507702978473e-007,0.998051822185516,0.0436499901115894,-0.0445785485208035,0.886110246181488,-0.461332410573959,-0.0445076487958431,0.499964147806168,-0.866046071052551,-2.74740799000028e-008,0.866024911403656,-0.500000774860382,3.16061014018487e-005,0.886110246181488,-0.461332410573959,-0.0445076487958431,0.536826968193054,-0.842512726783752,-0.0445995107293129,-1.13802634871263e-007,-1,4.69542982273197e-008,0.499964147806168,-0.866046071052551,-2.74740799000028e-008,0.536826968193054,-0.842512726783752,-0.0445995107293129,0.0435748584568501,-0.998058617115021,-0.0444995872676373,-0.499960392713547,-0.866048216819763,1.9324989608549e-008,-1.13802634871263e-007,-1,4.69542982273197e-008,0.0435748584568501,-0.998058617115021,-0.0444995872676373,-0.461142897605896,-0.886202394962311,-0.0446367524564266,-0.866025328636169,-0.500000178813934,-3.17055237246677e-005,-0.499960392713547,-0.866048216819763,1.9324989608549e-008,-0.461142897605896,-0.886202394962311,-0.0446367524564266,-0.842519640922546,-0.536821782588959,-0.0445304065942764,-0.999997794628143,-1.64933699124958e-005,0.00210711592808366,-0.866025328636169,-0.500000178813934,-3.17055237246677e-005,-0.842519640922546,-0.536821782588959,-0.0445304065942764,-0.982866287231445,-0.128956839442253,-0.131697341799736,-0.866032481193542,0.499987691640854,-2.54911412866932e-007,-0.999997794628143,1.83576958079357e-005,-0.00210640951991081,-0.982884049415588,0.128888383507729,0.131631255149841,-0.886154532432556,0.461245268583298,-0.0445300005376339,-0.50003707408905,0.866004049777985,-1.99012047232827e-005,-0.866032481193542,0.499987691640854,-2.54911412866932e-007,-0.886154532432556,0.461245268583298,-0.0445300005376339,-0.536806583404541,0.842525959014893,-0.044593770056963,-1.03066930989826e-007,1,-2.91427095788777e-008,-0.50003707408905,0.866004049777985,-1.99012047232827e-005,-0.536806583404541,0.842525959014893,-0.044593770056963,-0.0436194352805614,0.99805361032486,-0.04456926882267,
- 0.500040888786316,0.866001844406128,1.98934048967203e-005,-1.03066930989826e-007,1,-2.91427095788777e-008,-0.0436194352805614,0.99805361032486,-0.04456926882267,0.461257189512253,0.886147975921631,-0.0445366948843002,0.866032004356384,0.499988555908203,2.87701851675592e-007,0.500040888786316,0.866001844406128,1.98934048967203e-005,0.461257189512253,0.886147975921631,-0.0445366948843002,0.84252917766571,0.536804795265198,-0.0445544496178627,1,0,1.14951026262133e-005,1,0,1.14951008072239e-005,1,-2.1750463929493e-005,1.14951071736868e-005,1,3.2875599572435e-005,1.14951026262133e-005,1,-4.33804729027543e-007,1.14951026262133e-005,1,1.17910167318769e-005,1.14951008072239e-005,1,-2.51889723585919e-005,1.14951026262133e-005,1,6.17797559243627e-005,1.14951017167186e-005,1,-0.000107225991087034,1.14951017167186e-005,0.99999988079071,-0.000526033283676952,1.14950144052273e-005,1,-6.25639077043161e-005,1.14951017167186e-005,1,1.38518998937798e-005,1.14951026262133e-005,-0.998904287815094,-0.00126730185002089,-0.0467828586697578,-0.999634861946106,-0.00124784035142511,-0.0269964709877968,-1,5.61558317713207e-006,-6.87425563228317e-006,-0.99963515996933,0.00125636137090623,0.0269814282655716,-0.998905777931213,0.00126317772082984,0.0467509254813194,-0.998539566993713,-2.11891710932832e-006,0.0540253780782223,-0.998907268047333,-0.00126772001385689,0.0467190593481064,-0.999635934829712,-0.00126217457000166,0.0269519500434399,-1,-2.73837440545321e-006,-6.80928405927261e-006,-0.999635636806488,0.00127060560043901,-0.0269665941596031,-0.998905718326569,0.00130262703169137,-0.0467513203620911,-0.998540699481964,5.52096116734901e-006,-0.0540048331022263,1,-8.28042402645224e-007,-4.59807824881864e-006,0.866220235824585,0.499662339687347,6.54578616376966e-005,0.866658806800842,0.498901396989822,-6.85579725541174e-005,1,4.98294923545473e-007,1.25199539979803e-006,0.86620831489563,-0.499683082103729,1.75311797647737e-005,1,-8.28042402645224e-007,-4.59807824881864e-006,1,4.98294923545473e-007,1.25199539979803e-006,0.866638600826263,-0.498936265707016,9.76573282969184e-005,
- 0.500519692897797,-0.865725159645081,-0.000121953118650708,0.86620831489563,-0.499683082103729,1.75311797647737e-005,0.866638600826263,-0.498936265707016,9.76573282969184e-005,0.501972496509552,-0.864883661270142,0.000114721107820515,0.000737445312552154,-0.999999761581421,-7.68917670939118e-005,0.500519692897797,-0.865725159645081,-0.000121953118650708,0.501972496509552,-0.864883661270142,0.000114721107820515,0.00300591066479683,-0.999995470046997,9.77185409283265e-005,-0.499433934688568,-0.866352021694183,-0.000145442463690415,0.000737445312552154,-0.999999761581421,-7.68917670939118e-005,0.00300591066479683,-0.999995470046997,9.77185409283265e-005,-0.497393578290939,-0.867525041103363,-7.55003857193515e-005,-0.865843117237091,-0.500315606594086,-0.000124135782243684,-0.499433934688568,-0.866352021694183,-0.000145442463690415,-0.497393578290939,-0.867525041103363,-7.55003857193515e-005,-0.865064680576324,-0.501660227775574,-2.68198436970124e-005,-0.999116361141205,-0.00659896340221167,0.041509136557579,-0.865843117237091,-0.500315606594086,-0.000124135782243684,-0.865064680576324,-0.501660227775574,-2.68198436970124e-005,-0.999987900257111,-9.07609573914669e-005,0.00493879290297627,-0.865856528282166,0.500292241573334,6.3329549448099e-005,-0.999116599559784,0.00659746397286654,-0.0415020398795605,-0.999987900257111,9.1303612862248e-005,-0.00493828626349568,-0.865084230899811,0.50162672996521,2.68726962531218e-005,-0.499498784542084,0.866314589977264,0.000161966483574361,-0.865856528282166,0.500292241573334,6.3329549448099e-005,-0.865084230899811,0.50162672996521,2.68726962531218e-005,-0.497443407773972,0.867496430873871,-5.2649952522188e-006,0.000726236321497709,0.999999701976776,0.000150425388710573,-0.499498784542084,0.866314589977264,0.000161966483574361,-0.497443407773972,0.867496430873871,-5.2649952522188e-006,0.0030034442897886,0.999995410442352,-3.81499557988718e-005,0.500596761703491,0.865680575370789,1.11114495666698e-005,0.000726236321497709,0.999999701976776,0.000150425388710573,0.0030034442897886,0.999995410442352,-3.81499557988718e-005,
- 0.502024114131927,0.86485368013382,-0.000125635895528831,0.866220235824585,0.499662339687347,6.54578616376966e-005,0.500596761703491,0.865680575370789,1.11114495666698e-005,0.502024114131927,0.86485368013382,-0.000125635895528831,0.866658806800842,0.498901396989822,-6.85579725541174e-005,2.84887846646598e-007,-0,-1,2.37406567293874e-007,0,-1,1.89925302152005e-007,0,-1,2.37406567293874e-007,0,-1,-1.57772461761851e-007,8.26958324040561e-009,-1,-1.03272313367597e-007,3.6270719760978e-009,-1,0,0,-1,-7.8336142905755e-008,-4.10596001643171e-009,-1,-5.11197839614397e-009,-1.07867606402579e-007,-1,-1.18129932502598e-008,-1.09918872226444e-007,-1,-2.47257239402237e-015,-8.16595573382983e-008,-1,-0,0,-1,1,-9.85964447863807e-007,-0,1,-3.27493893337305e-007,-0,1,2.66977053797746e-006,-0,1,4.69587939733174e-006,-0,1,-5.89480976032064e-007,-0,1,2.5824410840869e-006,-0,-1.57772461761851e-007,8.26958324040561e-009,-1,-8.29236768140618e-009,1.74976818811956e-007,-1,-1.77910699505901e-008,1.65544335573031e-007,-1,-1.03272313367597e-007,3.6270719760978e-009,-1,-5.11197839614397e-009,-1.07867606402579e-007,-1,-7.8336142905755e-008,-4.10596001643171e-009,-1,0,0,-1,-1.18129932502598e-008,-1.09918872226444e-007,-1,-5.52742107049224e-015,1.82549456440029e-007,-1,-1.77910699505901e-008,1.65544335573031e-007,-1,-8.29236768140618e-009,1.74976818811956e-007,-1,-6.10970455271979e-015,2.01780053998846e-007,-1,-1,1.27603684063615e-007,-1.51530016978541e-007,-1,-0.000155211047967896,-0.000130962464027107,-1,2.41815814661095e-005,2.01043658307754e-005,-1,2.00728718482424e-005,1.66444151545875e-005,-1,-0.000148562612594105,-0.000125363818369806,-1,-0.000246961688390002,-0.000208225872484036
- }
- TangentsW: *9105 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,-1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,-1,-1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,1,-1,1,1,-1,1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,-1,1,-1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,1,1,1,1,-1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,-1,1,-1,-1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,
- 1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,1,-1,1,1,-1,1,1,-1,-1,1,1,1,-1,1,1,-1,-1,-1,1,-1,-1,-1,-1,-1,1,1,-1,1,1,1,1,1,-1,-1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *9092 {
- a: 1,0.428953230381012,1,0.324528366327286,0.999999940395355,0.786208152770996,1,0.681783258914948,1.40453398227692,0.435370922088623,1.50895845890045,0.435370922088623,1.50895833969116,0.413716793060303,1.40453374385834,0.413716793060303,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,1,-0.00329195987433195,1,-0.0249461457133293,1,0.102389469742775,1,0.0246623829007149,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1.63381791114807,0.41400158405304,1.63381791114807,0.39234733581543,1.55609035491943,0.392346858978271,1.55609035491943,0.414001107215881,1,0.335379958152771,1,0.356935441493988,1,0.324528366327286,1,0.225367829203606,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,1.47499024868011,0.33920955657959,1.57415175437927,0.339209675788879,1.57415175437927,0.317555546760559,1.47499001026154,0.317555546760559,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,1,0.565913200378418,0.999999940395355,0.544259011745453,1,0.517104029655457,1,0.428953230381012,1,0.681783258914948,1,0.593632459640503,1.49693834781647,0.604988694190979,1.58508849143982,0.604988098144531,1.58508837223053,0.583333969116211,1.49693822860718,0.583334565162659,1,0.664620041847229,1,0.643064558506012,6.79865479469299e-008,0.102389454841614,1,0.225367829203606,1,0.102389469742775,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1.31194496154785,0.483451306819916,1.43492317199707,0.483451426029205,1.43492293357849,0.461797416210175,1.31194496154785,0.461797058582306,0,0.377914428710938,0,0.39946985244751,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,5.68106770515442e-008,0.324528306722641,5.40167093276978e-008,0.42895320057869,1,0.428953230381012,1,0.324528366327286,-1.86264514923096e-008,0.681783199310303,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,1,0.681783258914948,1.40453398227692,0.435370922088623,
- 1.50895845890045,0.435370922088623,1.50895833969116,0.413716793060303,1.40453374385834,0.413716793060303,-2.98023223876953e-008,0.554681181907654,0,0.576236605644226,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,0,0.598872840404511,0,0.620428323745728,6.79865479469299e-008,-0.0249462127685547,6.79865479469299e-008,-0.0032920241355896,1,-0.00329195987433195,1,-0.0249461457133293,6.6123902797699e-008,0.0246623754501343,6.79865479469299e-008,0.102389454841614,1,0.102389469742775,1,0.0246623829007149,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,-6.79865479469299e-008,1.08607399463654,1.63381791114807,0.41400158405304,1.63381791114807,0.39234733581543,1.55609035491943,0.392346858978271,1.55609035491943,0.414001107215881,1,0.335379958152771,0,0.335379898548126,0,0.356935381889343,1,0.356935441493988,6.05359673500061e-008,0.225367814302444,5.68106770515442e-008,0.324528306722641,1,0.324528366327286,1,0.225367829203606,-3.07336449623108e-008,0.786208033561707,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,1.47499024868011,0.33920955657959,1.57415175437927,0.339209675788879,1.57415175437927,0.317555546760559,1.47499001026154,0.317555546760559,0,0.466297745704651,0,0.487853288650513,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,0,0.510489463806152,0,0.532044947147369,5.12227416038513e-008,0.544258892536163,5.12227416038513e-008,0.565913140773773,1,0.565913200378418,0.999999940395355,0.544259011745453,5.40167093276978e-008,0.42895320057869,5.12227416038513e-008,0.517103970050812,1,0.517104029655457,1,0.428953230381012,-8.38190317153931e-009,0.593632400035858,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,1,0.593632459640503,1.49693834781647,0.604988694190979,1.58508849143982,0.604988098144531,1.58508837223053,0.583333969116211,1.49693822860718,0.583334565162659,0,0.643064558506012,0,0.664620041847229,1,0.664620041847229,
- 1,0.643064558506012,6.79865479469299e-008,0.102389454841614,6.05359673500061e-008,0.225367814302444,1,0.225367829203606,1,0.102389469742775,-4.2840838432312e-008,0.885368525981903,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1.31194496154785,0.483451306819916,1.43492317199707,0.483451426029205,1.43492293357849,0.461797416210175,1.31194496154785,0.461797058582306,0,0.377914428710938,0,0.39946985244751,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,0,0.422106087207794,0,0.443661570549011,5.68106770515442e-008,0.324528306722641,5.40167093276978e-008,0.42895320057869,1,0.428953230381012,1,0.324528366327286,-1.86264514923096e-008,0.681783199310303,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,1,0.681783258914948,1.40453398227692,0.435370922088623,1.50895845890045,0.435370922088623,1.50895833969116,0.413716793060303,1.40453374385834,0.413716793060303,-2.98023223876953e-008,0.554681181907654,0,0.576236605644226,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,0,0.598872840404511,0,0.620428323745728,6.79865479469299e-008,-0.0249462127685547,6.79865479469299e-008,-0.0032920241355896,1,-0.00329195987433195,1,-0.0249461457133293,6.6123902797699e-008,0.0246623754501343,6.79865479469299e-008,0.102389454841614,1,0.102389469742775,1,0.0246623829007149,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,-6.79865479469299e-008,1.08607399463654,1.63381791114807,0.41400158405304,1.63381791114807,0.39234733581543,1.55609035491943,0.392346858978271,1.55609035491943,0.414001107215881,1,0.335379958152771,0,0.335379898548126,0,0.356935381889343,1,0.356935441493988,6.05359673500061e-008,0.225367814302444,5.68106770515442e-008,0.324528306722641,1,0.324528366327286,1,0.225367829203606,-3.07336449623108e-008,0.786208033561707,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,
- 1.47499024868011,0.33920955657959,1.57415175437927,0.339209675788879,1.57415175437927,0.317555546760559,1.47499001026154,0.317555546760559,0,0.466297745704651,0,0.487853288650513,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,0,0.510489463806152,0,0.532044947147369,5.12227416038513e-008,0.544258892536163,5.12227416038513e-008,0.565913140773773,1,0.565913200378418,0.999999940395355,0.544259011745453,5.40167093276978e-008,0.42895320057869,5.12227416038513e-008,0.517103970050812,1,0.517104029655457,1,0.428953230381012,-8.38190317153931e-009,0.593632400035858,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,1,0.593632459640503,1.49693834781647,0.604988694190979,1.58508849143982,0.604988098144531,1.58508837223053,0.583333969116211,1.49693822860718,0.583334565162659,0,0.643064558506012,0,0.664620041847229,1,0.664620041847229,1,0.643064558506012,6.79865479469299e-008,0.102389454841614,6.05359673500061e-008,0.225367814302444,1,0.225367829203606,1,0.102389469742775,-4.2840838432312e-008,0.885368525981903,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1.31194496154785,0.483451306819916,1.43492317199707,0.483451426029205,1.43492293357849,0.461797416210175,1.31194496154785,0.461797058582306,0,0.377914428710938,0,0.39946985244751,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,0,0.422106087207794,0,0.443661570549011,5.68106770515442e-008,0.324528306722641,5.40167093276978e-008,0.42895320057869,1,0.428953230381012,1,0.324528366327286,-1.86264514923096e-008,0.681783199310303,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,1,0.681783258914948,1.40453398227692,0.435370922088623,1.50895845890045,0.435370922088623,1.50895833969116,0.413716793060303,1.40453374385834,0.413716793060303,-2.98023223876953e-008,0.554681181907654,0,0.576236605644226,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,0,0.598872840404511,0,0.620428323745728,6.79865479469299e-008,
- -0.0249462127685547,6.79865479469299e-008,-0.0032920241355896,1,-0.00329195987433195,1,-0.0249461457133293,6.6123902797699e-008,0.0246623754501343,6.79865479469299e-008,0.102389454841614,1,0.102389469742775,1,0.0246623829007149,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,-6.79865479469299e-008,1.08607399463654,1.63381791114807,0.41400158405304,1.63381791114807,0.39234733581543,1.55609035491943,0.392346858978271,1.55609035491943,0.414001107215881,1,0.335379958152771,0,0.335379898548126,0,0.356935381889343,1,0.356935441493988,6.05359673500061e-008,0.225367814302444,5.68106770515442e-008,0.324528306722641,1,0.324528366327286,1,0.225367829203606,-3.07336449623108e-008,0.786208033561707,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,1.47499024868011,0.33920955657959,1.57415175437927,0.339209675788879,1.57415175437927,0.317555546760559,1.47499001026154,0.317555546760559,0,0.466297745704651,0,0.487853288650513,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,0,0.510489463806152,0,0.532044947147369,5.12227416038513e-008,0.544258892536163,5.12227416038513e-008,0.565913140773773,1,0.565913200378418,0.999999940395355,0.544259011745453,5.40167093276978e-008,0.42895320057869,5.12227416038513e-008,0.517103970050812,1,0.517104029655457,1,0.428953230381012,-8.38190317153931e-009,0.593632400035858,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,1,0.593632459640503,1.49693834781647,0.604988694190979,1.58508849143982,0.604988098144531,1.58508837223053,0.583333969116211,1.49693822860718,0.583334565162659,0,0.643064558506012,0,0.664620041847229,1,0.664620041847229,1,0.643064558506012,6.79865479469299e-008,0.102389454841614,6.05359673500061e-008,0.225367814302444,1,0.225367829203606,1,0.102389469742775,-4.2840838432312e-008,0.885368525981903,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1.31194496154785,
- 0.483451306819916,1.43492317199707,0.483451426029205,1.43492293357849,0.461797416210175,1.31194496154785,0.461797058582306,0,0.377914428710938,0,0.39946985244751,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,0,0.422106087207794,0,0.443661570549011,1,0.225367829203606,0.999999940395355,0.885368645191193,1.47499024868011,0.33920955657959,1.47499001026154,0.317555546760559,1,0.487853318452835,1,0.466297835111618,1,0.565913200378418,0.999999940395355,0.544259011745453,1,0.517104029655457,1,0.428953230381012,1,0.681783258914948,1,0.593632459640503,1.49693834781647,0.604988694190979,1.58508849143982,0.604988098144531,1.58508837223053,0.583333969116211,1.49693822860718,0.583334565162659,1,0.664620041847229,1,0.643064558506012,1,0.225367829203606,1,0.102389469742775,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1.31194496154785,0.483451306819916,1.43492317199707,0.483451426029205,1.43492293357849,0.461797416210175,1.31194496154785,0.461797058582306,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,0.469241499900818,2.53516268730164,0.469241380691528,2.49323844909668,0.442208409309387,2.44045972824097,0.442208528518677,2.40482234954834,0.443859338760376,2.40037631988525,0.469240188598633,2.35204410552979,0.443859457969666,2.44490575790405,-0.241306245326996,2.00495171546936,-0.241320967674255,1.9606124162674,0.0546479225158691,1.96051490306854,0.0546627044677734,2.00485420227051,-0.212216079235077,2.09845113754272,-0.212228357791901,2.06076145172119,0.0845352411270142,2.06066393852234,0.0845475196838379,2.09835338592529,0.0827255249023438,2.10305666923523,0.0547114610671997,2.15418267250061,-0.24125748872757,2.15427994728088,-0.213989615440369,2.10315418243408,-0.214005053043365,2.05605983734131,0.0827100276947021,2.05596208572388,-1.1919983625412,1.33677554130554,-0.897770285606384,1.336345911026,-0.897770285606384,1.41641139984131,-1.19199824333191,1.416832447052,-0.897770285606384,1.48861193656921,-0.89777022600174,1.55797731876373,-1.19199824333191,
- 1.55839025974274,-1.19199824333191,1.48902475833893,-0.89777022600174,1.5633270740509,-0.897770285606384,1.63016438484192,-1.19199824333191,1.63057696819305,-1.19199824333191,1.56373977661133,-1.19199824333191,1.48367464542389,-0.89777022600174,1.48326182365417,-0.972893476486206,2.00669717788696,-1.21859073638916,2.00669717788696,-1.21859049797058,1.92878413200378,-0.972892940044403,1.92878401279449,-1.218590259552,1.8556797504425,-1.21859049797058,1.78542804718018,-0.972892761230469,1.78542792797089,-0.97289252281189,1.85567951202393,-1.21859049797058,1.78001070022583,-1.21858930587769,1.71232354640961,-0.972890496253967,1.71232318878174,-0.972892761230469,1.78001058101654,-0.97289252281189,1.86109757423401,-1.218590259552,1.8610976934433,0,-1.13101959228516,0.320881128311157,-1.13101959228516,0.322051644325256,-1.04781460762024,0,-1.04781460762024,-0.678365230560303,0.15657165646553,-0.57622241973877,0.156571835279465,-0.570942878723145,0.161855012178421,-0.570943474769592,0.25517937541008,-0.678367614746094,0.255178213119507,0,-1.27815794944763,0.320180773735046,-1.27815794944763,0.320346832275391,-1.20412182807922,0,-1.20412182807922,0.320366263389587,-1.19870471954346,0,-1.19870471954346,-1.19209289550781e-007,-1.35376286506653,0.319639801979065,-1.35376286506653,0.374609291553497,2.62964296340942,0.323696613311768,2.65408945083618,0.319603800773621,2.65255403518677,0.29799747467041,2.60196304321289,0.358175128698349,2.57765698432922,0.379891574382782,2.63089942932129,1.5632438659668,1.95893800258636,1.60220515727997,1.95893812179565,1.60432958602905,1.96106278896332,1.60432934761047,1.99860095977783,1.56111907958984,1.99860179424286,1.56111943721771,1.96106243133545,-1.45692801475525,1.55876195430756,-1.45692801475525,1.48939657211304,-1.45692801475525,1.56411147117615,-1.45692801475525,1.63094878196716,-1.45692813396454,1.33716249465942,-1.45692801475525,1.41721165180206,-1.45692801475525,1.48404633998871,-1.66298985481262,1.55905103683472,-1.6629900932312,1.48968577384949,-1.66298985481262,1.56440055370331,
- -1.6629900932312,1.63123786449432,-1.6629900932312,1.33746337890625,-1.6629900932312,1.41750657558441,-1.66298985481262,1.48433542251587,-1.83798456192017,1.55929660797119,-1.83798456192017,1.48993134498596,-1.83798456192017,1.56464600563049,-1.83798456192017,1.63148331642151,-1.83798480033875,1.33771872520447,-1.83798456192017,1.41775703430176,-1.83798456192017,1.48458099365234,-1.84211456775665,1.85567998886108,-1.84211468696594,1.78542828559875,-1.51881527900696,1.78542828559875,-1.51881527900696,1.85567986965179,-1.51881527900696,1.86109781265259,-1.84211456775665,1.86109805107117,-1.51881515979767,1.92878437042236,-1.84211444854736,1.92878437042236,-1.51881527900696,2.00669717788696,-1.84211373329163,2.00669741630554,-1.84211468696594,1.78001070022583,-1.842116355896,1.71232426166534,-1.51881575584412,1.71232390403748,-1.51881527900696,1.78001070022583,-1.97289657592773,1.85568010807037,-1.97289621829987,1.78542840480804,-1.97289657592773,1.86109817028046,-1.97289609909058,1.92878448963165,-1.97289538383484,2.00669741630554,-1.97289621829987,1.78001081943512,-1.97289860248566,1.71232438087463,0.598992347717285,-1.27815794944763,0.85611093044281,-1.27815794944763,0.856111168861389,-1.20412182807922,0.599447727203369,-1.20412182807922,0.598290205001831,-1.35376286506653,0.856111168861389,-1.35376310348511,0.60029661655426,-1.13101959228516,0.856111168861389,-1.13101959228516,0.8561110496521,-1.04781460762024,0.60160756111145,-1.04781472682953,0.85611093044281,-1.19870471954346,0.599491238594055,-1.19870471954346,1.00000011920929,-1.27815794944763,0.99999988079071,-1.20412182807922,1,-1.35376262664795,1.00000011920929,-1.13101959228516,1,-1.04781460762024,1.00000011920929,-1.19870471954346,0.287710309028625,2.40482234954834,0.287710189819336,2.44045972824097,0.0798181295394897,2.44045972824097,0.0798183679580688,2.40482234954834,0.289386391639709,2.44490575790405,0.0815284252166748,2.44490575790405,0.315156698226929,2.49323844909668,0.107821226119995,2.49323844909668,0.315156817436218,2.53516268730164,0.107821345329285,
- 2.53516268730164,0.0815283060073853,2.40037631988525,0.107820272445679,2.35204362869263,0.315155625343323,2.35204386711121,0.28938627243042,2.40037631988525,-0.29130232334137,2.44045972824097,-0.291302084922791,2.40482234954834,-0.289531409740448,2.44490575790405,-0.262305796146393,2.49323844909668,-0.262305557727814,2.53516292572021,-0.289531528949738,2.40037608146667,-0.262306272983551,2.35204339027405,-0.524390816688538,2.44045972824097,-0.524390578269959,2.40482234954834,-0.522581815719604,2.44490575790405,-0.494770288467407,2.49323844909668,-0.494770050048828,2.53516292572021,-0.522581934928894,2.4003758430481,-0.494770526885986,2.35204315185547,-0.870133996009827,2.44045948982239,-0.870133757591248,2.40482234954834,-0.868268489837646,2.44490551948547,-0.839587926864624,2.49323844909668,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,0.544988751411438,2.09820222854614,0.544976234436035,2.06051254272461,0.999991893768311,2.06036305427551,1.00000405311584,2.09805250167847,0.543075799942017,2.05581068992615,0.998017072677612,2.05566096305847,0.513871073722839,2.00470304489136,0.967668056488037,2.00455355644226,0.513855934143066,1.9603636264801,0.967653036117554,1.96021413803101,0.998032569885254,2.1027557849884,0.967716932296753,2.1538827419281,0.513919949531555,2.15403175354004,0.543091297149658,2.1029052734375,0.397302031517029,2.0982506275177,0.397289752960205,2.06056118011475,0.395428895950317,2.10295391082764,0.366628646850586,2.1540801525116,0.366564869880676,1.96041214466095,0.36657977104187,2.00475144386292,0.395413398742676,2.05585932731628,0.22608745098114,2.09830689430237,0.226075053215027,2.06061744689941,0.224226832389832,2.05591559410095,0.195823550224304,2.00480771064758,0.1958087682724,1.96046841144562,0.19587242603302,2.15413618087769,0.224242329597473,2.1030101776123,-0.501843214035034,2.00503754615784,0.999999940395355,0.809879004955292,1.55048060417175,0.317555546760559,1,0.320898711681366,1.57052206993103,0.339209675788879,0.831901431083679,
- 2.44490575790405,0.828465819358826,2.40482258796692,0.828465819358826,2.44045996665955,0.884720742702484,2.49323844909668,0.88471931219101,2.35204434394836,0.884720742702484,2.53516244888306,0.831901431083679,2.40037655830383,0.103080749511719,0.574472188949585,0.103668212890625,0.487653970718384,0.107944488525391,0.48108172416687,0.155969619750977,0.48108172416687,0.160168647766113,0.487653970718384,0.159582138061523,0.574472188949585,-0.0530261993408203,0.612486362457275,-0.0530261993408203,0.574472188949585,6.05359673500061e-008,0.225367814302444,5.69647582437938e-008,0.320426851511002,1,0.320426911115646,1,0.225367829203606,-3.12344283770472e-008,0.790309548377991,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,0.79030966758728,0,0.466297745704651,0,0.487853288650513,1,0.487853318452835,1,0.466297835111618,0.999999940395355,0.78489226102829,1,0.70090514421463,-1.48783328768332e-007,0.700905025005341,-3.19196260534227e-008,0.784892141819,1.55463659763336,0.365085333585739,1.55463659763336,0.433059513568878,1.55153596401215,0.436159819364548,1.47968232631683,0.436157464981079,1.47968316078186,0.361985594034195,1.55153596401215,0.36198502779007,5.68106770515442e-008,0.324528306722641,1,0.324528366327286,1,0.324528366327286,1,0.428953230381012,1,0.681783258914948,0.999999940395355,0.786208152770996,1,0.554681181907654,1,0.576236605644226,1,0.620428323745728,1,0.598872840404511,1,-0.0249461457133293,1,-0.00329195987433195,1,0.0246623829007149,1,0.102389469742775,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1,0.335379958152771,1,0.356935441493988,1,0.225367829203606,1,0.324528366327286,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,1,0.466297835111618,1,0.487853318452835,1,0.532044947147369,1,0.510489463806152,0.999999940395355,0.544259011745453,1,0.565913200378418,1,0.428953230381012,1,0.517104029655457,1,0.593632459640503,1,0.681783258914948,1,0.643064558506012,1,0.664620041847229,1,0.102389469742775,1,0.225367829203606,
- 0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,1,0.37791445851326,1,0.399469941854477,1,0.443661630153656,1,0.422106146812439,1,0.324528366327286,1,0.428953230381012,1,0.681783258914948,0.999999940395355,0.786208152770996,1,0.554681181907654,1,0.576236605644226,1,0.620428323745728,1,0.598872840404511,1,-0.0249461457133293,1,-0.00329195987433195,1,0.0246623829007149,1,0.102389469742775,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1,0.335379958152771,1,0.356935441493988,1,0.225367829203606,1,0.324528366327286,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,1,0.466297835111618,1,0.487853318452835,1,0.532044947147369,1,0.510489463806152,0.999999940395355,0.544259011745453,1,0.565913200378418,1,0.428953230381012,1,0.517104029655457,1,0.593632459640503,1,0.681783258914948,1,0.643064558506012,1,0.664620041847229,1,0.102389469742775,1,0.225367829203606,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,1,0.37791445851326,1,0.399469941854477,1,0.443661630153656,1,0.422106146812439,1,0.324528366327286,1,0.428953230381012,1,0.681783258914948,0.999999940395355,0.786208152770996,1,0.554681181907654,1,0.576236605644226,1,0.620428323745728,1,0.598872840404511,1,-0.0249461457133293,1,-0.00329195987433195,1,0.0246623829007149,1,0.102389469742775,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1,0.335379958152771,1,0.356935441493988,1,0.225367829203606,1,0.324528366327286,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,1,0.466297835111618,1,0.487853318452835,1,0.532044947147369,1,0.510489463806152,0.999999940395355,0.544259011745453,1,0.565913200378418,1,0.428953230381012,1,0.517104029655457,1,0.593632459640503,1,0.681783258914948,1,0.643064558506012,1,0.664620041847229,-0.0470878817141056,0.0616587325930595,1,0.102389469742775,1,0.225367829203606,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-0.0301243625581265,1.04910898208618,0.00810807757079601,0.378267168998718,1,0.37791445851326,
- 1,0.399469941854477,-0.00798964593559504,0.399291962385178,1,0.443661630153656,1,0.422106146812439,-0.972893476486206,2.00669717788696,-1.21859073638916,2.00669717788696,-1.21859049797058,1.92878413200378,-0.972892940044403,1.92878401279449,-1.218590259552,1.8556797504425,-1.21859049797058,1.78542804718018,-0.972892761230469,1.78542792797089,-0.97289252281189,1.85567951202393,-1.21859049797058,1.78001070022583,-1.21858930587769,1.71232354640961,-0.972890496253967,1.71232318878174,-0.972892761230469,1.78001058101654,-0.97289252281189,1.86109757423401,-1.218590259552,1.8610976934433,0,-1.13101959228516,0.320881128311157,-1.13101959228516,0.322051644325256,-1.04781460762024,0,-1.04781460762024,0,-1.27815794944763,0.320180773735046,-1.27815794944763,0.320346832275391,-1.20412182807922,0,-1.20412182807922,0.320366263389587,-1.19870471954346,0,-1.19870471954346,-1.19209289550781e-007,-1.35376286506653,0.319639801979065,-1.35376286506653,0.598992347717285,-1.27815794944763,0.599447727203369,-1.20412182807922,0.598290205001831,-1.35376286506653,0.60029661655426,-1.13101959228516,0.60160756111145,-1.04781472682953,0.599491238594055,-1.19870471954346,0.0815284252166748,2.44490575790405,0.107821226119995,2.49323844909668,-0.29130232334137,2.44045972824097,-0.291302084922791,2.40482234954834,-0.289531409740448,2.44490575790405,-0.262305796146393,2.49323844909668,-0.262305557727814,2.53516292572021,-0.289531528949738,2.40037608146667,-0.262306272983551,2.35204339027405,-0.524390816688538,2.44045972824097,-0.524390578269959,2.40482234954834,-0.522581815719604,2.44490575790405,-0.494770288467407,2.49323844909668,-0.494770050048828,2.53516292572021,-0.522581934928894,2.4003758430481,-0.494770526885986,2.35204315185547,-0.870133996009827,2.44045948982239,-0.870133757591248,2.40482234954834,-0.868268489837646,2.44490551948547,-0.839587926864624,2.49323844909668,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,6.05359673500061e-008,0.225367814302444,5.69647582437938e-008,0.320426851511002,
- -3.12344283770472e-008,0.790309548377991,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0,0.487853288650513,-1.48783328768332e-007,0.700905025005341,-3.19196260534227e-008,0.784892141819,5.68106770515442e-008,0.324528306722641,0.278720885515213,0.42895320057869,0.278720855712891,0.598872840404511,0.295550256967545,0.681783199310303,0.295550256967545,0.620428323745728,0.210515081882477,0.576236605644226,0.21051512658596,0.324528336524963,0.227347925305367,0.554681181907654,0.227347910404205,0.786208033561707,0.175669312477112,-0.0249462015926838,0.175669178366661,1.08607399463654,0.158836677670479,0.0246623773127794,0.158836677670479,-0.00329201412387192,0.22643207013607,1.00834691524506,0.226432129740715,0.356935411691666,0.209599316120148,0.102389454841614,0.209599256515503,0.335379928350449,0.157427772879601,0.324528306722641,0.157427728176117,0.510489463806152,0.174261376261711,0.786208033561707,0.174261420965195,0.532044887542725,0.092662513256073,0.487853288650513,0.0926625654101372,0.225367814302444,0.109497107565403,0.466297745704651,0.109497062861919,0.885368525981903,0.09112548828125,0.544258892536163,0.0911254957318306,0.517103970050812,0.107961528003216,0.593632400035858,0.10796158015728,0.565913140773773,0.0335510969161987,0.664620041847229,0.0335511490702629,0.42895320057869,0.0503891259431839,0.643064558506012,0.0503891073167324,0.681783199310303,0.03294438123703,0.225367814302444,0.0329443216323853,0.422106087207794,0.0497779585421085,0.885368585586548,0.0497780032455921,0.443661600351334,0.419778823852539,0.487853288650513,0.419778853654861,0.225367814302444,0.436609953641891,0.466297775506973,0.436609894037247,0.885368585586548,0.418240010738373,0.544258952140808,0.418240040540695,0.517103970050812,0.435080409049988,0.593632459640503,0.43508043885231,0.565913140773773,0.360666513442993,0.664620041847229,0.360666543245316,0.428953230381012,0.377501100301743,0.643064558506012,0.377501100301743,0.681783199310303,0.360057145357132,0.225367814302444,0.36005711555481,0.422106087207794,0.376892507076263,
- 0.885368585586548,0.376892566680908,0.443661570549011,0.279738545417786,0.399469882249832,0.27973860502243,0.102389462292194,0.296572268009186,0.377914428710938,0.296572208404541,1.00834703445435,-0.846369504928589,1.63009214401245,-0.846369504928589,1.33627092838287,-0.853471755981445,1.48854982852936,-0.898678779602051,1.55797863006592,-0.897770166397095,1.55660998821259,-0.848071277141571,1.48319208621979,-0.898203313350677,1.56332778930664,-0.89777022600174,1.56387424468994,-0.452182471752167,2.06084036827087,-0.390656232833862,2.1032121181488,-0.452548384666443,2.15434908866882,-0.452611804008484,1.9606819152832,-0.391974598169327,2.09851026535034,-0.521923780441284,2.00495362281799,-0.501847624778748,1.99174547195435,-0.461447328329086,2.05614113807678,-0.485747456550598,2.03591156005859,0.499999910593033,0.320898681879044,0.50000011920929,0.612486362457275,0.50000011920929,0.574472188949585,0.499999821186066,0.809878945350647,0.951322555541992,0.428953230381012,0.951322555541992,0.598872840404511,0.968156218528748,0.681783258914948,0.968156218528748,0.620428323745728,0.883117496967316,0.576236605644226,0.883117496967316,0.324528366327286,0.899953067302704,0.554681181907654,0.899953007698059,0.786208152770996,0.848273515701294,-0.0249461550265551,0.848273456096649,1.08607411384583,0.831439018249512,0.0246623829007149,0.831439018249512,-0.0032919708173722,0.899039745330811,1.00834703445435,0.899039804935455,0.356935411691666,0.88220351934433,0.102389469742775,0.88220351934433,0.335379928350449,0.830029368400574,0.324528366327286,0.830029368400574,0.510489463806152,0.846865594387054,0.786208152770996,0.846865653991699,0.532044947147369,0.765264213085175,0.487853288650513,0.765264213085175,0.225367829203606,0.782099723815918,0.466297805309296,0.782099664211273,0.885368645191193,0.763732254505157,0.544258952140808,0.763732314109802,0.517104029655457,0.780567526817322,0.593632459640503,0.780567526817322,0.565913200378418,0.706158816814423,0.664620041847229,0.706158816814423,0.428953230381012,0.722991645336151,0.643064558506012,
- 0.722991645336151,0.681783199310303,0.70511519908905,0.225367814302444,0.70511519908905,0.422106117010117,0.72194629907608,0.885368585586548,0.721946358680725,0.443661600351334,0.624794065952301,0.399469912052155,0.624794065952301,0.102389462292194,0.641626060009003,0.37791445851326,0.641626000404358,1.00834703445435,0.623491525650024,0.428953230381012,0.623491525650024,0.598872840404511,0.640326976776123,0.681783199310303,0.640326976776123,0.620428323745728,0.555287480354309,0.576236605644226,0.555287480354309,0.324528336524963,0.572123765945435,0.554681181907654,0.57212370634079,0.786208093166351,0.520442545413971,-0.024946179240942,0.520442366600037,1.08607411384583,0.503608226776123,0.0246623791754246,0.503608226776123,-0.00329199177213013,0.571207046508789,1.00834703445435,0.571207106113434,0.356935441493988,0.554376065731049,0.102389469742775,0.554376006126404,0.335379958152771,0.502202689647675,0.324528336524963,0.502202689647675,0.510489463806152,0.519035458564758,0.786208093166351,0.519035518169403,0.532044947147369,0.437436640262604,0.487853318452835,0.437436670064926,0.225367814302444,0.454270362854004,0.466297775506973,0.454270303249359,0.885368585586548,0.435902148485184,0.544258952140808,0.435902178287506,0.517104029655457,0.452736496925354,0.593632459640503,0.452736526727676,0.565913200378418,0.378326952457428,0.664620041847229,0.37832698225975,0.428953230381012,0.395163238048553,0.643064558506012,0.395163238048553,0.681783199310303,0.377457767724991,0.225367814302444,0.377457737922668,0.422106087207794,0.394289642572403,0.885368585586548,0.394289702177048,0.443661570549011,0.297137439250946,0.399469882249832,0.297137498855591,0.102389462292194,0.313969403505325,0.377914428710938,0.313969343900681,1.00834703445435,0.29583665728569,0.42895320057869,0.295836627483368,0.598872840404511,0.312672048807144,0.681783258914948,0.312672048807144,0.620428323745728,0.227632582187653,0.576236605644226,0.227632626891136,0.324528306722641,0.244467988610268,0.554681181907654,0.244467973709106,0.786208033561707,0.192786782979965,
- -0.0249462015926838,0.192786648869514,1.08607399463654,0.175953298807144,0.0246623773127794,0.175953298807144,-0.00329201272688806,0.243551269173622,1.00834703445435,0.243551328778267,0.356935381889343,0.226721107959747,0.102389462292194,0.226721048355103,0.335379928350449,0.174546107649803,0.324528336524963,0.17454606294632,0.510489463806152,0.191380575299263,0.786208093166351,0.191380620002747,0.532044947147369,0.109782576560974,0.487853288650513,0.109782628715038,0.225367814302444,0.126612856984138,0.466297745704651,0.126612797379494,0.885368525981903,0.108245551586151,0.544258952140808,0.108245559036732,0.517103970050812,0.125079870223999,0.593632400035858,0.125079914927483,0.565913140773773,0.0506720542907715,0.664620041847229,0.0506721064448357,0.42895320057869,0.0675057396292686,0.643064558506012,0.0675057247281075,0.681783199310303,0.0494360290467739,0.225367814302444,0.0494359731674194,0.422106087207794,0.0662687718868256,0.885368525981903,0.0662688165903091,0.443661600351334,0.936463117599487,-1.04781460762024,0.936463236808777,-1.35376286506653,0.88775110244751,-1.13101959228516,-1.79625225067139,1.4176971912384,-1.41507005691528,1.85567998886108,-1.4702068567276,1.92878437042236,-1.42193484306335,1.71232378482819,-1.42193484306335,2.00669717788696,-1.37172079086304,1.78001070022583,-1.37126636505127,1.78542816638947,-1.42028760910034,1.86109781265259,0.836397647857666,-1.20412182807922,0.883243501186371,-1.27815794944763,0.836870491504669,-1.19870471954346,0.0866408869624138,2.44490575790405,0.0210418701171875,2.40482234954834,0.0801944062113762,2.44143772125244,0.14249923825264,2.49323844909668,0.10782129317522,2.51680517196655,0.0782454758882523,2.44045972824097,0.0783500075340271,2.35204362869263,0.0783510431647301,2.53516268730164,0.0198056362569332,2.40037631988525,0.963640809059143,0.225367829203606,0.963640809059143,0.487853318452835,0.963405311107636,0.885368645191193,0.96340537071228,0.466297835111618,0.874859690666199,0.320426911115646,0.871018826961517,0.324528366327286,0.871018826961517,0.70090514421463,
- 0.87462592124939,0.79030966758728,0.870806217193604,0.784892201423645,-0.522581934928894,2.4003758430481,-0.494770526885986,2.35204315185547,-0.411120772361755,2.35204315185547,-0.465184926986694,2.4003758430481,-0.524390578269959,2.40482234954834,-0.524390816688538,2.44045972824097,-0.870133996009827,2.44045948982239,-0.870133757591248,2.40482234954834,-0.522581815719604,2.44490575790405,-0.868268489837646,2.44490551948547,-0.494770288467407,2.49323844909668,-0.839587926864624,2.49323844909668,-0.494770050048828,2.53516292572021,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,-0.463344395160675,2.40482234954834,-0.40262359380722,2.44045972824097,-0.393752545118332,2.44490575790405,-0.339682787656784,2.49323844909668,-0.411120176315308,2.53516292572021,6.79865479469299e-008,0.102389454841614,0.202863156795502,0.102389454841614,0.122542016208172,0.225367829203606,6.05359673500061e-008,0.225367814302444,-4.2840838432312e-008,0.885368525981903,0.105709485709667,0.885368525981903,0.18602979183197,1.00834691524506,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.186029851436615,0.37791445851326,0.202863097190857,0.39946985244751,0,0.39946985244751,5.68106770515442e-008,0.324528306722641,0.272367984056473,0.324528336524963,0.204163953661919,0.42895320057869,5.40167093276978e-008,0.42895320057869,-1.86264514923096e-008,0.681783199310303,0.187327176332474,0.681783199310303,0.255531162023544,0.786208093166351,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.255531191825867,0.554681181907654,0.27236795425415,0.576236605644226,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.307212591171265,-0.0249461941421032,0.324045211076736,-0.00329200318083167,6.79865479469299e-008,-0.0032920241355896,6.6123902797699e-008,0.0246623754501343,0.324045181274414,0.0246623773127794,0.273278653621674,0.102389454841614,6.79865479469299e-008,0.102389454841614,6.05359673500061e-008,0.225367814302444,0.390217989683151,0.225367814302444,
- 0.325454503297806,0.324528336524963,5.68106770515442e-008,0.324528306722641,-3.07336449623108e-008,0.786208033561707,0.308618545532227,0.786208093166351,0.373385459184647,0.885368585586548,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0.373385518789291,0.466297775506973,0.390217959880829,0.487853288650513,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.391753733158112,0.544258952140808,0.374919414520264,0.565913140773773,5.12227416038513e-008,0.565913140773773,5.40167093276978e-008,0.42895320057869,0.449328511953354,0.428953230381012,0.391753762960434,0.517103970050812,5.12227416038513e-008,0.517103970050812,-8.38190317153931e-009,0.593632400035858,0.374919384717941,0.593632400035858,0.432493507862091,0.681783199310303,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.432493507862091,0.643064558506012,0.449328482151031,0.664620041847229,0,0.664620041847229,6.79865479469299e-008,0.102389454841614,0.55397641658783,0.102389462292194,0.450563758611679,0.225367814302444,6.05359673500061e-008,0.225367814302444,-4.2840838432312e-008,0.885368525981903,0.433729499578476,0.885368585586548,0.537142157554626,1.00834691524506,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.537142217159271,0.377914428710938,0.553976356983185,0.399469912052155,0,0.39946985244751,0.85611093044281,-1.27815794944763,0.620778262615204,-1.27815794944763,0.856111168861389,-1.35376310348511,0.85611093044281,-1.19870471954346,0.856111168861389,-1.13101959228516,0.617288291454315,-1.13101959228516,0.669043660163879,-1.19870471954346,1.00000011920929,-1.27815794944763,0.99999988079071,-1.20412182807922,0.856111168861389,-1.20412182807922,1,-1.35376262664795,1.00000011920929,-1.13101959228516,1,-1.04781460762024,0.8561110496521,-1.04781460762024,1.00000011920929,-1.19870471954346,0.999999940395355,0.78489226102829,1,0.70090514421463,0.628980576992035,0.700905084609985,0.629194438457489,0.78489226102829,1,0.320426911115646,0.625141024589539,0.320426881313324,0.62898063659668,0.324528336524963,1,0.324528366327286,
- 5.68106770515442e-008,0.324528306722641,0.289484590291977,0.324528336524963,0.221278831362724,0.42895320057869,5.40167093276978e-008,0.42895320057869,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,-1.86264514923096e-008,0.681783199310303,0.204448968172073,0.681783199310303,0.272652089595795,0.786208033561707,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.272652119398117,0.554681181907654,0.289484560489655,0.576236605644226,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.324330925941467,-0.0249461904168129,0.341163545846939,-0.0032920022495091,6.79865479469299e-008,-0.0032920241355896,6.6123902797699e-008,0.0246623754501343,0.341163516044617,0.0246623754501343,0.290399610996246,0.102389454841614,6.79865479469299e-008,0.102389454841614,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,6.05359673500061e-008,0.225367814302444,0.407337158918381,0.225367814302444,0.342572003602982,0.324528336524963,5.68106770515442e-008,0.324528306722641,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,-3.07336449623108e-008,0.786208033561707,0.325738608837128,0.786208093166351,0.3905029296875,0.885368585586548,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0.390502989292145,0.466297775506973,0.407337129116058,0.487853288650513,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.408874660730362,0.544258952140808,0.392038613557816,0.565913200378418,5.12227416038513e-008,0.565913140773773,5.40167093276978e-008,0.42895320057869,0.466448575258255,0.428953230381012,0.408874690532684,0.517104029655457,5.12227416038513e-008,0.517103970050812,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,-8.38190317153931e-009,0.593632400035858,
- 0.392038583755493,0.593632400035858,0.449610114097595,0.681783199310303,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.449610114097595,0.643064558506012,0.466448545455933,0.664620041847229,0,0.664620041847229,6.79865479469299e-008,0.102389454841614,0.547377526760101,0.102389469742775,0.467055410146713,0.225367814302444,6.05359673500061e-008,0.225367814302444,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,-4.2840838432312e-008,0.885368525981903,0.450222045183182,0.885368585586548,0.530544936656952,1.00834703445435,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.530544996261597,0.377914428710938,0.547377467155457,0.399469912052155,0,0.39946985244751,5.68106770515442e-008,0.324528306722641,0.616882681846619,0.324528336524963,0.548677325248718,0.42895320057869,5.40167093276978e-008,0.42895320057869,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,-1.86264514923096e-008,0.681783199310303,0.531843245029449,0.681783199310303,0.600046336650848,0.786208152770996,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.600046396255493,0.554681181907654,0.616882681846619,0.576236605644226,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.651725947856903,-0.0249461680650711,0.668560266494751,-0.00329198129475117,6.79865479469299e-008,-0.0032920241355896,6.6123902797699e-008,0.0246623754501343,0.668560266494751,0.0246623810380697,0.617796361446381,0.102389462292194,6.79865479469299e-008,0.102389454841614,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,6.05359673500061e-008,0.225367814302444,0.734735727310181,0.225367844104767,0.669970512390137,0.324528336524963,5.68106770515442e-008,0.324528306722641,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,
- 1.52901220321655,0.410801976919174,-3.07336449623108e-008,0.786208033561707,0.653132855892181,0.786208152770996,0.717898905277252,0.885368585586548,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0.717898964881897,0.466297805309296,0.734735727310181,0.487853318452835,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.73626708984375,0.544258952140808,0.719431936740875,0.565913200378418,5.12227416038513e-008,0.565913140773773,5.40167093276978e-008,0.42895320057869,0.793840229511261,0.428953230381012,0.736267149448395,0.517104029655457,5.12227416038513e-008,0.517103970050812,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,-8.38190317153931e-009,0.593632400035858,0.719431936740875,0.593632459640503,0.777007818222046,0.681783258914948,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.777007818222046,0.643064558506012,0.793840229511261,0.664620041847229,0,0.664620041847229,6.79865479469299e-008,0.102389454841614,0.875205814838409,0.102389462292194,0.79488468170166,0.225367829203606,6.05359673500061e-008,0.225367814302444,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,-4.2840838432312e-008,0.885368525981903,0.778053045272827,0.885368585586548,0.85837334394455,1.00834703445435,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.858373403549194,0.37791445851326,0.875205814838409,0.399469912052155,0,0.39946985244751,5.68106770515442e-008,0.324528306722641,0.944712400436401,0.324528366327286,0.876508355140686,0.428953230381012,5.40167093276978e-008,0.42895320057869,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,-1.86264514923096e-008,0.681783199310303,0.859671652317047,0.681783258914948,0.927875638008118,0.786208152770996,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.927875697612762,
- 0.554681181907654,0.944712400436401,0.576236605644226,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.979556977748871,-0.0249461457133293,0.996390461921692,-0.00329196010716259,6.79865479469299e-008,-0.0032920241355896,6.6123902797699e-008,0.0246623754501343,0.996390461921692,0.0246623829007149,0.94562304019928,0.102389469742775,6.79865479469299e-008,0.102389454841614,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,6.05359673500061e-008,0.225367814302444,1,0.225367829203606,0.997796356678009,0.324528396129608,5.68106770515442e-008,0.324528306722641,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,-3.07336449623108e-008,0.786208033561707,0.980962991714478,0.786208152770996,0.999999940395355,0.815355539321899,0.999999940395355,0.885368645191193,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,1,0.466297835111618,1,0.487853318452835,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.999999940395355,0.544259011745453,1,0.565913200378418,5.12227416038513e-008,0.565913140773773,5.40167093276978e-008,0.42895320057869,1,0.428953230381012,1,0.517104029655457,5.12227416038513e-008,0.517103970050812,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,-8.38190317153931e-009,0.593632400035858,1,0.593632459640503,1,0.681783258914948,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,1,0.643064558506012,1,0.664620041847229,0,0.664620041847229,6.79865479469299e-008,0.102389454841614,1,0.102389469742775,1,0.225367829203606,6.05359673500061e-008,0.225367814302444,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-5.77419996261597e-008,
- 1.00834691524506,0,0.377914428710938,1,0.37791445851326,1,0.399469941854477,0,0.39946985244751,1,0.443661630153656,0,0.443661570549011,0,0.422106087207794,1,0.422106146812439,5.68106770515442e-008,0.324528306722641,1,0.324528366327286,1,0.428953230381012,5.40167093276978e-008,0.42895320057869,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,0.999999940395355,0.786208152770996,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,1,0.554681181907654,1,0.576236605644226,0,0.576236605644226,1,0.620428323745728,0,0.620428323745728,0,0.598872840404511,1,0.598872840404511,6.79865479469299e-008,-0.0249462127685547,1,-0.0249461457133293,1,-0.00329195987433195,6.79865479469299e-008,-0.0032920241355896,6.6123902797699e-008,0.0246623754501343,1,0.0246623829007149,1,0.102389469742775,6.79865479469299e-008,0.102389454841614,0.999999940395355,1.08607411384583,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,1,0.335379958152771,1,0.356935441493988,0,0.356935381889343,0,0.335379898548126,6.05359673500061e-008,0.225367814302444,1,0.225367829203606,1,0.324528366327286,5.68106770515442e-008,0.324528306722641,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,1,0.466297835111618,1,0.487853318452835,0,0.487853288650513,1,0.532044947147369,0,0.532044947147369,0,0.510489463806152,1,0.510489463806152,5.12227416038513e-008,0.544258892536163,0.999999940395355,0.544259011745453,1,0.565913200378418,5.12227416038513e-008,
- 0.565913140773773,5.40167093276978e-008,0.42895320057869,1,0.428953230381012,1,0.517104029655457,5.12227416038513e-008,0.517103970050812,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,-8.38190317153931e-009,0.593632400035858,1,0.593632459640503,1,0.681783258914948,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,1,0.643064558506012,1,0.664620041847229,0,0.664620041847229,6.79865479469299e-008,0.102389454841614,1,0.102389469742775,1,0.225367829203606,6.05359673500061e-008,0.225367814302444,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,1,0.37791445851326,1,0.399469941854477,0,0.39946985244751,1,0.443661630153656,0,0.443661570549011,0,0.422106087207794,1,0.422106146812439,6.05359673500061e-008,0.225367814302444,0.0802208706736565,0.225367814302444,5.69470337552502e-008,0.320898771286011,0,0.466297745704651,0.0633892938494682,0.466297745704651,0.0802208185195923,0.487853288650513,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.0817601233720779,0.544258892536163,0.0649188682436943,0.565913140773773,5.12227416038513e-008,0.565913140773773,5.40167093276978e-008,0.42895320057869,0.139333173632622,0.42895320057869,0.0817601308226585,0.517103970050812,5.12227416038513e-008,0.517103970050812,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,-8.38190317153931e-009,0.593632400035858,0.0649188160896301,0.593632400035858,0.122498124837875,0.681783199310303,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.122498139739037,0.643064558506012,0.139333128929138,0.664620041847229,0,0.664620041847229,6.79865479469299e-008,0.102389454841614,0.220261216163635,0.102389454841614,
- 0.139942571520805,0.225367814302444,6.05359673500061e-008,0.225367814302444,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,-4.2840838432312e-008,0.885368525981903,0.123107485473156,0.885368525981903,0.203427791595459,1.00834691524506,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.203427851200104,0.377914428710938,0.22026115655899,0.399469882249832,0,0.39946985244751,-1.1919983625412,1.33677554130554,-0.897770285606384,1.336345911026,-0.897770285606384,1.41641139984131,-1.19199824333191,1.416832447052,-0.897770285606384,1.48861193656921,-0.89777022600174,1.55797731876373,-1.19199824333191,1.55839025974274,-1.19199824333191,1.48902475833893,0.43391352891922,2.58150959014893,0.43390679359436,2.66766047477722,0.429037749767303,2.67253661155701,0.339631170034409,2.67253804206848,0.334756433963776,2.66765928268433,0.334752023220062,2.5815098285675,-0.89777022600174,1.5633270740509,-0.897770285606384,1.63016438484192,-1.19199824333191,1.63057696819305,-1.19199824333191,1.56373977661133,-1.19199824333191,1.48367464542389,-0.89777022600174,1.48326182365417,-1.218590259552,1.8556797504425,-1.21859049797058,1.78542804718018,-1.07492828369141,1.78542804718018,-1.0309807062149,1.85567951202393,1.44807887077332,1.90603685379028,1.44807815551758,1.83878660202026,1.45188426971436,1.83497309684753,1.52168691158295,1.83498048782349,1.52549195289612,1.8387862443924,1.52549386024475,1.90603494644165,-1.21859049797058,1.78001070022583,-1.21858930587769,1.71232354640961,-1.02405107021332,1.71232318878174,-1.0744743347168,1.78001070022583,0,-1.13101959228516,0.320881128311157,-1.13101959228516,0.322051644325256,-1.04781460762024,0,-1.04781460762024,0,-1.27815794944763,0.320180773735046,-1.27815794944763,0.320346832275391,-1.20412182807922,0,-1.20412182807922,-0.845144748687744,0.286901205778122,-0.845146059989929,0.173981413245201,-0.838751912117004,0.167590484023094,-0.715163290500641,0.167588025331497,-0.715160012245178,0.286897599697113,
- 0.320366263389587,-1.19870471954346,0,-1.19870471954346,-1.19209289550781e-007,-1.35376286506653,0.319639801979065,-1.35376286506653,-1.27640271186829,1.55850875377655,-1.32222640514374,1.48920750617981,-1.32933747768402,1.63076972961426,-1.27688324451447,1.5638587474823,-0.837984681129456,1.48852801322937,-0.837984681129456,1.55789351463318,-0.837984681129456,1.48317790031433,-0.837984681129456,1.41632580757141,-0.837984681129456,1.33625864982605,-0.837984681129456,1.56324315071106,-0.837984681129456,1.63008046150208,-1.84211456775665,1.85567998886108,-1.84211468696594,1.78542828559875,-1.51881527900696,1.78542828559875,-1.51881527900696,1.85567986965179,-1.51881527900696,1.86109781265259,-1.84211456775665,1.86109805107117,-1.51881515979767,1.92878437042236,-1.84211444854736,1.92878437042236,-1.51881527900696,2.00669717788696,-1.84211373329163,2.00669741630554,-1.84211468696594,1.78001070022583,-1.842116355896,1.71232426166534,-1.51881575584412,1.71232390403748,-1.51881527900696,1.78001070022583,-1.97289657592773,1.85568010807037,-1.97289621829987,1.78542840480804,-1.97289657592773,1.86109817028046,-1.97289609909058,1.92878448963165,-1.97289538383484,2.00669741630554,-1.97289621829987,1.78001081943512,-1.97289860248566,1.71232438087463,-1.218590259552,1.8610976934433,-1.21859049797058,1.92878413200378,-1.21859073638916,2.00669717788696,0.598992347717285,-1.27815794944763,0.85611093044281,-1.27815794944763,0.856111168861389,-1.20412182807922,0.599447727203369,-1.20412182807922,0.598290205001831,-1.35376286506653,0.856111168861389,-1.35376310348511,0.60029661655426,-1.13101959228516,0.856111168861389,-1.13101959228516,0.8561110496521,-1.04781460762024,0.60160756111145,-1.04781472682953,0.85611093044281,-1.19870471954346,0.599491238594055,-1.19870471954346,1.00000011920929,-1.27815794944763,0.99999988079071,-1.20412182807922,1,-1.35376262664795,1.00000011920929,-1.13101959228516,1,-1.04781460762024,1.00000011920929,-1.19870471954346,1.5329442024231,0.410801976919174,1.55465590953827,0.387342929840088,6.05359673500061e-008,
- 0.225367814302444,5.69647582437938e-008,0.320426851511002,1,0.320426911115646,1,0.225367829203606,-3.12344283770472e-008,0.790309548377991,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,0.79030966758728,1.47499024868011,0.33920955657959,1.57005023956299,0.339209645986557,1.57415175437927,0.338304549455643,1.57415175437927,0.318460643291473,1.57005023956299,0.317555576562881,1.47499001026154,0.317555546760559,0,0.466297745704651,0,0.487853288650513,1,0.487853318452835,1,0.466297835111618,0.999999940395355,0.78489226102829,1,0.70090514421463,-1.48783328768332e-007,0.700905025005341,-3.19196260534227e-008,0.784892141819,5.68106770515442e-008,0.324528306722641,1,0.324528366327286,0.122541964054108,0.422106087207794,0.105709530413151,0.443661570549011,0,0.443661570549011,0,0.422106087207794,0.204163908958435,0.598872840404511,0.187327191233635,0.620428323745728,0,0.620428323745728,0,0.598872840404511,0.256446987390518,1.00834691524506,0.307212442159653,1.08607399463654,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.273278594017029,0.335379928350449,0.256447046995163,0.356935381889343,0,0.356935381889343,0,0.335379898548126,0.325454473495483,0.510489463806152,0.308618605136871,0.532044947147369,0,0.532044947147369,0,0.510489463806152,0.450563728809357,0.422106117010117,0.433729559183121,0.443661630153656,0,0.443661570549011,0,0.422106087207794,0.669486582279205,-1.20412182807922,0.565533638000488,-1.35376286506653,0.568744599819183,-1.04781472682953,0.536359965801239,0.225367814302444,1,0.225367829203606,0.625373423099518,0.790309607982636,0.536594033241272,0.885368585586548,0.999999940395355,0.885368645191193,0.999999940395355,0.79030966758728,0.536594092845917,0.466297805309296,0.536359965801239,0.487853288650513,1,0.487853318452835,1,0.466297835111618,0.221278786659241,0.598872840404511,0.204448983073235,0.620428323745728,0,0.620428323745728,0,0.598872840404511,0.273567914962769,1.00834691524506,0.324330776929855,1.08607411384583,-6.79865479469299e-008,
- 1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.290399551391602,0.335379928350449,0.273567974567413,0.356935381889343,0,0.356935381889343,0,0.335379898548126,0.342571973800659,0.510489463806152,0.325738668441772,0.532044947147369,0,0.532044947147369,0,0.510489463806152,0.467055380344391,0.422106117010117,0.450222104787827,0.443661570549011,0,0.443661570549011,0,0.422106087207794,0.548677325248718,0.598872780799866,0.531843245029449,0.620428323745728,0,0.620428323745728,0,0.598872840404511,0.600959539413452,1.00834703445435,0.651725888252258,1.08607411384583,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.617796361446381,0.335379958152771,0.600959599018097,0.356935411691666,0,0.356935381889343,0,0.335379898548126,0.669970512390137,0.510489463806152,0.653132915496826,0.532044947147369,0,0.532044947147369,0,0.510489463806152,0.79488468170166,0.422106146812439,0.778053104877472,0.443661630153656,0,0.443661570549011,0,0.422106087207794,0.876508355140686,0.598872840404511,0.859671652317047,0.620428323745728,0,0.620428323745728,0,0.598872840404511,0.928791403770447,1.00834703445435,0.979556918144226,1.08607411384583,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.94562304019928,0.335379958152771,0.928791463375092,0.356935441493988,0,0.356935381889343,0,0.335379898548126,0.997796356678009,0.510489523410797,0.980963051319122,0.532044947147369,0,0.532044947147369,0,0.510489463806152,0.139942526817322,0.422106087207794,0.12310753017664,0.443661570549011,0,0.443661570549011,0,0.422106087207794,-0.97500091791153,1.92878401279449,-1.02405369281769,2.00669717788696,-1.02571725845337,1.8610976934433,-1.37880527973175,1.41709983348846,-1.32933759689331,1.33697605133057,-1.32763195037842,1.48386490345001,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,-3.36237810927287e-008,0.809878826141357,0.0633892491459847,0.885368525981903,-4.2840838432312e-008,0.885368525981903,-0.241306245326996,2.00495171546936,-0.241320967674255,1.9606124162674,
- 0.0546479225158691,1.96051490306854,0.0546627044677734,2.00485420227051,-0.212216079235077,2.09845113754272,-0.212228357791901,2.06076145172119,0.0845352411270142,2.06066393852234,0.0845475196838379,2.09835338592529,0.0827255249023438,2.10305666923523,0.0547114610671997,2.15418267250061,-0.24125748872757,2.15427994728088,-0.213989615440369,2.10315418243408,-0.214005053043365,2.05605983734131,0.0827100276947021,2.05596208572388,0.950405359268188,1.2996324300766,0.92269229888916,1.39037275314331,0.672217786312103,1.38762784004211,0.778322458267212,1.29791188240051,0.95139479637146,1.29499983787537,0.787083029747009,1.2934308052063,0.86320173740387,1.24460899829865,0.951524972915649,1.24441778659821,1.89784908294678,1.24599409103394,1.89782667160034,1.29367792606354,1.50847578048706,1.29316842556,1.508544921875,1.24545586109161,1.50752019882202,1.24093067646027,1.89679324626923,1.24146950244904,1.47843289375305,1.15029442310333,1.86690855026245,1.15084552764893,1.47820544242859,1.3881117105484,1.86659955978394,1.38871693611145,1.86645531654358,1.44277369976044,1.47809958457947,1.44216978549957,1.89676320552826,1.29820048809052,1.50743961334229,1.29768478870392,1.22182703018188,1.38787984848022,1.25021696090698,1.29659521579742,1.22214889526367,1.44097495079041,1.22200083732605,1.15041565895081,1.25060963630676,1.24086427688599,1.25159192085266,1.24533498287201,1.2512264251709,1.29209840297699,0.950558423995972,1.23977339267731,0.922988176345825,1.14930081367493,0.922757863998413,1.44781816005707,-0.289531528949738,2.40037608146667,-0.262306272983551,2.35204339027405,-0.158485189080238,2.35204362869263,-0.214757412672043,2.40037608146667,-0.291302084922791,2.40482234954834,-0.29130232334137,2.44045972824097,-0.524390816688538,2.44045972824097,-0.524390578269959,2.40482234954834,-0.289531409740448,2.44490575790405,-0.522581815719604,2.44490575790405,-0.262305796146393,2.49323844909668,-0.494770288467407,2.49323844909668,-0.262305557727814,2.53516292572021,-0.494770050048828,2.53516292572021,-0.522581934928894,2.4003758430481,
- -0.494770526885986,2.35204315185547,-0.870133996009827,2.44045948982239,-0.870133757591248,2.40482234954834,-0.868268489837646,2.44490551948547,-0.839587926864624,2.49323844909668,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,0.544988751411438,2.09820222854614,0.544976234436035,2.06051254272461,0.999991893768311,2.06036305427551,1.00000405311584,2.09805250167847,0.543075799942017,2.05581068992615,0.998017072677612,2.05566096305847,0.513871073722839,2.00470304489136,0.967668056488037,2.00455355644226,0.513855934143066,1.9603636264801,0.967653036117554,1.96021413803101,0.998032569885254,2.1027557849884,0.967716932296753,2.1538827419281,0.513919949531555,2.15403175354004,0.543091297149658,2.1029052734375,0.397302031517029,2.0982506275177,0.397289752960205,2.06056118011475,0.395428895950317,2.10295391082764,0.366628646850586,2.1540801525116,0.366564869880676,1.96041214466095,0.36657977104187,2.00475144386292,0.395413398742676,2.05585932731628,0.22608745098114,2.09830689430237,0.226075053215027,2.06061744689941,0.224226832389832,2.05591559410095,0.195823550224304,2.00480771064758,0.1958087682724,1.96046841144562,0.19587242603302,2.15413618087769,0.224242329597473,2.1030101776123,-0.473452538251877,2.0985369682312,-0.473464876413345,2.06084728240967,-0.475183397531509,2.10324001312256,-0.501794457435608,2.1543653011322,-0.501843214035034,2.00503754615784,-0.501857876777649,1.96069812774658,-0.475198775529861,2.05614566802979,-0.657856822013855,2.15561890602112,-0.59461522102356,2.10368394851685,0.756829857826233,1.44376420974731,0.864606916904449,1.23999965190887,0.757301270961761,1.14964628219604,-0.223154604434967,2.40482234954834,-0.276861160993576,2.44045972824097,-0.277941226959229,2.44490575790405,-0.221661940217018,2.49323844909668,-0.158484369516373,2.53516292572021,-0.584967315196991,2.09891629219055,-0.522587895393372,2.06086421012878,-0.583833336830139,2.00469493865967,-0.65789270401001,1.95948934555054,-0.521188616752625,2.05614137649536,0.92269229888916,
- 1.39037275314331,1.15055775642395,1.38733839988709,1.15058994293213,1.44026017189026,0.922757863998413,1.44781816005707,1.17892813682556,1.24608170986176,1.17956018447876,1.29283201694489,0.95139479637146,1.29499983787537,0.951524972915649,1.24441778659821,1.17859292030334,1.29734075069427,0.950405359268188,1.2996324300766,0.950558423995972,1.23977339267731,0.922988176345825,1.14930081367493,1.1500518321991,1.15058290958405,1.17789196968079,1.24157178401947,0.622068643569946,1.29634952545166,0.594929695129395,1.38678085803986,0.155786141753197,1.37915372848511,0.242254555225372,1.29652690887451,0.623040199279785,1.29186451435089,0.24111233651638,1.29201650619507,0.185488030314446,1.24450409412384,0.623359203338623,1.24512791633606,0.594896554946899,1.43980777263641,0.622433423995972,1.24063730239868,0.595603227615356,1.14998340606689,1.85628390312195,1.24593663215637,1.85625648498535,1.2936235666275,1.50847578048706,1.29316842556,1.508544921875,1.24545586109161,1.50752019882202,1.24093067646027,1.8552314043045,1.24141192436218,1.47843289375305,1.15029442310333,1.82543182373047,1.15078663825989,1.47820544242859,1.3881117105484,1.8516811132431,1.36222743988037,1.8528345823288,1.42788779735565,1.47809958457947,1.44216978549957,1.85519587993622,1.29814541339874,1.50743961334229,1.29768478870392,1.22182703018188,1.38787984848022,1.25021696090698,1.29659521579742,1.22214889526367,1.44097495079041,1.22200083732605,1.15041565895081,1.25060963630676,1.24086427688599,1.25159192085266,1.24533498287201,1.2512264251709,1.29209840297699,0.0872885435819626,1.44130790233612,0.179119467735291,1.23998010158539,0.0896765664219856,1.1636084318161,0.571282386779785,0.33576774597168,0.573426067829132,0.55192095041275,0.429098904132843,0.631298065185547,0.426592826843262,0.413255453109741,0.43517017364502,0.401800632476807,0.562751770019531,0.333511829376221,0.92269229888916,1.39037275314331,1.15055775642395,1.38733839988709,1.15058994293213,1.44026017189026,0.922757863998413,1.44781816005707,1.17892813682556,1.24608170986176,1.17956018447876,
- 1.29283201694489,0.95139479637146,1.29499983787537,0.951524972915649,1.24441778659821,1.17859292030334,1.29734075069427,0.950405359268188,1.2996324300766,0.950558423995972,1.23977339267731,0.922988176345825,1.14930081367493,1.1500518321991,1.15058290958405,1.17789196968079,1.24157178401947,0.622068643569946,1.29634952545166,0.594929695129395,1.38678085803986,0.140827655792236,1.38705539703369,0.239609986543655,1.29652798175812,0.623040199279785,1.29186451435089,0.240005910396576,1.29201698303223,0.193734511733055,1.24451589584351,0.623359203338623,1.24512791633606,0.594896554946899,1.43980777263641,0.622433423995972,1.24063730239868,0.595603227615356,1.14998340606689,1.89784908294678,1.24599409103394,1.89782667160034,1.29367792606354,1.50847578048706,1.29316842556,1.508544921875,1.24545586109161,1.50752019882202,1.24093067646027,1.89679324626923,1.24146950244904,1.47843289375305,1.15029442310333,1.86690855026245,1.15084552764893,1.47820544242859,1.3881117105484,1.86659955978394,1.38871693611145,1.86645531654358,1.44277369976044,1.47809958457947,1.44216978549957,1.89676320552826,1.29820048809052,1.50743961334229,1.29768478870392,1.22182703018188,1.38787984848022,1.25021696090698,1.29659521579742,1.22214889526367,1.44097495079041,1.22200083732605,1.15041565895081,1.25060963630676,1.24086427688599,1.25159192085266,1.24533498287201,1.2512264251709,1.29209840297699,0.0881883874535561,1.44107365608215,0.187122732400894,1.23999202251434,0.0882152691483498,1.14922678470612,0.34288489818573,-1.00590741634369,0.333329021930695,-0.630681216716766,-1.0973707503581e-005,-0.630681812763214,0.0149273090064526,-1.01838874816895,2.09549760818481,-0.994022846221924,2.09647250175476,-0.641982018947601,1.09456706047058,-0.641981780529022,1.09554243087769,-0.994022727012634,1.0695618391037,-0.641980111598969,1.06940698623657,-0.994022190570831,0.664885580539703,-0.996578752994537,0.0725777968764305,-1.42571496963501,1.04109811782837,-1.41512417793274,1.0417149066925,-1.3979229927063,1.08969068527222,1.11822259426117,1.07033610343933,1.11822986602783,
- 1.0701812505722,0.766187191009521,1.09066593647003,0.766180992126465,0.333326697349548,0.757240772247314,1.07002639770508,0.414145350456238,1.09164130687714,0.414140224456787,0.333327293395996,0.410260230302811,-1.26917966554174e-005,0.410259485244751,2.09939765930176,0.414139688014984,1.06987154483795,0.0621034651994705,1.09261655807495,0.0620994865894318,0.333327889442444,0.0632796809077263,-1.21191005746368e-005,0.0632789880037308,2.09842252731323,0.0620990395545959,1.06971669197083,-0.289938032627106,1.09359180927277,-0.289940863847733,0.333328396081924,-0.283700495958328,-1.15464044938562e-005,-0.283701151609421,2.09744739532471,-0.289941221475601,1.00000846385956,-0.630680024623871,0.666669011116028,-0.630680620670319,1.00000786781311,-0.283699214458466,0.666668355464935,-0.283699840307236,1.00000739097595,0.0632810741662979,0.666667878627777,0.0632803738117218,1.0000067949295,0.41026172041893,0.666667282581329,0.41026097536087,1.00000619888306,0.757242381572723,0.666666686534882,0.757241547107697,1.00000560283661,1.10422384738922,0.666666150093079,1.10422301292419,1.08881449699402,1.43448841571808,1.07048487663269,1.45619523525238,1.00000500679016,1.43733036518097,0.666665554046631,1.43776512145996,0.34288489818573,-1.00590741634369,0.333329021930695,-0.630681216716766,1.09456706047058,-0.641981780529022,1.09554243087769,-0.994022727012634,0.664885580539703,-0.996578752994537,1.04109811782837,-1.41512417793274,0.984747111797333,-1.00826346874237,0.666669011116028,-0.630680620670319,0.666668355464935,-0.283699840307236,1.00000846385956,-0.630680024623871,1.00000786781311,-0.283699214458466,1.00000739097595,0.0632810741662979,0.480054646730423,-0.110210105776787,1.0000067949295,0.41026172041893,0.31566333770752,0.515445232391357,-0.0530261993408203,0.515445232391357,-0.0530261993408203,0.484554767608643,1.09164130687714,0.414140224456787,1.09261655807495,0.0620994865894318,1.09359180927277,-0.289940863847733,0.445426911115646,-1.52089619636536,-1.0973707503581e-005,-0.630681812763214,0.0149273090064526,-1.01838874816895,
- 2.09549760818481,-0.994022846221924,2.09647250175476,-0.641982018947601,1.77964770793915,-0.641981959342957,1.51833462715149,-0.994026243686676,2.09744739532471,-0.289941221475601,2.00401735305786,-0.289941191673279,0.127082213759422,-0.283700913190842,-1.15464044938562e-005,-0.283701151609421,0.34288489818573,-1.00590741634369,0.333329021930695,-0.630681216716766,-1.0973707503581e-005,-0.630681812763214,0.117469310760498,-1.53337740898132,2.09549760818481,-0.994022846221924,2.09647250175476,-0.641982018947601,1.09456706047058,-0.641981780529022,1.09554243087769,-0.994022727012634,0.664885580539703,-0.996578752994537,0.118152022361755,-1.55104398727417,1.08667230606079,-1.54045343399048,0.984747111797333,-1.00826346874237,2.12163329124451,-0.994021832942963,2.12147808074951,-0.641979932785034,2.10134768486023,1.11822175979614,2.12070226669312,1.11822915077209,2.10222363471985,1.43448758125305,0.245925262570381,1.1042218208313,0.333326697349548,0.757240772247314,2.1003725528717,0.766180276870728,2.12085747718811,0.766186654567719,1.89853739738464,1.11822187900543,0.333327293395996,0.410260230302811,-1.32644936456927e-005,0.757239937782288,-1.26917966554174e-005,0.410259485244751,2.09939765930176,0.414139688014984,2.12101268768311,0.414144933223724,1.5956027507782,0.645651817321777,0.333327889442444,0.0632796809077263,-1.21191005746368e-005,0.0632789880037308,2.09842252731323,0.0620990395545959,2.1211678981781,0.0621032267808914,0.333328396081924,-0.283700495958328,-1.15464044938562e-005,-0.283701151609421,2.09744739532471,-0.289941221475601,2.12132287025452,-0.28993809223175,1.09318506717682,-0.143113031983376,1.09359180927277,-0.289940863847733,1.00000846385956,-0.630680024623871,0.666669011116028,-0.630680620670319,1.00000786781311,-0.283699214458466,0.666668355464935,-0.283699840307236,0.666667878627777,0.0632803738117218,0.692144691944122,0.410261034965515,0.118152022361755,-1.55104398727417,-1.43869892781368e-005,1.43732738494873,-1.38371915454627e-005,1.10422122478485,0.687487661838531,0.445760458707809,0.674708127975464,
- 0.445760458707809,0.674782037734985,0.443462163209915,0.687579274177551,0.443462163209915,0.661762595176697,0.445760458707809,0.661826133728027,0.443462163209915,0.648659527301788,0.445760458707809,0.648716568946838,0.443462163209915,0.635441660881042,0.445760458707809,0.635497450828552,0.443462163209915,0.622167408466339,0.445760458707809,0.622231960296631,0.443462163209915,0.608887851238251,0.445760458707809,0.608960092067719,0.443462163209915,0.59565544128418,0.445760458707809,0.595729649066925,0.443462163209915,0.582531213760376,0.445760458707809,0.582601070404053,0.443462163209915,0.56956148147583,0.445760458707809,0.569622814655304,0.443462163209915,0.556761145591736,0.445760458707809,0.556806266307831,0.443462163209915,0.544103682041168,0.445760458707809,0.544108748435974,0.443462163209915,0.700131893157959,0.445760458707809,0.700264453887939,0.443462163209915,0.575566470623016,0.48169356584549,0.585002601146698,0.491128236055374,0.588455140590668,0.504018306732178,0.585002601146698,0.516907274723053,0.575566470623016,0.526343405246735,0.562677979469299,0.52979588508606,0.549787700176239,0.526343405246735,0.540351569652557,0.516907274723053,0.536897420883179,0.504018306732178,0.540351569652557,0.491128236055374,0.549787700176239,0.48169356584549,0.562677979469299,0.478239506483078,0.623735904693604,0.389914691448212,0.610643923282623,0.389914691448212,0.610653400421143,0.381929308176041,0.623738884925842,0.381929308176041,0.63679701089859,0.389914691448212,0.636783182621002,0.381929308176041,0.650045454502106,0.389914691448212,0.650058805942535,0.381929308176041,0.663305640220642,0.389914691448212,0.663351714611053,0.381929308176041,0.676504135131836,0.389914691448212,0.676622688770294,0.381929308176041,0.689712822437286,0.389914691448212,0.689672291278839,0.381929308176041,0.703352868556976,0.389914691448212,0.702166736125946,0.381929308176041,0.557856917381287,0.389914691448212,0.544226348400116,0.389914691448212,0.545423328876495,0.381929308176041,0.557902157306671,0.381929308176041,0.571051359176636,0.389914691448212,
- 0.570932745933533,0.381929308176041,0.584227919578552,0.389914691448212,0.584183931350708,0.381929308176041,0.597458243370056,0.389914691448212,0.597447216510773,0.381929308176041,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.513977885246277,0.106227472424507,0.501355409622192,0.106227472424507,0.501498579978943,0.0503817349672318,0.514364719390869,0.0503817349672318,0.488434284925461,0.106227472424507,0.4885094165802,0.0503817349672318,0.475626826286316,0.106227472424507,0.475725740194321,0.0503817349672318,0.462571382522583,0.106227472424507,0.462820738554001,0.0503817349672318,0.449460208415985,0.106227472424507,0.450098216533661,0.0503817349672318,0.436343878507614,0.106227472424507,
- 0.437345683574677,0.0503817349672318,0.423274099826813,0.106227472424507,0.424501746892929,0.0503817349672318,0.410311132669449,0.106227472424507,0.41161447763443,0.0503817349672318,0.397500783205032,0.106227472424507,0.398779511451721,0.0503817349672318,0.384857773780823,0.106227472424507,0.385927081108093,0.0503817349672318,0.372355848550797,0.106227472424507,0.372649908065796,0.0503817349672318,0.526466727256775,0.106227472424507,0.527651190757751,0.0503817349672318,0.437354862689972,0.0423963218927383,0.450101107358933,0.0423963218927383,0.462807267904282,0.0423963218927383,0.475738704204559,0.0423963218927383,0.488554328680038,0.0423963218927383,0.501613974571228,0.0423963218927383,0.514325261116028,0.0423963218927383,0.526495814323425,0.0423963218927383,0.373815834522247,0.0423963218927383,0.385971128940582,0.0423963218927383,0.398663997650146,0.0423963218927383,0.411571592092514,0.0423963218927383,0.424491047859192,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,
- 0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,
- 0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,
- 0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,
- 0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,
- 0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,
- 0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,
- 0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.676378607749939,
- 0.671101331710815,0.676378607749939,0.643218398094177,0.734635889530182,0.643299281597137,0.676378607749939,0.629446625709534,0.734635889530182,0.629552960395813,0.676378607749939,0.615408062934875,0.734635889530182,0.615676164627075,0.676378607749939,0.601309597492218,0.734635889530182,0.601995706558228,0.676378607749939,0.587205648422241,0.734635889530182,0.588282942771912,0.676378607749939,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.559212803840637,0.734635889530182,0.560614228248596,0.676378607749939,0.545437753200531,0.734635889530182,0.54681271314621,0.676378607749939,0.531842768192291,0.734635889530182,0.532992601394653,0.676378607749939,0.518399477005005,0.734635889530182,0.518715560436249,0.676378607749939,0.684114754199982,0.734635889530182,0.685388326644897,0.676378607749939,0.588292896747589,0.667083919048309,0.601998805999756,0.667083919048309,0.615661680698395,0.667083919048309,0.62956690788269,0.667083919048309,0.64334762096405,0.667083919048309,0.657390475273132,0.667083919048309,0.671059012413025,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,0.53303998708725,0.667083919048309,0.546688616275787,0.667083919048309,0.560568153858185,0.667083919048309,0.574460327625275,0.667083919048309,0.565638840198517,0.678219020366669,0.578825414180756,0.681750357151031,0.588474094867706,0.6914022564888,0.592008948326111,0.704585731029511,0.588474094867706,0.717772305011749,0.578825414180756,0.72742110490799,0.565638840198517,0.730956017971039,0.552455246448517,0.72742110490799,0.542803347110748,0.717772305011749,0.539271950721741,0.704585731029511,0.542803347110748,0.6914022564888,0.552455246448517,0.681750357151031,0.687487661838531,0.445760458707809,0.674708127975464,0.445760458707809,0.674782037734985,0.443462163209915,0.687579274177551,0.443462163209915,0.661762595176697,0.445760458707809,0.661826133728027,0.443462163209915,0.648659527301788,0.445760458707809,0.648716568946838,0.443462163209915,0.635441660881042,0.445760458707809,0.635497450828552,
- 0.443462163209915,0.622167408466339,0.445760458707809,0.622231960296631,0.443462163209915,0.608887851238251,0.445760458707809,0.608960092067719,0.443462163209915,0.59565544128418,0.445760458707809,0.595729649066925,0.443462163209915,0.582531213760376,0.445760458707809,0.582601070404053,0.443462163209915,0.56956148147583,0.445760458707809,0.569622814655304,0.443462163209915,0.556761145591736,0.445760458707809,0.556806266307831,0.443462163209915,0.544103682041168,0.445760458707809,0.544108748435974,0.443462163209915,0.700131893157959,0.445760458707809,0.700264453887939,0.443462163209915,0.575566470623016,0.48169356584549,0.585002601146698,0.491128236055374,0.588455140590668,0.504018306732178,0.585002601146698,0.516907274723053,0.575566470623016,0.526343405246735,0.562677979469299,0.52979588508606,0.549787700176239,0.526343405246735,0.540351569652557,0.516907274723053,0.536897420883179,0.504018306732178,0.540351569652557,0.491128236055374,0.549787700176239,0.48169356584549,0.562677979469299,0.478239506483078,0.623735904693604,0.389914691448212,0.610643923282623,0.389914691448212,0.610653400421143,0.381929308176041,0.623738884925842,0.381929308176041,0.63679701089859,0.389914691448212,0.636783182621002,0.381929308176041,0.650045454502106,0.389914691448212,0.650058805942535,0.381929308176041,0.663305640220642,0.389914691448212,0.663351714611053,0.381929308176041,0.676504135131836,0.389914691448212,0.676622688770294,0.381929308176041,0.689712822437286,0.389914691448212,0.689672291278839,0.381929308176041,0.703352868556976,0.389914691448212,0.702166736125946,0.381929308176041,0.557856917381287,0.389914691448212,0.544226348400116,0.389914691448212,0.545423328876495,0.381929308176041,0.557902157306671,0.381929308176041,0.571051359176636,0.389914691448212,0.570932745933533,0.381929308176041,0.584227919578552,0.389914691448212,0.584183931350708,0.381929308176041,0.597458243370056,0.389914691448212,0.597447216510773,0.381929308176041,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,
- 0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.513977885246277,0.106227472424507,0.501355409622192,0.106227472424507,0.501498579978943,0.0503817349672318,0.514364719390869,0.0503817349672318,0.488434284925461,0.106227472424507,0.4885094165802,0.0503817349672318,0.475626826286316,0.106227472424507,0.475725740194321,0.0503817349672318,0.462571382522583,0.106227472424507,0.462820738554001,0.0503817349672318,0.449460208415985,0.106227472424507,0.450098216533661,0.0503817349672318,0.436343878507614,0.106227472424507,0.437345683574677,0.0503817349672318,0.423274099826813,0.106227472424507,0.424501746892929,0.0503817349672318,0.410311132669449,0.106227472424507,0.41161447763443,0.0503817349672318,0.397500783205032,0.106227472424507,0.398779511451721,0.0503817349672318,0.384857773780823,0.106227472424507,
- 0.385927081108093,0.0503817349672318,0.372355848550797,0.106227472424507,0.372649908065796,0.0503817349672318,0.526466727256775,0.106227472424507,0.527651190757751,0.0503817349672318,0.437354862689972,0.0423963218927383,0.450101107358933,0.0423963218927383,0.462807267904282,0.0423963218927383,0.475738704204559,0.0423963218927383,0.488554328680038,0.0423963218927383,0.501613974571228,0.0423963218927383,0.514325261116028,0.0423963218927383,0.526495814323425,0.0423963218927383,0.373815834522247,0.0423963218927383,0.385971128940582,0.0423963218927383,0.398663997650146,0.0423963218927383,0.411571592092514,0.0423963218927383,0.424491047859192,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,
- 0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,
- 0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,
- 0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,
- 0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,
- 0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,
- 0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,
- 0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.676378607749939,0.671101331710815,0.676378607749939,0.643218398094177,0.734635889530182,0.643299281597137,0.676378607749939,0.629446625709534,0.734635889530182,0.629552960395813,0.676378607749939,0.615408062934875,0.734635889530182,0.615676164627075,0.676378607749939,0.601309597492218,0.734635889530182,0.601995706558228,0.676378607749939,0.587205648422241,
- 0.734635889530182,0.588282942771912,0.676378607749939,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.559212803840637,0.734635889530182,0.560614228248596,0.676378607749939,0.545437753200531,0.734635889530182,0.54681271314621,0.676378607749939,0.531842768192291,0.734635889530182,0.532992601394653,0.676378607749939,0.518399477005005,0.734635889530182,0.518715560436249,0.676378607749939,0.684114754199982,0.734635889530182,0.685388326644897,0.676378607749939,0.588292896747589,0.667083919048309,0.601998805999756,0.667083919048309,0.615661680698395,0.667083919048309,0.62956690788269,0.667083919048309,0.64334762096405,0.667083919048309,0.657390475273132,0.667083919048309,0.671059012413025,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,0.53303998708725,0.667083919048309,0.546688616275787,0.667083919048309,0.560568153858185,0.667083919048309,0.574460327625275,0.667083919048309,0.565638840198517,0.678219020366669,0.578825414180756,0.681750357151031,0.588474094867706,0.6914022564888,0.592008948326111,0.704585731029511,0.588474094867706,0.717772305011749,0.578825414180756,0.72742110490799,0.565638840198517,0.730956017971039,0.552455246448517,0.72742110490799,0.542803347110748,0.717772305011749,0.539271950721741,0.704585731029511,0.542803347110748,0.6914022564888,0.552455246448517,0.681750357151031,0.687487661838531,0.445760458707809,0.674708127975464,0.445760458707809,0.674782037734985,0.443462163209915,0.687579274177551,0.443462163209915,0.661762595176697,0.445760458707809,0.661826133728027,0.443462163209915,0.648659527301788,0.445760458707809,0.648716568946838,0.443462163209915,0.635441660881042,0.445760458707809,0.635497450828552,0.443462163209915,0.622167408466339,0.445760458707809,0.622231960296631,0.443462163209915,0.608887851238251,0.445760458707809,0.608960092067719,0.443462163209915,0.59565544128418,0.445760458707809,0.595729649066925,0.443462163209915,0.582531213760376,0.445760458707809,0.582601070404053,0.443462163209915,0.56956148147583,0.445760458707809,
- 0.569622814655304,0.443462163209915,0.556761145591736,0.445760458707809,0.556806266307831,0.443462163209915,0.544103682041168,0.445760458707809,0.544108748435974,0.443462163209915,0.700131893157959,0.445760458707809,0.700264453887939,0.443462163209915,0.575566470623016,0.48169356584549,0.585002601146698,0.491128236055374,0.588455140590668,0.504018306732178,0.585002601146698,0.516907274723053,0.575566470623016,0.526343405246735,0.562677979469299,0.52979588508606,0.549787700176239,0.526343405246735,0.540351569652557,0.516907274723053,0.536897420883179,0.504018306732178,0.540351569652557,0.491128236055374,0.549787700176239,0.48169356584549,0.562677979469299,0.478239506483078,0.623735904693604,0.389914691448212,0.610643923282623,0.389914691448212,0.610653400421143,0.381929308176041,0.623738884925842,0.381929308176041,0.63679701089859,0.389914691448212,0.636783182621002,0.381929308176041,0.650045454502106,0.389914691448212,0.650058805942535,0.381929308176041,0.663305640220642,0.389914691448212,0.663351714611053,0.381929308176041,0.676504135131836,0.389914691448212,0.676622688770294,0.381929308176041,0.689712822437286,0.389914691448212,0.689672291278839,0.381929308176041,0.703352868556976,0.389914691448212,0.702166736125946,0.381929308176041,0.557856917381287,0.389914691448212,0.544226348400116,0.389914691448212,0.545423328876495,0.381929308176041,0.557902157306671,0.381929308176041,0.571051359176636,0.389914691448212,0.570932745933533,0.381929308176041,0.584227919578552,0.389914691448212,0.584183931350708,0.381929308176041,0.597458243370056,0.389914691448212,0.597447216510773,0.381929308176041,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,
- 0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.513977885246277,0.106227472424507,0.501355409622192,0.106227472424507,0.501498579978943,0.0503817349672318,0.514364719390869,0.0503817349672318,0.488434284925461,0.106227472424507,0.4885094165802,0.0503817349672318,0.475626826286316,0.106227472424507,0.475725740194321,0.0503817349672318,0.462571382522583,0.106227472424507,0.462820738554001,0.0503817349672318,0.449460208415985,0.106227472424507,0.450098216533661,0.0503817349672318,0.436343878507614,0.106227472424507,0.437345683574677,0.0503817349672318,0.423274099826813,0.106227472424507,0.424501746892929,0.0503817349672318,0.410311132669449,0.106227472424507,0.41161447763443,0.0503817349672318,0.397500783205032,0.106227472424507,0.398779511451721,0.0503817349672318,0.384857773780823,0.106227472424507,0.385927081108093,0.0503817349672318,0.372355848550797,0.106227472424507,0.372649908065796,0.0503817349672318,0.526466727256775,0.106227472424507,0.527651190757751,0.0503817349672318,0.437354862689972,0.0423963218927383,0.450101107358933,0.0423963218927383,0.462807267904282,0.0423963218927383,0.475738704204559,0.0423963218927383,0.488554328680038,
- 0.0423963218927383,0.501613974571228,0.0423963218927383,0.514325261116028,0.0423963218927383,0.526495814323425,0.0423963218927383,0.373815834522247,0.0423963218927383,0.385971128940582,0.0423963218927383,0.398663997650146,0.0423963218927383,0.411571592092514,0.0423963218927383,0.424491047859192,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,
- 0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,
- 1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,
- 0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,
- 0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,
- 0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,
- 0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,
- 0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.676378607749939,0.671101331710815,0.676378607749939,0.643218398094177,0.734635889530182,0.643299281597137,0.676378607749939,0.629446625709534,0.734635889530182,0.629552960395813,0.676378607749939,0.615408062934875,0.734635889530182,0.615676164627075,0.676378607749939,0.601309597492218,0.734635889530182,0.601995706558228,0.676378607749939,0.587205648422241,0.734635889530182,0.588282942771912,0.676378607749939,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.559212803840637,0.734635889530182,0.560614228248596,0.676378607749939,0.545437753200531,0.734635889530182,0.54681271314621,0.676378607749939,0.531842768192291,0.734635889530182,
- 0.532992601394653,0.676378607749939,0.518399477005005,0.734635889530182,0.518715560436249,0.676378607749939,0.684114754199982,0.734635889530182,0.685388326644897,0.676378607749939,0.588292896747589,0.667083919048309,0.601998805999756,0.667083919048309,0.615661680698395,0.667083919048309,0.62956690788269,0.667083919048309,0.64334762096405,0.667083919048309,0.657390475273132,0.667083919048309,0.671059012413025,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,0.53303998708725,0.667083919048309,0.546688616275787,0.667083919048309,0.560568153858185,0.667083919048309,0.574460327625275,0.667083919048309,0.565638840198517,0.678219020366669,0.578825414180756,0.681750357151031,0.588474094867706,0.6914022564888,0.592008948326111,0.704585731029511,0.588474094867706,0.717772305011749,0.578825414180756,0.72742110490799,0.565638840198517,0.730956017971039,0.552455246448517,0.72742110490799,0.542803347110748,0.717772305011749,0.539271950721741,0.704585731029511,0.542803347110748,0.6914022564888,0.552455246448517,0.681750357151031,4.24627214670181e-005,0.720145583152771,0.999999940395355,0.720146417617798,0.999999940395355,0.752213358879089,4.09949570894241e-005,0.752212524414063,3.08044254779816e-005,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,8.34465026855469e-007,0.995400667190552,4.47928905487061e-005,0.643749237060547,0.999999940395355,0.643750131130219,0.999999940395355,0.865592837333679,3.14591452479362e-005,0.865592241287231,3.65478917956352e-005,0.819283008575439,0.999999940395355,0.819283723831177,3.87988984584808e-005,0.787981033325195,0.999999940395355,0.787981867790222,0.603904485702515,0.0336130112409592,0.631324052810669,0.0144635140895844,0.711964130401611,0.014463484287262,0.71194452047348,0.140752255916595,0.579405009746552,0.140752285718918,0.57629656791687,0.137664005160332,0.57629656791687,0.0892751589417458,0.603904485702515,0.070918470621109,3.08044254779816e-005,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,
- 0.995401442050934,8.34465026855469e-007,0.995400667190552,0.954487383365631,0.865592837333679,0.836388111114502,0.865592777729034,0.83638870716095,0.819283604621887,0.954487383365631,0.819283723831177,-0.045470118522644,0.720145583152771,0.999999940395355,0.720146417617798,0.999999940395355,0.752213358879089,-0.0454715862870216,0.752212524414063,-0.0454817749559879,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,-0.0350356996059418,0.995400667190552,0.999999940395355,0.865592837333679,-0.0454811193048954,0.865592241287231,-0.0454760305583477,0.819283008575439,0.999999940395355,0.819283723831177,-0.0454737804830074,0.787981033325195,0.999999940395355,0.787981867790222,4.24627214670181e-005,0.720145583152771,0.999999940395355,0.720146417617798,0.999999940395355,0.752213358879089,4.09949570894241e-005,0.752212524414063,3.08044254779816e-005,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,8.34465026855469e-007,0.995400667190552,4.47928905487061e-005,0.643749237060547,0.999999940395355,0.643750131130219,0.999999940395355,0.865592837333679,3.14591452479362e-005,0.865592241287231,3.65478917956352e-005,0.819283008575439,0.999999940395355,0.819283723831177,3.87988984584808e-005,0.787981033325195,0.999999940395355,0.787981867790222,0.392148464918137,0.14081683754921,0.392128884792328,0.0145279243588448,0.47276908159256,0.0145279765129089,0.500188589096069,0.0336773991584778,0.500188589096069,0.0709830522537231,0.52779632806778,0.0893397331237793,0.52779632806778,0.137728631496429,0.524687826633453,0.140816867351532,3.08044254779816e-005,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,8.34465026855469e-007,0.995400667190552,4.24627214670181e-005,0.720145583152771,0.616513252258301,0.720146059989929,0.642804563045502,0.752213001251221,4.09949570894241e-005,0.752212524414063,3.08044254779816e-005,0.869797587394714,0.665711164474487,0.869798064231873,0.540096163749695,0.99540102481842,8.34465026855469e-007,
- 0.995400667190552,4.47928905487061e-005,0.643749237060547,0.540117919445038,0.643749713897705,3.87988984584808e-005,0.787981033325195,0.642802357673645,0.787981510162354,0.668686866760254,0.819283425807953,3.65478917956352e-005,0.819283008575439,3.14591452479362e-005,0.865592241287231,0.668685376644135,0.8655925989151,3.08044254779816e-005,0.869797587394714,0.540111482143402,0.869797945022583,0.540095508098602,0.99540102481842,8.34465026855469e-007,0.995400667190552,0.862273693084717,0.752213299274445,0.888565123081207,0.720146358013153,0.954487383365631,0.720146417617798,0.954487383365631,0.752213358879089,0.954487383365631,0.984925985336304,0.839361608028412,0.869798183441162,0.954487383365631,0.869798302650452,0.954487323760986,0.654224991798401,0.862274408340454,0.787981808185577,0.954487383365631,0.787981867790222,-0.0349928587675095,0.643749237060547,0.999999940395355,0.643750131130219,0.0104762250557542,0.995400667190552,0.0105065330862999,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496077090501785,0.100579425692558,0.508104622364044,0.100579425692558,0.483775287866592,0.106227472424507,0.483782529830933,0.100579425692558,0.471595346927643,0.106227472424507,0.471604883670807,0.100579425692558,0.459179550409317,0.106227472424507,0.459203541278839,0.100579425692558,0.446710765361786,0.106227472424507,0.446772128343582,0.100579425692558,0.434237033128738,0.106227472424507,0.434333384037018,0.100579425692558,0.421807587146759,0.106227472424507,0.421925693750381,0.100579425692558,0.409479707479477,0.106227472424507,0.40960505604744,0.100579425692558,0.397296994924545,0.106227472424507,0.397419989109039,0.100579425692558,0.385273426771164,0.106227472424507,0.385376274585724,0.100579425692558,0.373384028673172,0.106227472424507,0.373412311077118,0.100579425692558,0.519944429397583,0.106227472424507,0.520058333873749,0.100579425692558,0.447317481040955,0.0503817349672318,0.435189753770828,0.0503817349672318,
- 0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459416687488556,0.0503817349672318,0.459403872489929,0.0423963218927383,0.471689403057098,0.0503817349672318,0.471701741218567,0.0423963218927383,0.483846753835678,0.0503817349672318,0.48388946056366,0.0423963218927383,0.496199429035187,0.0503817349672318,0.496309280395508,0.0423963218927383,0.508435368537903,0.0503817349672318,0.508397817611694,0.0423963218927383,0.521070837974548,0.0503817349672318,0.519972085952759,0.0423963218927383,0.386290341615677,0.0503817349672318,0.373663663864136,0.0503817349672318,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398513078689575,0.0503817349672318,0.398403227329254,0.0423963218927383,0.410719186067581,0.0503817349672318,0.410678416490555,0.0423963218927383,0.422975093126297,0.0503817349672318,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,
- 0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.667820632457733,0.671101331710815,0.667820632457733,0.643218398094177,0.734635889530182,0.643299281597137,0.667820632457733,0.629446625709534,0.734635889530182,0.629552960395813,0.667820632457733,0.615408062934875,0.734635889530182,0.615676164627075,0.667820632457733,0.601309597492218,0.734635889530182,0.601995706558228,0.667820632457733,0.587205648422241,0.734635889530182,0.588282942771912,0.667820632457733,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.559212803840637,0.734635889530182,0.560614228248596,0.667820632457733,0.545437753200531,0.734635889530182,0.54681271314621,0.667820632457733,0.531842768192291,0.734635889530182,0.532992601394653,0.667820632457733,0.518399477005005,0.734635889530182,0.518715560436249,0.667820632457733,0.684114754199982,0.734635889530182,0.685388326644897,0.667820632457733,0.588292896747589,0.658266603946686,0.601998805999756,0.658266603946686,0.615661680698395,0.658266603946686,0.62956690788269,0.658266603946686,0.64334762096405,0.658266603946686,0.657390475273132,0.658266603946686,0.671059012413025,0.658266603946686,0.684145867824554,0.658266603946686,0.519969344139099,0.658266603946686,0.53303998708725,0.658266603946686,0.546688616275787,0.658266603946686,0.560568153858185,0.658266603946686,0.574460327625275,0.658266603946686,0.694315850734711,1.10367202758789,0.677223145961761,1.10367202758789,0.677416920661926,1.04308724403381,0.694839537143707,1.04308724403381,0.659726202487946,1.10367202758789,0.659828066825867,1.04308724403381,0.64238315820694,1.10367202758789,0.642517030239105,1.04308724403381,0.624704122543335,1.10367202758789,0.625041842460632,1.04308724403381,0.606949806213379,1.10367202758789,0.607813715934753,1.04308724403381,
- 0.589188396930695,1.10367202758789,0.590545058250427,1.04308724403381,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.55393648147583,1.10367202758789,0.555701375007629,1.04308724403381,0.536589384078979,1.10367202758789,0.538320899009705,1.04308724403381,0.519469082355499,1.10367202758789,0.520917057991028,1.04308724403381,0.502539575099945,1.10367202758789,0.502937734127045,1.04308724403381,0.711227595806122,1.10367202758789,0.712831437587738,1.04308724403381,0.59055757522583,1.03442406654358,0.607817649841309,1.03442406654358,0.625023603439331,1.03442406654358,0.642534613609314,1.03442406654358,0.659888863563538,1.03442406654358,0.677573323249817,1.03442406654358,0.694786310195923,1.03442406654358,0.711266815662384,1.03442406654358,0.504516661167145,1.03442406654358,0.520976722240448,1.03442406654358,0.538164615631104,1.03442406654358,0.555643320083618,1.03442406654358,0.573137998580933,1.03442406654358,0.657887756824493,0.330597788095474,0.643192410469055,0.330597788095474,0.645257651805878,0.274752050638199,0.660446405410767,0.274752050638199,0.628149509429932,0.327365905046463,0.62992388010025,0.271520167589188,0.613238871097565,0.324780404567719,0.614832520484924,0.268934667110443,0.598039507865906,0.322194904088974,0.599598050117493,0.266349166631699,0.582775294780731,0.322194904088974,0.584578931331635,0.266349166631699,0.56750500202179,0.322194904088974,0.56952440738678,0.266349166631699,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.537197291851044,0.322194904088974,0.539148330688477,0.266349166631699,0.52228319644928,0.322194904088974,0.523996472358704,0.266349166631699,0.507564067840576,0.322194904088974,0.508824050426483,0.266349166631699,0.493009090423584,0.322194904088974,0.493150174617767,0.266349166631699,0.672427415847778,0.330597788095474,0.676131248474121,0.274752050638199,0.569535255432129,0.258363753557205,0.584582328796387,0.258363753557205,0.599582135677338,0.258363753557205,0.614847898483276,0.26094925403595,0.6299769282341,0.263534754514694,
- 0.645393967628479,0.266766637563705,0.660399854183197,0.266766637563705,0.674767374992371,0.266766637563705,0.494526565074921,0.258363753557205,0.508876025676727,0.258363753557205,0.523860096931458,0.258363753557205,0.539097726345062,0.258363753557205,0.554349303245544,0.258363753557205,0.50806736946106,0.106227472424507,0.49606329202652,0.106227472424507,0.496199429035187,0.0503817349672318,0.508435368537903,0.0503817349672318,0.483775287866592,0.106227472424507,0.483846753835678,0.0503817349672318,0.471595346927643,0.106227472424507,0.471689403057098,0.0503817349672318,0.459179550409317,0.106227472424507,0.459416687488556,0.0503817349672318,0.446710765361786,0.106227472424507,0.447317481040955,0.0503817349672318,0.434237033128738,0.106227472424507,0.435189753770828,0.0503817349672318,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.409479707479477,0.106227472424507,0.410719186067581,0.0503817349672318,0.397296994924545,0.106227472424507,0.398513078689575,0.0503817349672318,0.385273426771164,0.106227472424507,0.386290341615677,0.0503817349672318,0.373384028673172,0.106227472424507,0.373663663864136,0.0503817349672318,0.519944429397583,0.106227472424507,0.521070837974548,0.0503817349672318,0.435198456048965,0.0423963218927383,0.447320222854614,0.0423963218927383,0.459403872489929,0.0423963218927383,0.471701741218567,0.0423963218927383,0.48388946056366,0.0423963218927383,0.496309280395508,0.0423963218927383,0.508397817611694,0.0423963218927383,0.519972085952759,0.0423963218927383,0.374772489070892,0.0423963218927383,0.386332243680954,0.0423963218927383,0.398403227329254,0.0423963218927383,0.410678416490555,0.0423963218927383,0.42296490073204,0.0423963218927383,0.807978808879852,0.377595514059067,0.7946657538414,0.377595514059067,0.794816732406616,0.336008876562119,0.808386743068695,0.336008876562119,0.781037867069244,0.377595514059067,0.781117141246796,0.336008876562119,0.767529785633087,0.377595514059067,0.767634093761444,0.336008876562119,0.753760159015656,0.377595514059067,0.75402307510376,
- 0.336008876562119,0.739931702613831,0.377595514059067,0.740604639053345,0.336008876562119,0.726097822189331,0.377595514059067,0.727154493331909,0.336008876562119,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.698641002178192,0.377595514059067,0.700015544891357,0.336008876562119,0.685129821300507,0.377595514059067,0.686478495597839,0.336008876562119,0.671795189380646,0.377595514059067,0.672923028469086,0.336008876562119,0.658609330654144,0.377595514059067,0.658919453620911,0.336008876562119,0.821150898933411,0.377595514059067,0.822400152683258,0.336008876562119,0.727164208889008,0.330062359571457,0.740607678890228,0.330062359571457,0.754008889198303,0.330062359571457,0.767647743225098,0.330062359571457,0.781164526939392,0.330062359571457,0.794938504695892,0.330062359571457,0.808345258235931,0.330062359571457,0.821181535720825,0.330062359571457,0.660149216651917,0.330062359571457,0.672969460487366,0.330062359571457,0.686356663703918,0.330062359571457,0.699970424175262,0.330062359571457,0.71359658241272,0.330062359571457,0.670685410499573,0.734635889530182,0.657112419605255,0.734635889530182,0.657266318798065,0.676378607749939,0.671101331710815,0.676378607749939,0.643218398094177,0.734635889530182,0.643299281597137,0.676378607749939,0.629446625709534,0.734635889530182,0.629552960395813,0.676378607749939,0.615408062934875,0.734635889530182,0.615676164627075,0.676378607749939,0.601309597492218,0.734635889530182,0.601995706558228,0.676378607749939,0.587205648422241,0.734635889530182,0.588282942771912,0.676378607749939,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.559212803840637,0.734635889530182,0.560614228248596,0.676378607749939,0.545437753200531,0.734635889530182,0.54681271314621,0.676378607749939,0.531842768192291,0.734635889530182,0.532992601394653,0.676378607749939,0.518399477005005,0.734635889530182,0.518715560436249,0.676378607749939,0.684114754199982,0.734635889530182,0.685388326644897,0.676378607749939,0.588292896747589,0.667083919048309,0.601998805999756,
- 0.667083919048309,0.615661680698395,0.667083919048309,0.62956690788269,0.667083919048309,0.64334762096405,0.667083919048309,0.657390475273132,0.667083919048309,0.671059012413025,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,0.53303998708725,0.667083919048309,0.546688616275787,0.667083919048309,0.560568153858185,0.667083919048309,0.574460327625275,0.667083919048309,0.565638840198517,0.678219020366669,0.578825414180756,0.681750357151031,0.588474094867706,0.6914022564888,0.592008948326111,0.704585731029511,0.588474094867706,0.717772305011749,0.578825414180756,0.72742110490799,0.565638840198517,0.730956017971039,0.552455246448517,0.72742110490799,0.542803347110748,0.717772305011749,0.539271950721741,0.704585731029511,0.542803347110748,0.6914022564888,0.552455246448517,0.681750357151031,0.475185394287109,0.485674142837524,0.48567008972168,0.475187540054321,0.499995231628418,0.471349716186523,0.514323234558105,0.475187540054321,0.524808883666992,0.485674142837524,0.528651237487793,0.5,0.524808883666992,0.514325380325317,0.514323234558105,0.524811983108521,0.499995231628418,0.528650522232056,0.48567008972168,0.524811983108521,0.475185394287109,0.514325380325317,0.471347808837891,0.5,7.40087813255741e-008,0.463643372058868,0.56783127784729,0.463643550872803,0.567831218242645,0.620991349220276,9.85377024420586e-009,0.620991230010986,-3.18046389224946e-008,0.794075191020966,0.707548975944519,0.794075310230255,0.707548558712006,0.935688734054565,-5.1083070218283e-008,0.935688734054565,-5.61189921199912e-008,0.943555235862732,0.701555669307709,0.943555355072021,0.567831158638,1.10877251625061,-6.99827609196291e-008,1.10877251625061,1.52901268005371,0.392397969961166,1.53438329696655,0.387342929840088,1.63106620311737,0.38734295964241,1.6364369392395,0.392398029565811,1.63643705844879,0.505195915699005,1.52901268005371,0.50519585609436,-4.4569979706921e-008,0.786208689212799,0.701555252075195,0.786208808422089,0.578722953796387,0.591754913330078,0.42127799987793,0.591754913330078,0.421284139156342,
- 0.362136602401733,0.429146200418472,0.351843684911728,0.570854067802429,0.351839989423752,0.578717350959778,0.362140566110611,0.399852693080902,-1.39556694030762,0.721853375434875,-1.38623833656311,0.0718950927257538,-1.40804839134216,1.0417149066925,-1.3979229927063,0.399852693080902,-1.39556694030762,0.721853375434875,-1.38623833656311,0.984747111797333,-1.00826346874237,0.690559089183807,-1.52854931354523,0.34288489818573,-1.00590741634369,0.445426911115646,-1.52089619636536,0.0149273090064526,-1.01838874816895,0.767427563667297,-1.51156747341156,0.117469310760498,-1.53337740898132,1.08728909492493,-1.52325224876404,0.284149467945099,1.10422194004059,2.14506793022156,-1.05100071430206,0.677379369735718,-1.54506480693817,0.00498491851612926,-1.41179847717285,-0.00822839140892029,-1.39485311508179,-0.0624709948897362,-1.0191810131073,0.586341738700867,-1.00081694126129,0.594596743583679,0.0632802248001099,0.886310815811157,0.0632808357477188,1.79832911491394,1.11822199821472,1.00000631809235,0.706282496452332,-1.31802298710682e-005,0.706280112266541,0.501153767108917,0.694309234619141,1.09099972248077,0.645691335201263,2.10003876686096,0.645690679550171,1.6726371049881,0.766180634498596,2.02325558662415,0.766180336475372,0.50000011920929,0.484554767608643,1.59551918506622,1.43448805809021,0.500136852264404,1.43760395050049,2.12055325508118,1.45619428157806,0.5,0.515445232391357,0.830836653709412,0.410261332988739,0.365512549877167,-0.283700436353683,0.334967851638794,-0.628241360187531,0.169968366622925,-0.628691554069519,1.44760620594025,0.414140045642853,1.23955512046814,0.41414013504982,1.22345089912415,0.062099426984787,1.46468567848206,0.0620993226766586,1.68895030021667,-0.289941072463989,1.91234540939331,-0.641982018947601,1.00000762939453,-0.094374343752861,-1.18588886834914e-005,-0.0943763554096222,1.59533321857452,-0.143112763762474,2.09785413742065,-0.143113419413567
- }
- UVIndex: *9105 {
- a: 4,7,6,5,10,830,828,11,16,836,839,17,18,21,20,19,22,23,840,842,28,31,30,29,34,846,844,35,42,45,44,43,48,50,49,859,54,57,56,55,58,61,60,59,62,862,860,63,64,67,66,65,68,71,70,69,72,75,74,73,76,79,78,77,80,83,82,81,84,87,86,85,88,91,90,89,92,95,94,93,96,99,98,97,100,103,102,101,104,107,106,105,108,111,110,109,112,115,114,113,116,119,118,117,120,123,122,121,124,127,126,125,128,131,130,129,132,135,134,133,136,139,138,137,140,143,142,141,144,147,146,145,148,151,150,149,152,155,154,153,156,159,158,157,160,163,162,161,164,167,166,165,168,171,170,169,172,175,174,173,176,179,178,177,180,183,182,181,184,187,186,185,188,191,190,189,192,195,194,193,196,199,198,197,200,203,202,201,204,207,206,205,208,211,210,209,212,215,214,213,216,219,218,217,220,223,222,221,224,227,226,225,228,231,230,229,232,235,234,233,236,239,238,237,240,243,242,241,244,247,246,245,248,251,250,249,252,255,254,253,256,259,258,257,260,263,262,261,264,267,266,265,268,271,270,269,272,275,274,273,276,279,278,277,280,283,282,281,284,287,286,285,288,291,290,289,292,295,294,293,296,299,298,297,300,303,302,301,304,307,306,305,308,311,310,309,312,315,314,313,316,319,318,317,320,323,322,321,324,327,326,325,328,331,330,329,332,335,334,333,336,339,338,337,340,343,342,341,344,347,346,345,348,351,350,349,352,355,354,353,356,359,358,357,360,363,362,361,366,367,597,599,376,379,378,377,386,389,388,387,392,878,876,393,398,399,604,606,401,402,403,404,405,406,407,408,409,410,411,412,413,401,404,414,415,416,417,418,419,887,886,421,422,423,890,889,427,418,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,432,431,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,444,443,457,453,452,458,459,460,461,462,463,464,465,466,467,468,469,470,471,413,414,407,406,405,408,409,412,427,428,419,422,421,886,889,426,441,442,433,436,435,434,437,440,455,454,456,457,422,421,472,473,472,421,426,474,425,475,474,426,476,415,418,477,478,477,418,427,478,427,422,473,473,472,479,480,479,472,474,481,475,482,481,474,483,476,477,484,485,484,477,478,485,478,473,480,480,
- 479,486,487,486,479,481,488,482,489,488,481,490,483,484,491,492,491,484,485,492,485,480,487,428,888,885,419,417,416,884,1023,493,494,495,496,497,498,493,496,499,500,498,497,501,502,500,499,503,504,505,506,495,494,503,506,507,508,494,493,498,509,507,493,500,510,509,498,502,511,510,500,512,513,504,503,494,508,512,503,496,495,434,433,442,497,496,433,431,499,497,442,430,501,499,431,506,505,438,437,434,495,506,437,514,515,516,517,515,514,518,519,520,521,522,523,524,521,520,525,517,516,524,525,453,514,517,454,514,453,459,518,444,520,523,445,525,520,444,456,454,517,525,456,515,526,527,516,526,515,519,528,521,529,530,522,531,529,521,524,516,527,531,524,532,533,534,535,536,537,534,533,538,539,537,536,540,541,539,538,542,543,544,545,532,535,542,545,535,534,546,547,537,548,546,534,539,549,548,537,541,550,549,539,551,552,543,542,535,547,551,542,547,546,553,554,548,555,553,546,549,556,555,548,550,557,556,549,558,559,552,551,547,554,558,551,554,553,560,561,555,562,560,553,556,563,562,555,557,564,563,556,565,566,559,558,554,561,565,558,567,568,569,570,571,572,569,568,573,574,572,571,575,576,574,573,577,578,579,580,567,570,577,580,581,582,568,567,581,567,580,583,579,584,583,580,585,575,573,586,586,573,571,587,587,571,568,582,588,589,582,581,590,587,582,589,591,586,587,590,592,585,586,591,583,584,593,594,588,581,583,594,411,893,892,412,595,897,894,402,401,397,396,533,532,400,536,533,396,395,538,536,400,394,540,538,395,545,544,399,398,397,532,545,398,408,407,589,588,408,588,594,409,593,410,409,594,403,592,591,404,404,591,590,414,414,590,589,407,603,605,394,395,601,602,396,397,600,603,395,400,602,600,400,396,606,601,397,398,607,608,609,610,611,612,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,617,616,637,638,619,622,627,630,645,907,905,646,651,913,916,652,653,654,917,919,661,923,921,662,677,939,937,678,685,947,945,686,691,953,956,692,693,694,957,959,701,963,961,702,717,979,977,718,725,987,985,726,731,993,996,732,733,734,997,999,741,1003,1001,742,751,752,753,1016,757,758,759,760,761,1019,1017,
- 762,763,764,765,766,767,768,769,770,771,772,773,774,775,766,765,776,777,778,779,780,781,782,783,784,785,778,777,786,782,781,787,788,775,776,767,770,769,768,771,774,784,783,785,786,776,1030,1024,767,765,1025,1030,776,764,1027,1025,765,768,1029,1028,771,790,1031,1033,794,782,789,790,783,789,782,788,791,778,792,793,779,794,792,778,785,783,790,794,785,789,1032,1031,790,792,1022,1020,793,795,799,797,1039,1036,796,800,799,795,802,803,1040,1042,798,797,804,805,799,806,804,797,800,807,806,799,801,808,807,800,809,810,803,802,798,805,809,802,805,804,811,812,806,813,811,804,807,814,813,806,808,815,814,807,816,817,810,809,805,812,816,809,818,819,1047,1043,820,821,1045,1050,822,823,1044,1046,820,1050,1051,825,827,832,1,0,834,829,3,2,831,833,9,8,838,835,13,12,841,837,15,14,843,848,25,24,850,845,27,26,847,849,33,32,854,851,37,36,852,856,39,38,858,853,41,40,855,857,47,46,51,861,53,52,900,864,364,598,863,865,369,368,870,867,371,370,868,872,373,372,874,869,375,374,871,873,381,380,875,880,383,382,882,877,385,384,879,881,391,390,886,887,420,889,890,424,425,426,889,886,420,423,885,887,419,890,883,424,895,891,406,405,892,895,405,412,898,899,595,401,413,891,898,413,406,866,903,596,365,896,897,595,899,896,595,902,901,613,614,904,909,639,640,911,906,641,642,908,910,643,644,915,912,647,648,918,914,649,650,920,925,655,656,927,922,657,658,924,926,659,660,931,928,663,664,929,933,665,666,935,930,667,668,932,934,669,670,936,941,671,672,943,938,673,674,940,942,675,676,944,949,679,680,951,946,681,682,948,950,683,684,955,952,687,688,958,954,689,690,960,965,695,696,967,962,697,698,964,966,699,700,971,968,703,704,969,973,705,706,975,970,707,708,972,974,709,710,976,981,711,712,983,978,713,714,980,982,715,716,984,989,719,720,991,986,721,722,988,990,723,724,995,992,727,728,998,994,729,730,1000,1005,735,736,1007,1002,737,738,1004,1006,739,740,1011,1008,743,744,1009,1013,745,746,1015,1010,747,748,1012,1014,749,750,756,1018,754,755,417,1023,888,428,1024,1029,768,767,1028,1026,772,771,791,1021,1032,789,1033,1022,792,794,1036,1034,795,1034,1037,796,795,1037,
- 1038,796,1035,1039,797,798,1038,1041,801,800,796,1042,1035,798,802,1051,1049,824,825,1048,1047,819,826,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1058,1057,1062,1063,1061,1060,1064,1065,1063,1062,1066,1067,1053,1052,1056,1059,1066,1052,1068,1069,1057,1056,1069,1070,1060,1057,1070,1071,1062,1060,1071,1072,1064,1062,1055,1068,1056,1052,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,1711,1147,1145,1146,1148,1149,1150,1151,1145,1152,1153,1154,1152,1145,1147,1155,1149,1156,1157,1158,1159,1156,1149,1148,1154,1153,1159,1148,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,1559,1558,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,1591,1590,1604,1595,1594,1605,1606,1574,1575,1560,1563,1562,1561,1570,1573,1597,1596,1603,1604,1563,1562,1607,1608,1572,1609,1610,1573,1611,1612,1561,1560,1575,1613,1611,1560,1558,1614,1613,1575,1557,1615,1614,1558,1616,1617,1571,1570,1561,1612,1616,1570,1618,1619,1620,1621,1622,1623,1618,1621,1624,1625,1623,1622,1626,1627,1625,1624,1628,1629,1630,1631,1620,1619,1628,1631,1632,1633,1619,1618,1623,1634,1632,1618,1625,1635,1634,1623,1627,1636,1635,1625,1637,1638,1629,1628,1619,1633,1637,1628,1621,1620,1577,1576,1639,1622,1621,1576,1640,1624,1622,1639,1641,1626,1624,1640,1631,1630,1587,1586,1577,1620,1631,1586,1642,1643,1644,1645,1643,1642,1646,1647,1648,1649,1650,1651,1652,1649,1648,1653,1645,1644,1652,1653,1595,1642,1645,1596,1642,1595,1606,1646,1591,1648,1651,1592,1653,1648,1591,1603,1596,1645,1653,1603,1643,1654,1655,1644,1654,1643,1647,1656,1649,1657,1658,1650,1659,1657,1649,1652,1644,1655,1659,1652,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1664,
- 1663,1684,1685,1666,1669,1680,1683,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,1146,1145,1154,1712,1150,1149,1158,1151,1710,1154,1148,1713,1165,1164,1714,1715,1716,1717,1718,1719,1720,1721,1722,1163,1715,1718,1160,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,1641,1640,1785,1783,1640,1639,1579,1785,1639,1576,1589,1578,1577,1586,1610,1607,1562,1573,1786,1787,1556,1559,1788,1786,1559,1574,1608,1788,1574,1563,1660,1661,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1794,1797,1807,1806,1807,1800,1799,1798,1801,1802,1805,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1816,1819,1822,1823,1821,1820,1824,1825,1826,1827,1828,1825,1824,1829,1818,1817,1828,1829,1829,1824,1830,1831,1830,1824,1827,1832,1833,1822,1820,1834,1834,1820,1819,1835,1818,1836,1835,1819,1836,1818,1829,1831,1835,1836,1812,1815,1834,1835,1815,1837,1833,1834,1837,1838,1830,1832,1839,1809,1831,1830,1809,1808,1812,1836,1831,1808,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1846,1845,1850,1851,1849,1848,1852,1853,1851,1850,1854,1855,1841,1840,1844,1847,1854,1840,1847,1846,1856,1857,1849,1858,1856,1846,1851,1859,1858,1849,1853,1860,1859,1851,1861,1862,1855,1854,1847,1857,1861,1854,1863,1864,1865,1866,1867,1868,1865,1864,1869,1870,1868,1867,1871,1872,1870,1869,1873,1874,1875,1876,1863,1866,1873,1876,1877,1878,1864,1863,1877,1863,1876,1879,1875,1880,1879,1876,1881,1871,1869,1882,1882,1869,1867,1883,1883,1867,1864,1878,1884,1885,1878,1877,1886,1883,1878,1885,1887,1882,1883,1886,1888,1881,1882,1887,1879,1880,1889,1890,1884,1877,1879,1890,1891,1892,1799,1798,1891,1798,1805,1893,1804,1894,1893,1805,1895,1896,1795,1794,1897,1895,1794,1806,1897,1806,1799,1892,
- 1894,1898,1899,1893,1801,1800,1885,1884,1801,1884,1890,1802,1889,1803,1802,1890,1796,1888,1887,1797,1797,1887,1886,1807,1807,1886,1885,1800,1900,1810,1809,1839,1901,1902,1838,1837,1814,1901,1837,1815,1811,1813,1812,1808,1903,1904,1845,1844,1904,1905,1848,1845,1905,1906,1850,1848,1906,1907,1852,1850,1843,1903,1844,1840,1908,1909,1892,1891,1899,1908,1891,1893,1910,1911,1896,1895,1912,1910,1895,1897,1909,1912,1897,1892,1913,1914,1915,1916,1917,1918,1919,1920,1921,1914,1913,1922,1923,1924,1925,1926,1923,1926,1917,1920,1919,1918,1921,1922,1927,1928,1929,1930,1931,1932,1933,1934,1922,1913,1928,1927,1928,1913,1916,1935,1936,1937,1924,1923,1936,1923,1920,1934,1919,1931,1934,1920,1931,1919,1922,1927,1938,1939,1940,1941,1942,1943,1938,1941,1944,1945,1943,1942,1946,1947,1948,1949,1950,1947,1946,1951,1940,1939,1950,1951,1951,1946,1952,1953,1952,1946,1949,1954,1955,1944,1942,1956,1956,1942,1941,1957,1940,1958,1957,1941,1958,1940,1951,1953,1957,1958,1918,1917,1926,1956,1957,1917,1925,1955,1956,1926,1914,1952,1954,1915,1953,1952,1914,1921,1918,1958,1953,1921,1959,1929,1928,1935,1960,1961,1937,1936,1933,1960,1936,1934,1930,1932,1931,1927,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1969,1968,1977,1978,1979,1980,1981,1978,1981,1972,1975,1974,1973,1976,1977,1982,1983,1984,1985,1986,1987,1988,1989,1977,1968,1983,1982,1983,1968,1971,1990,1991,1992,1979,1978,1991,1978,1975,1989,1974,1986,1989,1975,1986,1974,1977,1982,1993,1994,1995,1996,1997,1998,1993,1996,1999,2000,1998,1997,2001,2002,2003,2004,2005,2002,2001,2006,1995,1994,2005,2006,2006,2001,2007,2008,2007,2001,2004,2009,2010,1999,1997,2011,2011,1997,1996,2012,1995,2013,2012,1996,2013,1995,2006,2008,2012,2013,1973,1972,1981,2011,2012,1972,1980,2010,2011,1981,1969,2007,2009,1970,2008,2007,1969,1976,1973,2013,2008,1976,2014,1984,1983,1990,2015,2016,1992,1991,1988,2015,1991,1989,1985,1987,1986,1982,2017,2018,2019,2020,2021,2022,2023,2024,2023,2025,2026,2024,4501,4500,4498,2028,2029,2030,2031,2032,2033,2034,2035,4510,4521,2034,2033,2036,2037,2038,2035,4521,
- 2039,2040,4524,4526,2034,2037,2037,2036,2041,2042,2043,2038,2039,2044,2045,2040,2037,2042,2042,2041,2046,2047,2048,2043,2044,2049,2050,2045,2042,2047,2047,2046,2025,2023,2018,2048,2049,2019,2022,2050,2047,2023,2051,2052,2027,4502,2053,2054,2052,2051,2055,2056,2054,2053,2057,2058,2056,2055,2059,2060,2058,2057,2061,2062,2060,2059,2027,2052,2018,2017,2052,2054,2048,2018,2054,2056,2043,2048,2056,2058,2038,2043,2058,2060,2035,2038,2060,2062,4510,2035,2063,2064,2032,2031,2031,4519,4528,2063,2065,2066,2062,2061,2067,2068,4535,4515,4511,4541,2069,2070,4497,4496,4514,4513,2072,4499,4533,4535,2068,2074,2075,2076,2074,2071,2073,2077,2075,2074,2076,2078,4517,2075,2077,2071,2074,2068,2067,2079,4533,2075,4517,4532,4517,2078,2080,4526,4519,2031,2034,4529,4510,2062,2066,4527,4531,2081,2082,2083,4537,4523,2084,4539,4537,2084,2085,4540,4544,4539,2085,2086,4541,4540,2086,2069,4520,4532,2080,4504,4534,2088,2089,2090,2091,2092,2093,2094,4545,2095,4534,2096,2097,2088,2091,2094,2095,2092,2098,2099,2100,4506,2102,2103,2104,2105,4507,4505,2101,2107,2108,4509,2102,2110,2111,2103,2112,2113,4530,2114,4522,2115,2116,2117,2118,2113,2112,2117,2112,2119,4525,2120,2116,2121,2122,2123,2124,2118,2117,2125,4536,2123,2117,4525,2126,2120,2122,2127,2128,2129,2124,2123,2128,2123,4536,4538,2130,2126,2127,2131,2132,2133,2129,2128,2132,2128,4538,2134,2135,2099,2130,2131,2100,2103,2111,2133,2132,2103,2132,2135,2104,2136,2137,2106,2109,2138,2139,2137,2136,2106,2137,2099,2098,2137,2139,2130,2099,2139,2140,2126,2130,2140,2141,2120,2126,4522,2116,2120,2141,4512,4503,2087,4508,2142,2096,4543,2097,4516,4534,4504,4542,4518,2140,2139,2138,4518,2141,2140,2115,2143,2144,2114,2119,2112,2116,2115,2144,2121,2145,2146,2147,2148,2146,2149,2150,2147,2149,2151,2152,2150,2151,2153,2154,2152,2153,2155,2156,2154,2155,2157,2158,2156,2157,2159,2160,2158,2159,2161,2162,2160,2161,2163,2164,2162,2163,2165,2166,2164,2165,2167,2168,2166,2169,2145,2148,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2183,2186,2188,2189,2187,2188,2190,2191,2189,
- 2190,2192,2193,2191,2192,2194,2195,2193,2194,2196,2197,2195,2196,2198,2199,2200,2201,2202,2203,2199,2202,2204,2205,2203,2204,2206,2207,2205,2206,2208,2184,2207,2208,2185,2156,2158,2184,2183,2154,2156,2183,2187,2152,2154,2187,2189,2150,2152,2189,2191,2147,2150,2191,2193,2148,2147,2193,2195,2170,2148,2195,2197,2166,2168,2200,2199,2164,2166,2199,2203,2162,2164,2203,2205,2160,2162,2205,2207,2158,2160,2207,2184,2209,2210,2211,2212,2210,2213,2214,2211,2213,2215,2216,2214,2215,2217,2218,2216,2217,2219,2220,2218,2219,2221,2222,2220,2221,2223,2224,2222,2223,2225,2226,2224,2225,2227,2228,2226,2227,2229,2230,2228,2229,2231,2232,2230,2233,2209,2212,2234,2220,2222,2235,2236,2218,2220,2236,2237,2216,2218,2237,2238,2214,2216,2238,2239,2211,2214,2239,2240,2212,2211,2240,2241,2234,2212,2241,2242,2230,2232,2243,2244,2228,2230,2244,2245,2226,2228,2245,2246,2224,2226,2246,2247,2222,2224,2247,2235,2248,2249,2250,2251,2249,2252,2253,2250,2252,2254,2255,2253,2254,2256,2257,2255,2256,2258,2259,2257,2258,2260,2261,2259,2260,2262,2263,2261,2262,2264,2265,2263,2264,2266,2267,2265,2266,2268,2269,2267,2268,2270,2271,2269,2272,2248,2251,2273,2259,2261,2274,2275,2257,2259,2275,2276,2255,2257,2276,2277,2253,2255,2277,2278,2250,2253,2278,2279,2251,2250,2279,2280,2273,2251,2280,2281,2269,2271,2282,2283,2267,2269,2283,2284,2265,2267,2284,2285,2263,2265,2285,2286,2261,2263,2286,2274,2287,2288,2289,2290,2288,2291,2292,2289,2291,2293,2294,2292,2293,2295,2296,2294,2295,2297,2298,2296,2297,2299,2300,2298,2299,2301,2302,2300,2301,2303,2304,2302,2303,2305,2306,2304,2305,2307,2308,2306,2307,2309,2310,2308,2311,2287,2290,2312,2298,2300,2313,2314,2296,2298,2314,2315,2294,2296,2315,2316,2292,2294,2316,2317,2289,2292,2317,2318,2290,2289,2318,2319,2312,2290,2319,2320,2308,2310,2321,2322,2306,2308,2322,2323,2304,2306,2323,2324,2302,2304,2324,2325,2300,2302,2325,2313,2326,2327,2328,2329,2327,2330,2331,2328,2330,2332,2333,2331,2332,2334,2335,2333,2334,2336,2337,2335,2336,2338,2339,2337,2338,2340,2341,2339,2340,2342,2343,2341,2342,2344,2345,2343,2344,2346,2347,2345,
- 2346,2348,2349,2347,2350,2326,2329,2351,2337,2339,2352,2353,2335,2337,2353,2354,2333,2335,2354,2355,2331,2333,2355,2356,2328,2331,2356,2357,2329,2328,2357,2358,2351,2329,2358,2359,2347,2349,2360,2361,2345,2347,2361,2362,2343,2345,2362,2363,2341,2343,2363,2364,2339,2341,2364,2352,2365,2366,2367,2368,2366,2369,2370,2367,2369,2371,2372,2370,2371,2373,2374,2372,2373,2375,2376,2374,2375,2377,2378,2376,2377,2379,2380,2378,2379,2381,2382,2380,2381,2383,2384,2382,2383,2385,2386,2384,2385,2387,2388,2386,2389,2365,2368,2390,2376,2378,2391,2392,2374,2376,2392,2393,2372,2374,2393,2394,2370,2372,2394,2395,2367,2370,2395,2396,2368,2367,2396,2397,2390,2368,2397,2398,2386,2388,2399,2400,2384,2386,2400,2401,2382,2384,2401,2402,2380,2382,2402,2403,2378,2380,2403,2391,2404,2405,2406,2407,2405,2408,2409,2406,2408,2410,2411,2409,2410,2412,2413,2411,2412,2414,2415,2413,2414,2416,2417,2415,2416,2418,2419,2417,2418,2420,2421,2419,2420,2422,2423,2421,2422,2424,2425,2423,2424,2426,2427,2425,2428,2404,2407,2429,2415,2417,2430,2431,2413,2415,2431,2432,2411,2413,2432,2433,2409,2411,2433,2434,2406,2409,2434,2435,2407,2406,2435,2436,2429,2407,2436,2437,2425,2427,2438,2439,2423,2425,2439,2440,2421,2423,2440,2441,2419,2421,2441,2442,2417,2419,2442,2430,2443,2444,2445,2446,2444,2447,2448,2445,2447,2449,2450,2448,2449,2451,2452,2450,2451,2453,2454,2452,2453,2455,2456,2454,2455,2457,2458,2456,2457,2459,2460,2458,2459,2461,2462,2460,2461,2463,2464,2462,2463,2465,2466,2464,2467,2443,2446,2468,2454,2456,2469,2470,2452,2454,2470,2471,2450,2452,2471,2472,2448,2450,2472,2473,2445,2448,2473,2474,2446,2445,2474,2475,2468,2446,2475,2476,2464,2466,2477,2478,2462,2464,2478,2479,2460,2462,2479,2480,2458,2460,2480,2481,2456,2458,2481,2469,2482,2483,2484,2485,2483,2486,2487,2484,2486,2488,2489,2487,2488,2490,2491,2489,2490,2492,2493,2491,2492,2494,2495,2493,2494,2496,2497,2495,2496,2498,2499,2497,2498,2500,2501,2499,2500,2502,2503,2501,2502,2504,2505,2503,2506,2482,2485,2507,2493,2495,2508,2509,2491,2493,2509,2510,2489,2491,2510,2511,2487,2489,2511,2512,2484,2487,
- 2512,2513,2485,2484,2513,2514,2507,2485,2514,2515,2503,2505,2516,2517,2501,2503,2517,2518,2499,2501,2518,2519,2497,2499,2519,2520,2495,2497,2520,2508,2521,2522,2523,2524,2522,2525,2526,2523,2525,2527,2528,2526,2527,2529,2530,2528,2529,2531,2532,2530,2531,2533,2534,2532,2533,2535,2536,2534,2535,2537,2538,2536,2537,2539,2540,2538,2539,2541,2542,2540,2541,2543,2544,2542,2545,2521,2524,2546,2532,2534,2547,2548,2530,2532,2548,2549,2528,2530,2549,2550,2526,2528,2550,2551,2523,2526,2551,2552,2524,2523,2552,2553,2546,2524,2553,2554,2542,2544,2555,2556,2540,2542,2556,2557,2538,2540,2557,2558,2536,2538,2558,2559,2534,2536,2559,2547,2560,2561,2562,2563,2561,2564,2565,2562,2564,2566,2567,2565,2566,2568,2569,2567,2568,2570,2571,2569,2570,2572,2573,2571,2572,2574,2575,2573,2574,2576,2577,2575,2576,2578,2579,2577,2578,2580,2581,2579,2580,2582,2583,2581,2584,2560,2563,2585,2571,2573,2586,2587,2569,2571,2587,2588,2567,2569,2588,2589,2565,2567,2589,2590,2562,2565,2590,2591,2563,2562,2591,2592,2585,2563,2592,2593,2581,2583,2594,2595,2579,2581,2595,2596,2577,2579,2596,2597,2575,2577,2597,2598,2573,2575,2598,2586,2599,2600,2601,2602,2600,2603,2604,2601,2603,2605,2606,2604,2605,2607,2608,2606,2607,2609,2610,2608,2609,2611,2612,2610,2611,2613,2614,2612,2613,2615,2616,2614,2615,2617,2618,2616,2617,2619,2620,2618,2619,2621,2622,2620,2623,2599,2602,2624,2610,2612,2625,2626,2608,2610,2626,2627,2606,2608,2627,2628,2604,2606,2628,2629,2601,2604,2629,2630,2602,2601,2630,2631,2624,2602,2631,2632,2620,2622,2633,2634,2618,2620,2634,2635,2616,2618,2635,2636,2614,2616,2636,2637,2612,2614,2637,2625,2638,2639,2640,2641,2639,2642,2643,2640,2642,2644,2645,2643,2644,2646,2647,2645,2646,2648,2649,2647,2648,2650,2651,2649,2650,2652,2653,2651,2652,2654,2655,2653,2654,2656,2657,2655,2656,2658,2659,2657,2658,2660,2661,2659,2662,2638,2641,2663,2649,2651,2664,2665,2647,2649,2665,2666,2645,2647,2666,2667,2643,2645,2667,2668,2640,2643,2668,2669,2641,2640,2669,2670,2663,2641,2670,2671,2659,2661,2672,2673,2657,2659,2673,2674,2655,2657,2674,2675,2653,2655,2675,2676,
- 2651,2653,2676,2664,2677,2678,2679,2680,2678,2681,2682,2679,2681,2683,2684,2682,2683,2685,2686,2684,2685,2687,2688,2686,2687,2689,2690,2688,2689,2691,2692,2690,2691,2693,2694,2692,2693,2695,2696,2694,2695,2697,2698,2696,2697,2699,2700,2698,2701,2677,2680,2702,2688,2690,2703,2704,2686,2688,2704,2705,2684,2686,2705,2706,2682,2684,2706,2707,2679,2682,2707,2708,2680,2679,2708,2709,2702,2680,2709,2710,2698,2700,2711,2712,2696,2698,2712,2713,2694,2696,2713,2714,2692,2694,2714,2715,2690,2692,2715,2703,2716,2717,2718,2719,2717,2720,2721,2718,2720,2722,2723,2721,2722,2724,2725,2723,2724,2726,2727,2725,2726,2728,2729,2727,2728,2730,2731,2729,2730,2732,2733,2731,2732,2734,2735,2733,2734,2736,2737,2735,2736,2738,2739,2737,2740,2716,2719,2741,2727,2729,2742,2743,2725,2727,2743,2744,2723,2725,2744,2745,2721,2723,2745,2746,2718,2721,2746,2747,2719,2718,2747,2748,2741,2719,2748,2749,2737,2739,2750,2751,2735,2737,2751,2752,2733,2735,2752,2753,2731,2733,2753,2754,2729,2731,2754,2742,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2768,2771,2772,2769,2771,2773,2774,2772,2773,2775,2776,2774,2775,2777,2778,2776,2777,2779,2780,2778,2779,2781,2782,2780,2781,2783,2784,2782,2783,2785,2786,2784,2785,2787,2788,2786,2787,2789,2790,2788,2791,2767,2770,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2805,2808,2810,2811,2809,2810,2812,2813,2811,2812,2814,2815,2813,2814,2816,2817,2815,2816,2818,2819,2817,2818,2820,2821,2822,2823,2824,2825,2821,2824,2826,2827,2825,2826,2828,2829,2827,2828,2830,2806,2829,2830,2807,2778,2780,2806,2805,2776,2778,2805,2809,2774,2776,2809,2811,2772,2774,2811,2813,2769,2772,2813,2815,2770,2769,2815,2817,2792,2770,2817,2819,2788,2790,2822,2821,2786,2788,2821,2825,2784,2786,2825,2827,2782,2784,2827,2829,2780,2782,2829,2806,2831,2832,2833,2834,2832,2835,2836,2833,2835,2837,2838,2836,2837,2839,2840,2838,2839,2841,2842,2840,2841,2843,2844,2842,2843,2845,2846,2844,2845,2847,2848,2846,2847,2849,2850,2848,2849,2851,2852,2850,2851,2853,2854,2852,2855,2831,
- 2834,2856,2842,2844,2857,2858,2840,2842,2858,2859,2838,2840,2859,2860,2836,2838,2860,2861,2833,2836,2861,2862,2834,2833,2862,2863,2856,2834,2863,2864,2852,2854,2865,2866,2850,2852,2866,2867,2848,2850,2867,2868,2846,2848,2868,2869,2844,2846,2869,2857,2870,2871,2872,2873,2871,2874,2875,2872,2874,2876,2877,2875,2876,2878,2879,2877,2878,2880,2881,2879,2880,2882,2883,2881,2882,2884,2885,2883,2884,2886,2887,2885,2886,2888,2889,2887,2888,2890,2891,2889,2890,2892,2893,2891,2894,2870,2873,2895,2881,2883,2896,2897,2879,2881,2897,2898,2877,2879,2898,2899,2875,2877,2899,2900,2872,2875,2900,2901,2873,2872,2901,2902,2895,2873,2902,2903,2891,2893,2904,2905,2889,2891,2905,2906,2887,2889,2906,2907,2885,2887,2907,2908,2883,2885,2908,2896,2909,2910,2911,2912,2910,2913,2914,2911,2913,2915,2916,2914,2915,2917,2918,2916,2917,2919,2920,2918,2919,2921,2922,2920,2921,2923,2924,2922,2923,2925,2926,2924,2925,2927,2928,2926,2927,2929,2930,2928,2929,2931,2932,2930,2933,2909,2912,2934,2920,2922,2935,2936,2918,2920,2936,2937,2916,2918,2937,2938,2914,2916,2938,2939,2911,2914,2939,2940,2912,2911,2940,2941,2934,2912,2941,2942,2930,2932,2943,2944,2928,2930,2944,2945,2926,2928,2945,2946,2924,2926,2946,2947,2922,2924,2947,2935,2948,2949,2950,2951,2949,2952,2953,2950,2952,2954,2955,2953,2954,2956,2957,2955,2956,2958,2959,2957,2958,2960,2961,2959,2960,2962,2963,2961,2962,2964,2965,2963,2964,2966,2967,2965,2966,2968,2969,2967,2968,2970,2971,2969,2972,2948,2951,2973,2959,2961,2974,2975,2957,2959,2975,2976,2955,2957,2976,2977,2953,2955,2977,2978,2950,2953,2978,2979,2951,2950,2979,2980,2973,2951,2980,2981,2969,2971,2982,2983,2967,2969,2983,2984,2965,2967,2984,2985,2963,2965,2985,2986,2961,2963,2986,2974,2987,2988,2989,2990,2988,2991,2992,2989,2991,2993,2994,2992,2993,2995,2996,2994,2995,2997,2998,2996,2997,2999,3000,2998,2999,3001,3002,3000,3001,3003,3004,3002,3003,3005,3006,3004,3005,3007,3008,3006,3007,3009,3010,3008,3011,2987,2990,3012,2998,3000,3013,3014,2996,2998,3014,3015,2994,2996,3015,3016,2992,2994,3016,3017,2989,2992,3017,3018,2990,2989,3018,3019,
- 3012,2990,3019,3020,3008,3010,3021,3022,3006,3008,3022,3023,3004,3006,3023,3024,3002,3004,3024,3025,3000,3002,3025,3013,3026,3027,3028,3029,3027,3030,3031,3028,3030,3032,3033,3031,3032,3034,3035,3033,3034,3036,3037,3035,3036,3038,3039,3037,3038,3040,3041,3039,3040,3042,3043,3041,3042,3044,3045,3043,3044,3046,3047,3045,3046,3048,3049,3047,3050,3026,3029,3051,3037,3039,3052,3053,3035,3037,3053,3054,3033,3035,3054,3055,3031,3033,3055,3056,3028,3031,3056,3057,3029,3028,3057,3058,3051,3029,3058,3059,3047,3049,3060,3061,3045,3047,3061,3062,3043,3045,3062,3063,3041,3043,3063,3064,3039,3041,3064,3052,3065,3066,3067,3068,3066,3069,3070,3067,3069,3071,3072,3070,3071,3073,3074,3072,3073,3075,3076,3074,3075,3077,3078,3076,3077,3079,3080,3078,3079,3081,3082,3080,3081,3083,3084,3082,3083,3085,3086,3084,3085,3087,3088,3086,3089,3065,3068,3090,3076,3078,3091,3092,3074,3076,3092,3093,3072,3074,3093,3094,3070,3072,3094,3095,3067,3070,3095,3096,3068,3067,3096,3097,3090,3068,3097,3098,3086,3088,3099,3100,3084,3086,3100,3101,3082,3084,3101,3102,3080,3082,3102,3103,3078,3080,3103,3091,3104,3105,3106,3107,3105,3108,3109,3106,3108,3110,3111,3109,3110,3112,3113,3111,3112,3114,3115,3113,3114,3116,3117,3115,3116,3118,3119,3117,3118,3120,3121,3119,3120,3122,3123,3121,3122,3124,3125,3123,3124,3126,3127,3125,3128,3104,3107,3129,3115,3117,3130,3131,3113,3115,3131,3132,3111,3113,3132,3133,3109,3111,3133,3134,3106,3109,3134,3135,3107,3106,3135,3136,3129,3107,3136,3137,3125,3127,3138,3139,3123,3125,3139,3140,3121,3123,3140,3141,3119,3121,3141,3142,3117,3119,3142,3130,3143,3144,3145,3146,3144,3147,3148,3145,3147,3149,3150,3148,3149,3151,3152,3150,3151,3153,3154,3152,3153,3155,3156,3154,3155,3157,3158,3156,3157,3159,3160,3158,3159,3161,3162,3160,3161,3163,3164,3162,3163,3165,3166,3164,3167,3143,3146,3168,3154,3156,3169,3170,3152,3154,3170,3171,3150,3152,3171,3172,3148,3150,3172,3173,3145,3148,3173,3174,3146,3145,3174,3175,3168,3146,3175,3176,3164,3166,3177,3178,3162,3164,3178,3179,3160,3162,3179,3180,3158,3160,3180,3181,3156,3158,3181,3169,3182,3183,
- 3184,3185,3183,3186,3187,3184,3186,3188,3189,3187,3188,3190,3191,3189,3190,3192,3193,3191,3192,3194,3195,3193,3194,3196,3197,3195,3196,3198,3199,3197,3198,3200,3201,3199,3200,3202,3203,3201,3202,3204,3205,3203,3206,3182,3185,3207,3193,3195,3208,3209,3191,3193,3209,3210,3189,3191,3210,3211,3187,3189,3211,3212,3184,3187,3212,3213,3185,3184,3213,3214,3207,3185,3214,3215,3203,3205,3216,3217,3201,3203,3217,3218,3199,3201,3218,3219,3197,3199,3219,3220,3195,3197,3220,3208,3221,3222,3223,3224,3222,3225,3226,3223,3225,3227,3228,3226,3227,3229,3230,3228,3229,3231,3232,3230,3231,3233,3234,3232,3233,3235,3236,3234,3235,3237,3238,3236,3237,3239,3240,3238,3239,3241,3242,3240,3241,3243,3244,3242,3245,3221,3224,3246,3232,3234,3247,3248,3230,3232,3248,3249,3228,3230,3249,3250,3226,3228,3250,3251,3223,3226,3251,3252,3224,3223,3252,3253,3246,3224,3253,3254,3242,3244,3255,3256,3240,3242,3256,3257,3238,3240,3257,3258,3236,3238,3258,3259,3234,3236,3259,3247,3260,3261,3262,3263,3261,3264,3265,3262,3264,3266,3267,3265,3266,3268,3269,3267,3268,3270,3271,3269,3270,3272,3273,3271,3272,3274,3275,3273,3274,3276,3277,3275,3276,3278,3279,3277,3278,3280,3281,3279,3280,3282,3283,3281,3284,3260,3263,3285,3271,3273,3286,3287,3269,3271,3287,3288,3267,3269,3288,3289,3265,3267,3289,3290,3262,3265,3290,3291,3263,3262,3291,3292,3285,3263,3292,3293,3281,3283,3294,3295,3279,3281,3295,3296,3277,3279,3296,3297,3275,3277,3297,3298,3273,3275,3298,3286,3299,3300,3301,3302,3300,3303,3304,3301,3303,3305,3306,3304,3305,3307,3308,3306,3307,3309,3310,3308,3309,3311,3312,3310,3311,3313,3314,3312,3313,3315,3316,3314,3315,3317,3318,3316,3317,3319,3320,3318,3319,3321,3322,3320,3323,3299,3302,3324,3310,3312,3325,3326,3308,3310,3326,3327,3306,3308,3327,3328,3304,3306,3328,3329,3301,3304,3329,3330,3302,3301,3330,3331,3324,3302,3331,3332,3320,3322,3333,3334,3318,3320,3334,3335,3316,3318,3335,3336,3314,3316,3336,3337,3312,3314,3337,3325,3338,3339,3340,3341,3339,3342,3343,3340,3342,3344,3345,3343,3344,3346,3347,3345,3346,3348,3349,3347,3348,3350,3351,3349,3350,3352,3353,3351,
- 3352,3354,3355,3353,3354,3356,3357,3355,3356,3358,3359,3357,3358,3360,3361,3359,3362,3338,3341,3363,3349,3351,3364,3365,3347,3349,3365,3366,3345,3347,3366,3367,3343,3345,3367,3368,3340,3343,3368,3369,3341,3340,3369,3370,3363,3341,3370,3371,3359,3361,3372,3373,3357,3359,3373,3374,3355,3357,3374,3375,3353,3355,3375,3376,3351,3353,3376,3364,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3390,3393,3394,3391,3393,3395,3396,3394,3395,3397,3398,3396,3397,3399,3400,3398,3399,3401,3402,3400,3401,3403,3404,3402,3403,3405,3406,3404,3405,3407,3408,3406,3407,3409,3410,3408,3409,3411,3412,3410,3413,3389,3392,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3427,3430,3432,3433,3431,3432,3434,3435,3433,3434,3436,3437,3435,3436,3438,3439,3437,3438,3440,3441,3439,3440,3442,3443,3444,3445,3446,3447,3443,3446,3448,3449,3447,3448,3450,3451,3449,3450,3452,3428,3451,3452,3429,3400,3402,3428,3427,3398,3400,3427,3431,3396,3398,3431,3433,3394,3396,3433,3435,3391,3394,3435,3437,3392,3391,3437,3439,3414,3392,3439,3441,3410,3412,3444,3443,3408,3410,3443,3447,3406,3408,3447,3449,3404,3406,3449,3451,3402,3404,3451,3428,3453,3454,3455,3456,3454,3457,3458,3455,3457,3459,3460,3458,3459,3461,3462,3460,3461,3463,3464,3462,3463,3465,3466,3464,3465,3467,3468,3466,3467,3469,3470,3468,3469,3471,3472,3470,3471,3473,3474,3472,3473,3475,3476,3474,3477,3453,3456,3478,3464,3466,3479,3480,3462,3464,3480,3481,3460,3462,3481,3482,3458,3460,3482,3483,3455,3458,3483,3484,3456,3455,3484,3485,3478,3456,3485,3486,3474,3476,3487,3488,3472,3474,3488,3489,3470,3472,3489,3490,3468,3470,3490,3491,3466,3468,3491,3479,3492,3493,3494,3495,3493,3496,3497,3494,3496,3498,3499,3497,3498,3500,3501,3499,3500,3502,3503,3501,3502,3504,3505,3503,3504,3506,3507,3505,3506,3508,3509,3507,3508,3510,3511,3509,3510,3512,3513,3511,3512,3514,3515,3513,3516,3492,3495,3517,3503,3505,3518,3519,3501,3503,3519,3520,3499,3501,3520,3521,3497,3499,3521,3522,3494,3497,3522,3523,3495,3494,3523,3524,3517,3495,3524,3525,3513,3515,
- 3526,3527,3511,3513,3527,3528,3509,3511,3528,3529,3507,3509,3529,3530,3505,3507,3530,3518,3531,3532,3533,3534,3532,3535,3536,3533,3535,3537,3538,3536,3537,3539,3540,3538,3539,3541,3542,3540,3541,3543,3544,3542,3543,3545,3546,3544,3545,3547,3548,3546,3547,3549,3550,3548,3549,3551,3552,3550,3551,3553,3554,3552,3555,3531,3534,3556,3542,3544,3557,3558,3540,3542,3558,3559,3538,3540,3559,3560,3536,3538,3560,3561,3533,3536,3561,3562,3534,3533,3562,3563,3556,3534,3563,3564,3552,3554,3565,3566,3550,3552,3566,3567,3548,3550,3567,3568,3546,3548,3568,3569,3544,3546,3569,3557,3570,3571,3572,3573,3571,3574,3575,3572,3574,3576,3577,3575,3576,3578,3579,3577,3578,3580,3581,3579,3580,3582,3583,3581,3582,3584,3585,3583,3584,3586,3587,3585,3586,3588,3589,3587,3588,3590,3591,3589,3590,3592,3593,3591,3594,3570,3573,3595,3581,3583,3596,3597,3579,3581,3597,3598,3577,3579,3598,3599,3575,3577,3599,3600,3572,3575,3600,3601,3573,3572,3601,3602,3595,3573,3602,3603,3591,3593,3604,3605,3589,3591,3605,3606,3587,3589,3606,3607,3585,3587,3607,3608,3583,3585,3608,3596,3609,3610,3611,3612,3610,3613,3614,3611,3613,3615,3616,3614,3615,3617,3618,3616,3617,3619,3620,3618,3619,3621,3622,3620,3621,3623,3624,3622,3623,3625,3626,3624,3625,3627,3628,3626,3627,3629,3630,3628,3629,3631,3632,3630,3633,3609,3612,3634,3620,3622,3635,3636,3618,3620,3636,3637,3616,3618,3637,3638,3614,3616,3638,3639,3611,3614,3639,3640,3612,3611,3640,3641,3634,3612,3641,3642,3630,3632,3643,3644,3628,3630,3644,3645,3626,3628,3645,3646,3624,3626,3646,3647,3622,3624,3647,3635,3648,3649,3650,3651,3649,3652,3653,3650,3652,3654,3655,3653,3654,3656,3657,3655,3656,3658,3659,3657,3658,3660,3661,3659,3660,3662,3663,3661,3662,3664,3665,3663,3664,3666,3667,3665,3666,3668,3669,3667,3668,3670,3671,3669,3672,3648,3651,3673,3659,3661,3674,3675,3657,3659,3675,3676,3655,3657,3676,3677,3653,3655,3677,3678,3650,3653,3678,3679,3651,3650,3679,3680,3673,3651,3680,3681,3669,3671,3682,3683,3667,3669,3683,3684,3665,3667,3684,3685,3663,3665,3685,3686,3661,3663,3686,3674,3687,3688,3689,3690,3688,3691,3692,3689,
- 3691,3693,3694,3692,3693,3695,3696,3694,3695,3697,3698,3696,3697,3699,3700,3698,3699,3701,3702,3700,3701,3703,3704,3702,3703,3705,3706,3704,3705,3707,3708,3706,3707,3709,3710,3708,3711,3687,3690,3712,3698,3700,3713,3714,3696,3698,3714,3715,3694,3696,3715,3716,3692,3694,3716,3717,3689,3692,3717,3718,3690,3689,3718,3719,3712,3690,3719,3720,3708,3710,3721,3722,3706,3708,3722,3723,3704,3706,3723,3724,3702,3704,3724,3725,3700,3702,3725,3713,3726,3727,3728,3729,3727,3730,3731,3728,3730,3732,3733,3731,3732,3734,3735,3733,3734,3736,3737,3735,3736,3738,3739,3737,3738,3740,3741,3739,3740,3742,3743,3741,3742,3744,3745,3743,3744,3746,3747,3745,3746,3748,3749,3747,3750,3726,3729,3751,3737,3739,3752,3753,3735,3737,3753,3754,3733,3735,3754,3755,3731,3733,3755,3756,3728,3731,3756,3757,3729,3728,3757,3758,3751,3729,3758,3759,3747,3749,3760,3761,3745,3747,3761,3762,3743,3745,3762,3763,3741,3743,3763,3764,3739,3741,3764,3752,3765,3766,3767,3768,3766,3769,3770,3767,3769,3771,3772,3770,3771,3773,3774,3772,3773,3775,3776,3774,3775,3777,3778,3776,3777,3779,3780,3778,3779,3781,3782,3780,3781,3783,3784,3782,3783,3785,3786,3784,3785,3787,3788,3786,3789,3765,3768,3790,3776,3778,3791,3792,3774,3776,3792,3793,3772,3774,3793,3794,3770,3772,3794,3795,3767,3770,3795,3796,3768,3767,3796,3797,3790,3768,3797,3798,3786,3788,3799,3800,3784,3786,3800,3801,3782,3784,3801,3802,3780,3782,3802,3803,3778,3780,3803,3791,3804,3805,3806,3807,3805,3808,3809,3806,3808,3810,3811,3809,3810,3812,3813,3811,3812,3814,3815,3813,3814,3816,3817,3815,3816,3818,3819,3817,3818,3820,3821,3819,3820,3822,3823,3821,3822,3824,3825,3823,3824,3826,3827,3825,3828,3804,3807,3829,3815,3817,3830,3831,3813,3815,3831,3832,3811,3813,3832,3833,3809,3811,3833,3834,3806,3809,3834,3835,3807,3806,3835,3836,3829,3807,3836,3837,3825,3827,3838,3839,3823,3825,3839,3840,3821,3823,3840,3841,3819,3821,3841,3842,3817,3819,3842,3830,3843,3844,3845,3846,3844,3847,3848,3845,3847,3849,3850,3848,3849,3851,3852,3850,3851,3853,3854,3852,3853,3855,3856,3854,3855,3857,3858,3856,3857,3859,3860,3858,3859,3861,
- 3862,3860,3861,3863,3864,3862,3863,3865,3866,3864,3867,3843,3846,3868,3854,3856,3869,3870,3852,3854,3870,3871,3850,3852,3871,3872,3848,3850,3872,3873,3845,3848,3873,3874,3846,3845,3874,3875,3868,3846,3875,3876,3864,3866,3877,3878,3862,3864,3878,3879,3860,3862,3879,3880,3858,3860,3880,3881,3856,3858,3881,3869,3882,3883,3884,3885,3883,3886,3887,3884,3886,3888,3889,3887,3888,3890,3891,3889,3890,3892,3893,3891,3892,3894,3895,3893,3894,3896,3897,3895,3896,3898,3899,3897,3898,3900,3901,3899,3900,3902,3903,3901,3902,3904,3905,3903,3906,3882,3885,3907,3893,3895,3908,3909,3891,3893,3909,3910,3889,3891,3910,3911,3887,3889,3911,3912,3884,3887,3912,3913,3885,3884,3913,3914,3907,3885,3914,3915,3903,3905,3916,3917,3901,3903,3917,3918,3899,3901,3918,3919,3897,3899,3919,3920,3895,3897,3920,3908,3921,3922,3923,3924,3922,3925,3926,3923,3925,3927,3928,3926,3927,3929,3930,3928,3929,3931,3932,3930,3931,3933,3934,3932,3933,3935,3936,3934,3935,3937,3938,3936,3937,3939,3940,3938,3939,3941,3942,3940,3941,3943,3944,3942,3945,3921,3924,3946,3932,3934,3947,3948,3930,3932,3948,3949,3928,3930,3949,3950,3926,3928,3950,3951,3923,3926,3951,3952,3924,3923,3952,3953,3946,3924,3953,3954,3942,3944,3955,3956,3940,3942,3956,3957,3938,3940,3957,3958,3936,3938,3958,3959,3934,3936,3959,3947,3960,3961,3962,3963,3961,3964,3965,3962,3964,3966,3967,3965,3966,3968,3969,3967,3968,3970,3971,3969,3970,3972,3973,3971,3972,3974,3975,3973,3974,3976,3977,3975,3976,3978,3979,3977,3978,3980,3981,3979,3980,3982,3983,3981,3984,3960,3963,3985,3971,3973,3986,3987,3969,3971,3987,3988,3967,3969,3988,3989,3965,3967,3989,3990,3962,3965,3990,3991,3963,3962,3991,3992,3985,3963,3992,3993,3981,3983,3994,3995,3979,3981,3995,3996,3977,3979,3996,3997,3975,3977,3997,3998,3973,3975,3998,3986,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4012,4011,4021,4022,4023,4024,4025,4026,4024,4023,4014,4013,4026,4025,4015,4022,4021,4016,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,4054,4053,4046,4045,4056,4055,4047,4052,4051,4048,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4058,4057,4067,4068,4069,4070,4071,4072,4070,4069,4060,4059,4072,4071,4061,4068,4067,4062,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4086,4085,4095,4096,4097,4098,4088,4087,4096,4095,4089,4099,4100,4090,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4106,4112,4107,4041,4113,4114,4042,4113,4105,4108,4114,4110,4040,4039,4111,4115,4116,4044,4043,4117,4118,4119,4120,4097,4100,4099,4098,4121,4122,4123,4124,4122,4125,4126,4123,4125,4127,4128,4126,4127,4129,4130,4128,4129,4131,4132,4130,4131,4133,4134,4132,4133,4135,4136,4134,4135,4137,4138,4136,4137,4139,4140,4138,4139,4141,4142,4140,4141,4143,4144,4142,4145,4121,4124,4146,4147,4148,4149,4150,4151,4147,4150,4152,4153,4151,4152,4154,4155,4153,4154,4156,4157,4155,4156,4158,4159,4157,4158,4160,4161,4159,4160,4162,4163,4164,4165,4166,4167,4163,4166,4168,4169,4167,4168,4170,4171,4169,4170,4172,4148,4171,4172,4149,4173,4174,4175,4176,4174,4177,4178,4175,4177,4179,4180,4178,4179,4181,4182,4180,4181,4183,4184,4182,4183,4185,4186,4184,4185,4187,4188,4186,4187,4189,4190,4188,4189,4191,4192,4190,4191,4193,4194,4192,4193,4195,4196,4194,4197,4173,4176,4198,4184,4186,4199,4200,4182,4184,4200,4201,4180,4182,4201,4202,4178,4180,4202,4203,4175,4178,4203,4204,4176,4175,4204,4205,4198,4176,4205,4206,4194,4196,4207,4208,4192,4194,4208,4209,4190,4192,4209,4210,4188,4190,4210,4211,4186,4188,4211,4199,4212,4213,4214,4215,4213,4216,4217,4214,4216,4218,4219,4217,4218,4220,4221,4219,4220,4222,4223,4221,4222,4224,4225,4223,4224,4226,4227,4225,4226,4228,4229,4227,4228,4230,4231,4229,4230,4232,4233,4231,4232,4234,4235,4233,4236,4212,4215,4237,4223,4225,4238,4239,4221,4223,4239,4240,4219,4221,4240,4241,4217,4219,4241,4242,4214,4217,4242,4243,4215,4214,4243,4244,4237,4215,4244,4245,4233,4235,4246,4247,4231,4233,4247,4248,4229,4231,4248,4249,4227,4229,4249,4250,4225,4227,4250,4238,
- 4251,4252,4253,4254,4252,4255,4256,4253,4255,4257,4258,4256,4257,4259,4260,4258,4259,4261,4262,4260,4261,4263,4264,4262,4263,4265,4266,4264,4265,4267,4268,4266,4267,4269,4270,4268,4269,4271,4272,4270,4271,4273,4274,4272,4275,4251,4254,4276,4262,4264,4277,4278,4260,4262,4278,4279,4258,4260,4279,4280,4256,4258,4280,4281,4253,4256,4281,4282,4254,4253,4282,4283,4276,4254,4283,4284,4272,4274,4285,4286,4270,4272,4286,4287,4268,4270,4287,4288,4266,4268,4288,4289,4264,4266,4289,4277,4290,4291,4292,4293,4291,4294,4295,4292,4294,4296,4297,4295,4296,4298,4299,4297,4298,4300,4301,4299,4300,4302,4303,4301,4302,4304,4305,4303,4304,4306,4307,4305,4306,4308,4309,4307,4308,4310,4311,4309,4310,4312,4313,4311,4314,4290,4293,4315,4301,4303,4316,4317,4299,4301,4317,4318,4297,4299,4318,4319,4295,4297,4319,4320,4292,4295,4320,4321,4293,4292,4321,4322,4315,4293,4322,4323,4311,4313,4324,4325,4309,4311,4325,4326,4307,4309,4326,4327,4305,4307,4327,4328,4303,4305,4328,4316,4329,4330,4331,4332,4330,4333,4334,4331,4333,4335,4336,4334,4335,4337,4338,4336,4337,4339,4340,4338,4339,4341,4342,4340,4341,4343,4344,4342,4343,4345,4346,4344,4345,4347,4348,4346,4347,4349,4350,4348,4349,4351,4352,4350,4353,4329,4332,4354,4340,4342,4355,4356,4338,4340,4356,4357,4336,4338,4357,4358,4334,4336,4358,4359,4331,4334,4359,4360,4332,4331,4360,4361,4354,4332,4361,4362,4350,4352,4363,4364,4348,4350,4364,4365,4346,4348,4365,4366,4344,4346,4366,4367,4342,4344,4367,4355,4368,4369,4370,4371,4369,4372,4373,4370,4372,4374,4375,4373,4374,4376,4377,4375,4376,4378,4379,4377,4378,4380,4381,4379,4380,4382,4383,4381,4382,4384,4385,4383,4384,4386,4387,4385,4386,4388,4389,4387,4388,4390,4391,4389,4392,4368,4371,4393,4379,4381,4394,4395,4377,4379,4395,4396,4375,4377,4396,4397,4373,4375,4397,4398,4370,4373,4398,4399,4371,4370,4399,4400,4393,4371,4400,4401,4389,4391,4402,4403,4387,4389,4403,4404,4385,4387,4404,4405,4383,4385,4405,4406,4381,4383,4406,4394,4407,4408,4409,4410,4408,4411,4412,4409,4411,4413,4414,4412,4413,4415,4416,4414,4415,4417,4418,4416,4417,4419,4420,4418,4419,4421,
- 4422,4420,4421,4423,4424,4422,4423,4425,4426,4424,4425,4427,4428,4426,4427,4429,4430,4428,4431,4407,4410,4432,4418,4420,4433,4434,4416,4418,4434,4435,4414,4416,4435,4436,4412,4414,4436,4437,4409,4412,4437,4438,4410,4409,4438,4439,4432,4410,4439,4440,4428,4430,4441,4442,4426,4428,4442,4443,4424,4426,4443,4444,4422,4424,4444,4445,4420,4422,4445,4433,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4132,4134,4148,4147,4130,4132,4147,4151,4128,4130,4151,4153,4126,4128,4153,4155,4123,4126,4155,4157,4124,4123,4157,4159,4146,4124,4159,4161,4142,4144,4164,4163,4140,4142,4163,4167,4138,4140,4167,4169,4136,4138,4169,4171,4134,4136,4171,4148,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4474,4488,4489,4475,4478,4477,4476,4479,4472,4489,4488,4473,4490,4491,4492,4493,4494,4495
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *4617 {
- 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,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,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,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,1,1,1,1,1,0,1,1,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,0,0,0,1,1,1,1,0,1,1,0,1,1,0,0,1,1,1,0,1,1,1,1,0,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,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,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,1,1,1,0,0,1,0,0,1,
- 1,1,1,0,1,0,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,0,1,0,1,0,1,1,1,1,0,1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,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,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,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,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,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,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,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,1,1,0,1,1,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *2253 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509525216, "Geometry::", "Mesh" {
- Vertices: *4230 {
- a: -218.951171875,486.105834960938,-400,-212.21875,480.4482421875,-400,-219.470703125,485.487060546875,-400,-212.7373046875,479.830200195313,-400,-246.75390625,453.015747070313,-400,-240.0185546875,447.35791015625,-400,-260.6904296875,422.753601074219,-400,-267.423828125,428.410278320313,-400,-247.119140625,452.580688476563,-400,-240.3837890625,446.923217773438,-400,-267.98828125,427.740356445313,-400,-261.25390625,422.083190917969,-400,-293.89453125,396.905029296875,-400,-287.16015625,391.248168945313,-400,-294.5068359375,396.174743652344,-400,-287.7734375,390.517944335938,-400,-317.5361328125,368.763793945313,-400,-310.802734375,363.106262207031,-400,-317.9541015625,368.265808105469,-400,-311.220703125,362.608215332031,-400,-350.08203125,330.024658203125,-400,-343.349609375,324.367004394531,-400,-350.603515625,329.405517578125,-400,-343.869140625,323.748718261719,-400,-377.884765625,296.933349609375,-400,-371.150390625,291.276550292969,-400,-391.822265625,266.671630859375,-400,-398.556640625,272.328552246094,-400,-378.25,296.498718261719,-400,-371.5166015625,290.841674804688,-400,-399.119140625,271.65869140625,-400,-392.3857421875,266.001159667969,-400,-425.025390625,240.823669433594,-400,-418.291015625,235.166259765625,-400,-425.638671875,240.093139648438,-400,-418.9052734375,234.436157226563,-400,-448.6689453125,212.681640625,-400,-441.9345703125,207.025085449219,-400,-449.0166015625,212.267639160156,-400,-442.2841796875,206.609802246094,-400,-481.14453125,174.026245117188,-400,-474.412109375,168.368591308594,-400,-481.666015625,173.407165527344,-400,-474.931640625,167.750244140625,-400,-508.947265625,140.934997558594,-400,-502.212890625,135.2783203125,-400,-522.884765625,110.67333984375,-400,-529.6181640625,116.330688476563,-400,-509.3115234375,140.500793457031,-400,-502.5791015625,134.843322753906,-400,-530.181640625,115.66015625,-400,-523.447265625,110.003112792969,-400,-556.0869140625,84.825439453125,-400,-549.3544921875,79.168701171875,-400,-556.701171875,84.094970703125,-400,-549.9677734375,78.4379272460938,-400,
- -579.7314453125,56.6832885742188,-400,-572.998046875,51.0267333984375,-400,-580.2255859375,56.094970703125,-400,-573.4921875,50.438232421875,-400,-621.5908203125,6.8597412109375,-400,-614.857421875,1.202392578125,-400,-561.2919921875,70.375732421875,-456.44970703125,-561.2919921875,70.375732421875,-476.8828125,-216.693359375,475.233520507813,-400,-196.646484375,499.095458984375,-400,-399.1416015625,257.907348632813,-400,-379.09375,281.768798828125,-400,-573.8505859375,55.0053100585938,-400,-551.5361328125,36.2920532226563,-400,-553.802734375,78.867431640625,-400,-548.5341796875,41.4224853515625,-456.44970703125,-548.5341796875,41.4224853515625,-476.8828125,-374.794921875,237.453674316406,-400.01953125,-354.748046875,261.3154296875,-400.01953125,-532.662109375,61.1392211914063,-400,-630.828125,-4.13836669921875,-400,-636.3291015625,0.4815673828125,-400,-258.7099609375,438.928100585938,-400,-264.2119140625,443.548461914063,-400,-347.96875,332.6494140625,-400,-353.470703125,337.269714355469,-400,-437.228515625,226.370788574219,-400,-442.73046875,230.991149902344,-400,-526.4892578125,120.091918945313,-400,-531.990234375,124.712463378906,-400,-585.4560546875,36.593994140625,-400,-585.3623046875,-0.065673828125,-400,-548.408203125,36.593994140625,-400,-548.408203125,0.02490234375,-400,-626.3701171875,-42.3463745117188,-400,-636.88671875,-35.7080078125,-400,-595.810546875,1.4066162109375,-400,-595.810546875,-42.3463745117188,-400,-647.2421875,1.4066162109375,-400,-647.2421875,-16.4122314453125,-400,-636.88671875,-22.7757568359375,-400,-88.51171875,641.361206054688,0,-81.779296875,635.704345703125,0,-115.7939453125,608.8896484375,0,-109.060546875,603.232299804688,0,-129.732421875,578.627685546875,0,-136.46484375,584.284912109375,0,-116.16015625,608.454467773438,0,-109.427734375,602.797241210938,0,-137.029296875,583.614501953125,0,-130.294921875,577.95703125,0,-162.935546875,552.77978515625,0,-156.201171875,547.12255859375,0,-163.5498046875,552.048706054688,0,-156.8154296875,546.391723632813,0,-186.580078125,524.638061523438,0,
- -179.84375,518.980346679688,0,-186.822265625,524.34716796875,0,-180.0888671875,518.689697265625,0,-218.951171875,486.105834960938,0,-212.21875,480.4482421875,0,-219.470703125,485.487060546875,0,-212.7373046875,479.830200195313,0,-246.7529296875,453.015869140625,0,-240.0185546875,447.35791015625,0,-260.6904296875,422.753723144531,0,-267.423828125,428.410034179688,0,-247.119140625,452.580688476563,0,-240.3837890625,446.923217773438,0,-267.98828125,427.740356445313,0,-261.25390625,422.083190917969,0,-293.89453125,396.905029296875,0,-287.16015625,391.248107910156,0,-294.5068359375,396.174743652344,0,-287.7734375,390.517944335938,0,-317.5361328125,368.763793945313,0,-310.802734375,363.106262207031,0,-317.9541015625,368.265808105469,0,-311.220703125,362.608215332031,0,-350.08203125,330.024658203125,0,-343.349609375,324.367004394531,0,-350.603515625,329.405517578125,0,-343.869140625,323.748718261719,0,-377.884765625,296.933349609375,0,-371.150390625,291.276550292969,0,-391.822265625,266.671630859375,0,-398.556640625,272.328552246094,0,-378.25,296.498718261719,0,-371.5166015625,290.841674804688,0,-399.119140625,271.65869140625,0,-392.3857421875,266.001159667969,0,-425.025390625,240.823669433594,0,-418.291015625,235.166259765625,0,-425.638671875,240.093139648438,0,-418.9052734375,234.436157226563,0,-448.6689453125,212.681640625,0,-441.9345703125,207.025085449219,0,-449.0166015625,212.267639160156,0,-442.2841796875,206.609802246094,0,-481.14453125,174.026245117188,0,-474.412109375,168.368591308594,0,-481.666015625,173.407165527344,0,-474.931640625,167.750244140625,0,-508.947265625,140.934997558594,0,-502.212890625,135.2783203125,0,-522.884765625,110.67333984375,0,-529.6181640625,116.330688476563,0,-509.3115234375,140.500793457031,0,-502.5791015625,134.843322753906,0,-530.181640625,115.66015625,0,-523.447265625,110.003112792969,0,-556.0869140625,84.825439453125,0,-549.3544921875,79.168701171875,0,-556.701171875,84.094970703125,0,-549.9677734375,78.4379272460938,0,-579.7314453125,56.6832885742188,0,-572.998046875,51.0267333984375,0,
- -580.2255859375,56.0948486328125,0,-573.4921875,50.438232421875,0,-621.5908203125,6.8597412109375,0,-614.857421875,1.202392578125,0,-32.087890625,708.436279296875,0,-25.35546875,702.778930664063,0,-32.7041015625,707.705322265625,0,-25.9677734375,702.048095703125,0,-55.7333984375,680.29443359375,0,-49,674.637084960938,0,-55.9765625,680.004028320313,0,-49.2431640625,674.346069335938,0,-88.1044921875,641.7626953125,0,-81.37109375,636.10498046875,0,-561.2919921875,70.375732421875,-56.44921875,-561.2919921875,70.375732421875,-76.8828125,-561.2919921875,70.375732421875,-323.1171875,-561.2919921875,70.375732421875,-343.5498046875,-216.693359375,475.233520507813,0,-196.646484375,499.095458984375,0,-399.1416015625,257.907348632813,0,-379.09375,281.768798828125,0,-573.8505859375,55.0053100585938,0,-551.5361328125,36.2920532226563,0.0009765625,-553.802734375,78.867431640625,0,-574.255859375,52.2416381835938,-187.0458984375,-574.255859375,52.2416381835938,-212.9541015625,-548.5341796875,41.4224853515625,-56.44921875,-548.5341796875,41.4224853515625,-76.8828125,-549.4921875,42.2013549804688,-323.1171875,-549.4921875,42.2013549804688,-343.5498046875,-193.794921875,455.993530273438,0,-173.7451171875,479.855346679688,0,-374.794921875,237.453674316406,-0.0166015625,-354.748046875,261.3154296875,-0.0166015625,-532.662109375,61.1392211914063,0.0009765625,-548.96875,12.2135009765625,-187.0458984375,-548.96875,12.2135009765625,-212.9541015625,-156.353515625,479.541015625,-214.7158203125,-182.62109375,518.40185546875,-214.7158203125,-182.62109375,518.40185546875,-189.287109375,-156.353515625,479.541015625,-189.287109375,-185.5693359375,473.430053710938,-56.44921875,-199.26171875,501.272338867188,-56.44921875,-199.26171875,501.272338867188,-76.8828125,-185.5693359375,473.430053710938,-76.8828125,-630.8271484375,-4.13885498046875,0,-636.328125,0.48150634765625,0,-80.189453125,651.485717773438,0,-85.69140625,656.106323242188,0,-169.44921875,545.206787109375,0,-174.951171875,549.8271484375,0,-258.7099609375,438.928100585938,0,-264.2119140625,443.548461914063,0,
- -347.96875,332.6494140625,0,-353.470703125,337.269714355469,0,-437.228515625,226.370788574219,0,-442.73046875,230.991149902344,0,-526.4892578125,120.091918945313,0,-531.990234375,124.712463378906,0,0,733.25146484375,0,0,746.99365234375,0,0,699.810180664063,-56.66796875,0,664.7607421875,-187.3662109375,0,733.25146484375,-187.056640625,0,733.25146484375,-56.455078125,0,733.25146484375,-76.888671875,0,699.810180664063,-77.1015625,0,746.99365234375,0,0,758.1650390625,0,-585.4560546875,36.593994140625,0,-585.3623046875,-0.065673828125,0,-548.408203125,36.593994140625,0,-548.408203125,0.02490234375,0,-626.3701171875,-42.3463745117188,0,-636.88671875,-35.7080078125,0,-595.810546875,1.4066162109375,0,-595.810546875,-42.3463745117188,0,-647.2412109375,1.4066162109375,0,-647.2412109375,-16.4122314453125,0,-636.88671875,-22.7757568359375,0,-200.015625,494.97265625,-400,-218.951171875,486.105834960938,-418.935546875,-212.21875,480.4482421875,-412.20361328125,-219.470703125,485.487060546875,-419.45458984375,-212.7373046875,479.830200195313,-412.72216796875,-246.75390625,453.015747070313,-446.73876953125,-240.0185546875,447.35791015625,-440.00390625,-260.6904296875,422.753601074219,-460.67529296875,-267.423828125,428.410278320313,-467.4091796875,-240.3837890625,446.923217773438,-440.369140625,-247.119140625,452.580688476563,-447.1044921875,-267.98828125,427.740356445313,-467.97265625,-261.25390625,422.083190917969,-461.23876953125,-293.89453125,396.905029296875,-493.87939453125,-287.16015625,391.248168945313,-487.14501953125,-294.5068359375,396.174682617188,-494.49169921875,-287.7734375,390.517944335938,-487.75830078125,-317.5361328125,368.763793945313,-517.5205078125,-310.802734375,363.106262207031,-510.78759765625,-317.9541015625,368.265808105469,-517.9384765625,-311.220703125,362.608154296875,-511.2060546875,-350.08203125,330.024658203125,-550.06640625,-343.349609375,324.367004394531,-543.33447265625,-350.603515625,329.405517578125,-550.5888671875,-343.869140625,323.748657226563,-543.8544921875,-377.884765625,296.933349609375,-577.869140625,
- -371.150390625,291.276611328125,-571.1357421875,-391.822265625,266.671630859375,-591.8076171875,-398.556640625,272.328552246094,-598.54150390625,-371.5166015625,290.841674804688,-571.50146484375,-378.25,296.498657226563,-578.234375,-399.119140625,271.65869140625,-599.103515625,-392.3857421875,266.001098632813,-592.37109375,-425.025390625,240.823669433594,-625.009765625,-418.291015625,235.166259765625,-618.2763671875,-425.638671875,240.093139648438,-625.6240234375,-418.9052734375,234.436157226563,-618.8896484375,-448.6689453125,212.681640625,-648.65380859375,-441.9345703125,207.025085449219,-641.91943359375,-449.0166015625,212.267639160156,-649.0009765625,-442.2841796875,206.609802246094,-642.26953125,-481.14453125,174.026245117188,-681.1298828125,-474.412109375,168.368591308594,-674.3974609375,-481.666015625,173.407165527344,-681.65087890625,-474.931640625,167.750244140625,-674.91650390625,-508.947265625,140.934997558594,-708.931640625,-502.212890625,135.2783203125,-702.1982421875,-522.884765625,110.67333984375,-722.8701171875,-529.6181640625,116.330688476563,-729.603515625,-502.5791015625,134.843322753906,-702.56396484375,-509.3115234375,140.500793457031,-709.29638671875,-530.181640625,115.66015625,-730.16650390625,-523.447265625,110.003112792969,-723.4326171875,-556.0869140625,84.825439453125,-756.07177734375,-549.3544921875,79.168701171875,-749.33984375,-556.701171875,84.094970703125,-756.68603515625,-549.9677734375,78.4379272460938,-749.95263671875,-579.7314453125,56.6832885742188,-779.71630859375,-572.998046875,51.0267333984375,-772.9833984375,-580.2255859375,56.0950927734375,-780.2099609375,-573.4921875,50.438232421875,-773.47705078125,-621.5908203125,6.8597412109375,-821.5751953125,-614.857421875,1.202392578125,-814.84326171875,-200.015625,461.220336914063,-400,-200.015625,495.085205078125,-400,-216.693359375,475.233520507813,-416.67822265625,-374.794921875,237.45361328125,-574.77978515625,-399.1416015625,257.907348632813,-599.126953125,-379.09375,281.768798828125,-579.07861328125,-354.748046875,261.3154296875,-554.7333984375,
- -551.5361328125,36.2920532226563,-751.5205078125,-573.8505859375,55.00537109375,-773.83544921875,-553.802734375,78.867431640625,-753.7880859375,-532.662109375,61.1392211914063,-732.6474609375,-256.46484375,389.048645019531,-456.44970703125,-256.4658203125,433.187133789063,-456.44970703125,-276.8984375,408.867492675781,-476.8828125,-276.8984375,364.728759765625,-476.8828125,-630.830078125,-4.137939453125,-830.81494140625,-636.330078125,0.481689453125,-836.314453125,-200.0146484375,508.8134765625,-400,-200.015625,519.984252929688,-400,-264.2119140625,443.548461914063,-464.197265625,-353.470703125,337.269653320313,-553.455078125,-442.73046875,230.991149902344,-642.71484375,-531.990234375,124.712463378906,-731.974609375,-258.7099609375,438.928100585938,-458.6953125,-347.96875,332.6494140625,-547.9541015625,-437.228515625,226.370788574219,-637.2138671875,-526.4892578125,120.091918945313,-726.474609375,-585.4560546875,36.593994140625,-785.44140625,-585.3623046875,-0.065673828125,-785.34716796875,-548.408203125,36.593994140625,-748.39306640625,-548.408203125,0.02490234375,-748.39306640625,-626.3701171875,-42.3463745117188,-826.35546875,-636.88671875,-35.7080078125,-836.87109375,-595.810546875,1.4066162109375,-795.79541015625,-595.810546875,-42.3463745117188,-795.7958984375,-647.2421875,1.4066162109375,-847.22705078125,-647.2421875,-16.4122314453125,-847.2275390625,-636.88671875,-22.7757568359375,-836.87158203125,-88.51171875,641.361206054688,-288.4970703125,-81.779296875,635.704345703125,-281.763671875,-115.7939453125,608.8896484375,-315.7783203125,-109.060546875,603.232299804688,-309.044921875,-129.732421875,578.627685546875,-329.7177734375,-136.46484375,584.284912109375,-336.44921875,-109.427734375,602.797241210938,-309.412109375,-116.16015625,608.454467773438,-316.1455078125,-137.029296875,583.614501953125,-337.013671875,-130.294921875,577.95703125,-330.279296875,-162.935546875,552.77978515625,-362.9208984375,-156.201171875,547.12255859375,-356.185546875,-163.5498046875,552.048706054688,-363.5341796875,-156.8154296875,546.391723632813,-356.7998046875,
- -186.580078125,524.638061523438,-386.564453125,-179.84375,518.980346679688,-379.828125,-186.822265625,524.34716796875,-386.806640625,-180.0888671875,518.689697265625,-380.0732421875,-32.09521484375,708.436279296875,-232.080078125,-25.36279296875,702.779052734375,-225.34765625,-32.7041015625,707.705322265625,-232.689453125,-25.9677734375,702.048095703125,-225.9521484375,-55.7333984375,680.29443359375,-255.71875,-49,674.637084960938,-248.984375,-55.9765625,680.004028320313,-255.9619140625,-49.2431640625,674.346069335938,-249.228515625,-88.1044921875,641.7626953125,-288.08984375,-81.37109375,636.10498046875,-281.35546875,-13.3505859375,648.945556640625,-213.3349609375,-13.1044921875,717.83447265625,-213.0888671875,-193.794921875,455.993530273438,-393.7802734375,-196.646484375,499.095458984375,-396.630859375,-173.7451171875,479.855346679688,-373.73046875,-123.1103515625,587.860717773438,-323.09375,-143.541015625,563.731811523438,-343.525390625,-143.2216796875,528.40869140625,-343.20703125,-85.69140625,656.106323242188,-285.67578125,-80.189453125,651.485717773438,-280.173828125,-174.951171875,549.8271484375,-374.935546875,-169.44921875,545.206787109375,-369.43359375,-122.818359375,552.826538085938,-322.802734375,0,746.99365234375,-199.984375,-0.0013427734375,733.25146484375,-199.9892578125,0,664.7607421875,-199.9853515625,0,758.1650390625,-199.984375,-28.4697265625,708.068603515625,0,28.4697265625,708.068603515625,0,-28.4697265625,641.702880859375,0,28.4697265625,641.702880859375,0,-28.4697265625,708.068603515625,-227.1328125,28.4697265625,708.068603515625,-227.1328125,-28.4697265625,641.702880859375,-280.6220703125,28.4697265625,641.702880859375,-280.6220703125,0,641.361206054688,-288.51171875,0,635.704345703125,-281.779296875,0,608.8896484375,-315.7939453125,0,603.232299804688,-309.060546875,0,578.627685546875,-329.732421875,0,584.284912109375,-336.46484375,0,608.454467773438,-316.16015625,0,602.797241210938,-309.427734375,0,583.614501953125,-337.029296875,0,577.95703125,-330.294921875,0,552.77978515625,-362.935546875,
- 0,547.12255859375,-356.201171875,0,552.048706054688,-363.5498046875,0,546.391723632813,-356.8154296875,0,524.638061523438,-386.580078125,0,518.980346679688,-379.84375,0,524.34716796875,-386.822265625,0,518.689697265625,-380.0888671875,0,486.105834960938,-418.951171875,0,480.4482421875,-412.21875,0,485.487060546875,-419.470703125,0,479.830200195313,-412.7373046875,0,453.015625,-446.75390625,0,447.35791015625,-440.0185546875,0,422.753540039063,-460.6904296875,0,428.410400390625,-467.423828125,0,452.580688476563,-447.119140625,0,446.923217773438,-440.3837890625,0,427.740356445313,-467.98828125,0,422.083190917969,-461.25390625,0,396.905029296875,-493.89453125,0,391.248168945313,-487.16015625,0,396.174743652344,-494.5068359375,0,390.517944335938,-487.7734375,0,368.763793945313,-517.5361328125,0,363.106262207031,-510.802734375,0,368.265808105469,-517.9541015625,0,362.608215332031,-511.220703125,0,330.024658203125,-550.08203125,0,324.367004394531,-543.349609375,0,329.405517578125,-550.603515625,0,323.748718261719,-543.869140625,0,296.933349609375,-577.884765625,0,291.276550292969,-571.150390625,0,266.671630859375,-591.822265625,0,272.328552246094,-598.556640625,0,296.498718261719,-578.25,0,290.841674804688,-571.5166015625,0,271.65869140625,-599.119140625,0,266.001159667969,-592.3857421875,0,240.823669433594,-625.025390625,0,235.166259765625,-618.291015625,0,240.093139648438,-625.638671875,0,234.436157226563,-618.9052734375,0,212.681640625,-648.6689453125,0,207.025085449219,-641.9345703125,0,212.267639160156,-649.0166015625,0,206.609802246094,-642.2841796875,0,174.026245117188,-681.14453125,0,168.368591308594,-674.412109375,0,173.407165527344,-681.666015625,0,167.750244140625,-674.931640625,0,140.934997558594,-708.947265625,0,135.2783203125,-702.212890625,0,110.67333984375,-722.884765625,0,116.330688476563,-729.6181640625,0,140.500793457031,-709.3115234375,0,134.843322753906,-702.5791015625,0,115.66015625,-730.181640625,0,110.003112792969,-723.447265625,0,84.825439453125,-756.0869140625,0,79.168701171875,-749.3544921875,0,84.094970703125,-756.701171875,
- 0,78.4379272460938,-749.9677734375,0,56.6832885742188,-779.7314453125,0,51.0267333984375,-772.998046875,0,56.0950317382813,-780.2255859375,0,50.438232421875,-773.4921875,0,6.8597412109375,-821.5908203125,0,1.202392578125,-814.857421875,0,707.705322265625,-232.7041015625,0,702.048095703125,-225.9677734375,0,680.29443359375,-255.7333984375,0,674.637084960938,-249,0,680.004028320313,-255.9765625,0,674.346069335938,-249.2431640625,0,641.7626953125,-288.1044921875,0,636.10498046875,-281.37109375,0,475.233520507813,-416.693359375,0,499.095458984375,-396.646484375,0,257.907348632813,-599.1416015625,0,281.768798828125,-579.09375,0,55.0053100585938,-773.8505859375,0,36.2920532226563,-751.5361328125,0,78.867431640625,-753.802734375,0,455.993530273438,-393.794921875,0,479.855346679688,-373.744140625,0.01953125,237.453674316406,-574.794921875,0.01953125,261.3154296875,-554.748046875,0,61.1392211914063,-732.662109375,0,-4.13922119140625,-830.82958984375,0,0.48046875,-836.330078125,0,651.485717773438,-280.189453125,0,656.106323242188,-285.69140625,0,545.206787109375,-369.44921875,0,549.8271484375,-374.951171875,0,438.928100585938,-458.7099609375,0,443.548461914063,-464.2119140625,0,332.6494140625,-547.96875,0,337.269714355469,-553.470703125,0,226.370788574219,-637.228515625,0,230.991149902344,-642.73046875,0,120.091918945313,-726.4892578125,0,124.712463378906,-731.990234375,-0.001708984375,746.99365234375,-200,-0.0020751953125,758.164916992188,-200,0,36.593994140625,-785.4560546875,0,-0.065673828125,-785.3623046875,0,36.593994140625,-748.408203125,0,0.02490234375,-748.408203125,0,-42.3463745117188,-826.3701171875,0,-35.7080078125,-836.88671875,0,1.4066162109375,-795.810546875,0,-42.3463745117188,-795.810546875,0,1.4066162109375,-847.2421875,0,-16.4122314453125,-847.2421875,0,-22.7757568359375,-836.88671875,-343.55078125,70.375732421875,-761.2919921875,-323.1171875,70.375732421875,-761.2919921875,-76.8828125,70.375732421875,-761.2919921875,-56.4501953125,70.375732421875,-761.2919921875,-212.9541015625,52.2416381835938,-774.255859375,
- -187.0458984375,52.2416381835938,-774.255859375,-343.55078125,41.4224853515625,-748.5341796875,-323.1171875,41.4224853515625,-748.5341796875,-76.8828125,42.2013549804688,-749.4921875,-56.4501953125,42.2013549804688,-749.4921875,-212.9541015625,12.2135009765625,-748.96875,-187.0458984375,12.2135009765625,-748.96875,-88.5263671875,641.361206054688,-288.51171875,-81.794921875,635.704345703125,-281.779296875,-115.80859375,608.8896484375,-315.7939453125,-109.0751953125,603.232177734375,-309.060546875,-129.7470703125,578.627685546875,-329.732421875,-136.4794921875,584.284912109375,-336.46484375,-109.4423828125,602.797241210938,-309.427734375,-116.17578125,608.454467773438,-316.16015625,-137.0439453125,583.614501953125,-337.029296875,-130.3095703125,577.95703125,-330.294921875,-162.951171875,552.77978515625,-362.935546875,-156.2158203125,547.12255859375,-356.201171875,-163.564453125,552.048706054688,-363.5498046875,-156.8310546875,546.391723632813,-356.8154296875,-186.595703125,524.638061523438,-386.580078125,-179.8583984375,518.980346679688,-379.84375,-186.8369140625,524.34716796875,-386.822265625,-180.103515625,518.689697265625,-380.0888671875,-218.9658203125,486.105834960938,-418.951171875,-212.2333984375,480.4482421875,-412.21875,-219.4853515625,485.487060546875,-419.470703125,-212.751953125,479.830200195313,-412.7373046875,-246.7685546875,453.015747070313,-446.75390625,-240.0341796875,447.35791015625,-440.0185546875,-260.7060546875,422.753662109375,-460.6904296875,-267.439453125,428.41015625,-467.423828125,-240.3994140625,446.92333984375,-440.3837890625,-247.134765625,452.580688476563,-447.119140625,-268.0029296875,427.740356445313,-467.98828125,-261.26953125,422.083129882813,-461.25390625,-293.91015625,396.905029296875,-493.89453125,-287.1748046875,391.248168945313,-487.16015625,-294.521484375,396.174682617188,-494.5078125,-287.7880859375,390.517944335938,-487.7734375,-317.55078125,368.763793945313,-517.5361328125,-310.8173828125,363.106262207031,-510.802734375,-317.9697265625,368.265808105469,-517.9541015625,-311.236328125,362.608215332031,-511.220703125,
- -350.09765625,330.024658203125,-550.08203125,-343.3642578125,324.367004394531,-543.349609375,-350.6181640625,329.405517578125,-550.603515625,-343.884765625,323.748718261719,-543.869140625,-377.8994140625,296.933349609375,-577.884765625,-371.1650390625,291.276550292969,-571.150390625,-391.8369140625,266.671630859375,-591.822265625,-398.5712890625,272.328491210938,-598.556640625,-371.53125,290.841674804688,-571.5166015625,-378.2646484375,296.498657226563,-578.25,-399.1337890625,271.65869140625,-599.119140625,-392.400390625,266.001159667969,-592.3857421875,-425.0400390625,240.82373046875,-625.025390625,-418.306640625,235.166259765625,-618.291015625,-425.6533203125,240.093139648438,-625.638671875,-418.919921875,234.436157226563,-618.9052734375,-448.68359375,212.681640625,-648.6689453125,-441.94921875,207.025085449219,-641.9345703125,-449.03125,212.267578125,-649.0166015625,-442.2998046875,206.60986328125,-642.2841796875,-481.16015625,174.026245117188,-681.14453125,-474.427734375,168.368530273438,-674.412109375,-481.681640625,173.407165527344,-681.666015625,-474.9462890625,167.750244140625,-674.931640625,-508.9619140625,140.934997558594,-708.947265625,-502.228515625,135.2783203125,-702.212890625,-522.900390625,110.67333984375,-722.884765625,-529.6337890625,116.330688476563,-729.6181640625,-502.59375,134.843322753906,-702.5791015625,-509.3271484375,140.500793457031,-709.3115234375,-530.197265625,115.66015625,-730.181640625,-523.4619140625,110.003112792969,-723.447265625,-556.1025390625,84.825439453125,-756.0869140625,-549.369140625,79.168701171875,-749.3544921875,-556.7158203125,84.094970703125,-756.701171875,-549.982421875,78.4379272460938,-749.9677734375,-579.7470703125,56.6832885742188,-779.732421875,-573.013671875,51.0267333984375,-772.998046875,-580.240234375,56.0948486328125,-780.2255859375,-573.5068359375,50.438232421875,-773.4921875,-621.60546875,6.8597412109375,-821.5908203125,-614.8720703125,1.202392578125,-814.857421875,-32.71875,707.705322265625,-232.7041015625,-25.982421875,702.048095703125,-225.9677734375,
- -55.748046875,680.29443359375,-255.7333984375,-49.0146484375,674.637084960938,-249,-55.9921875,680.004028320313,-255.9765625,-49.2587890625,674.346069335938,-249.2431640625,-88.1201171875,641.7626953125,-288.1044921875,-81.38671875,636.10498046875,-281.37109375,-211.025390625,414.48388671875,-411.009765625,-210.875,484.790283203125,-410.859375,-185.2958984375,515.235961914063,-385.28125,-185.4140625,444.9677734375,-385.3994140625,-193.810546875,455.993530273438,-393.794921875,-216.7080078125,475.233642578125,-416.693359375,-196.6611328125,499.095458984375,-396.646484375,-173.7607421875,479.855346679688,-373.7451171875,-374.810546875,237.453674316406,-574.794921875,-399.1572265625,257.907348632813,-599.1416015625,-379.1083984375,281.768798828125,-579.09375,-354.7626953125,261.3154296875,-554.748046875,-551.55078125,36.2920532226563,-751.5361328125,-573.865234375,55.0053100585938,-773.8505859375,-553.818359375,78.867431640625,-753.802734375,-532.677734375,61.1392211914063,-732.662109375,-343.55078125,285.415405273438,-543.53515625,-343.55078125,329.553527832031,-543.5361328125,-323.1171875,353.874877929688,-523.1015625,-323.1171875,309.736328125,-523.1015625,-76.908203125,642.44189453125,-276.8935546875,-56.4794921875,666.567626953125,-256.46484375,-56.8662109375,631.7734375,-256.8515625,-630.841796875,-4.1387939453125,-830.8271484375,-636.3427734375,0.48150634765625,-836.328125,-85.7060546875,656.106323242188,-285.69140625,-80.205078125,651.485717773438,-280.189453125,-174.9658203125,549.8271484375,-374.951171875,-264.2275390625,443.548461914063,-464.2119140625,-353.4853515625,337.269714355469,-553.470703125,-442.7451171875,230.991149902344,-642.73046875,-532.0048828125,124.712524414063,-731.990234375,-169.46484375,545.206787109375,-369.44921875,-258.724609375,438.92822265625,-458.7099609375,-347.9833984375,332.6494140625,-547.96875,-437.2431640625,226.370849609375,-637.228515625,-526.5048828125,120.091918945313,-726.4892578125,-77.23046875,607.402954101563,-277.21484375,-585.4716796875,36.593994140625,-785.4560546875,
- -585.376953125,-0.065673828125,-785.3623046875,-548.423828125,36.593994140625,-748.408203125,-548.423828125,0.02490234375,-748.408203125,-626.3857421875,-42.3463745117188,-826.3701171875,-636.9013671875,-35.7080688476563,-836.88671875,-595.826171875,1.4066162109375,-795.810546875,-595.826171875,-42.3463745117188,-795.810546875,-647.255859375,1.4066162109375,-847.2421875,-647.2568359375,-16.4122314453125,-847.2412109375,-636.9013671875,-22.7757568359375,-836.88671875,0,-42.3463745117188,-826.3701171875,0,-35.7080078125,-836.88720703125,0,1.4066162109375,-846.05224609375,0,1.4066162109375,-795.81005859375,0,-42.3463745117188,-795.81005859375,0,0.33148193359375,-847.24169921875,0,-16.4122314453125,-847.24169921875,0,-22.7757568359375,-836.88720703125,-32.09521484375,708.436279296875,-232.080078125,-25.36279296875,702.779052734375,-225.34765625,0,708.436279296875,-232.087890625,0,702.778930664063,-225.35546875,-0.001708984375,746.99365234375,-200,-0.000732421875,733.25146484375,-199.994140625,-153.81689453125,452.9189453125,-385.212890625,-169.45556640625,507.624145507813,-400.8515625,-194.5185546875,507.624145507813,-375.7890625,-178.8798828125,452.9189453125,-360.150390625,-253.42578125,320.500122070313,-492.77734375,-268.796875,369.210998535156,-508.14794921875,-295.80712890625,369.210998535156,-481.1376953125,-280.4365234375,320.500122070313,-465.7666015625,-438.362060546875,119.880065917969,-659.466796875,-453.279052734375,168.253173828125,-674.3837890625,-478.814697265625,168.253173828125,-648.8486328125,-463.897705078125,119.880065917969,-633.931640625,-543.28564453125,4.29608154296875,-770.48046875,-557.94921875,37.5536499023438,-785.14404296875,-583.484375,37.5536499023438,-759.60888671875,-568.82080078125,4.29608154296875,-744.9453125,0.0087890625,622.237060546875,-222.8779296875,0.0087890625,704.548217773438,-223.6455078125,0.0087890625,733.265014648438,-171.419921875,0.0087890625,650.26025390625,-170.55078125,-561.291748046875,70.375732421875,-584.04248046875,-561.291748046875,70.375732421875,-604.4755859375,
- -552.24853515625,44.5200805664063,-584.04248046875,-552.24853515625,44.5200805664063,-604.4755859375,-403.984375,221.414184570313,-585.20458984375,-404.93896484375,256.787963867188,-584.9072265625,-427.68310546875,230.011779785156,-606.13916015625,-426.725830078125,194.640258789063,-606.4345703125,-427.5546875,249.978271484375,-616.751953125,-431.564453125,256.735595703125,-620.76025390625,-428.166015625,260.114501953125,-628.16650390625,-420.7607421875,256.736083984375,-631.5625,-416.751953125,249.978759765625,-627.5537109375,-420.1494140625,246.600341796875,-620.1474609375,-442.6279296875,232.206298828125,-629.9384765625,-447.337890625,240.143798828125,-634.64697265625,-443.34765625,244.113037109375,-643.34521484375,-434.6474609375,240.144287109375,-647.3369140625,-429.9375,232.206787109375,-642.62841796875,-433.9287109375,228.238037109375,-633.927734375,-443.1474609375,247.4150390625,-643.146484375,-448.04296875,242.547119140625,-632.47412109375,-442.265625,232.810791015625,-626.69921875,-431.5947265625,227.942626953125,-631.59375,-426.7001953125,232.810791015625,-642.2646484375,-432.4765625,242.547119140625,-648.041015625,-429.7119140625,260.419189453125,-629.7099609375,-433.7392578125,256.413330078125,-620.9296875,-428.986328125,248.40185546875,-616.17529296875,-420.205078125,244.396240234375,-620.2041015625,-416.177734375,248.40185546875,-628.984375,-420.931640625,256.413330078125,-633.73681640625,-459.892578125,211.679443359375,-647.9013671875,-464.3427734375,219.178955078125,-652.3505859375,-460.572265625,222.928466796875,-660.5703125,-452.3515625,219.178466796875,-664.34326171875,-447.90234375,211.678955078125,-659.892578125,-451.6728515625,207.9296875,-651.671875,-460.630859375,226.668701171875,-660.63134765625,-465.52734375,221.800537109375,-649.95849609375,-459.75,212.064697265625,-644.18408203125,-449.0791015625,207.196533203125,-649.078125,-444.1845703125,212.064697265625,-659.7490234375,-449.9609375,221.800537109375,-665.525390625,-470.3662109375,198.602294921875,-657.6767578125,-475.0751953125,206.539794921875,-662.3857421875,
- -471.0859375,210.509033203125,-671.08349609375,-462.384765625,206.540283203125,-675.07568359375,-457.67578125,198.602783203125,-670.36669921875,-461.6669921875,194.634033203125,-661.666015625,-471.46875,214.114501953125,-671.46630859375,-476.65625,208.954833984375,-660.15625,-470.5341796875,198.634521484375,-654.033203125,-459.22265625,193.474365234375,-659.2216796875,-454.03515625,198.634521484375,-670.5322265625,-460.1572265625,208.954833984375,-676.6552734375,-483.2138671875,182.281494140625,-671.2216796875,-487.6630859375,189.78125,-675.6708984375,-483.892578125,193.530517578125,-683.89013671875,-475.671875,189.78125,-687.662109375,-471.22265625,182.281494140625,-683.212890625,-474.994140625,178.531494140625,-674.9921875,-483.4794921875,197.831787109375,-683.478515625,-488.375,192.96337890625,-672.80615234375,-482.59765625,183.227294921875,-667.03173828125,-472.046875,178.56201171875,-672.0458984375,-467.0322265625,183.2275390625,-682.5966796875,-472.80859375,192.963623046875,-688.373046875,-499.2822265625,164.98291015625,-686.5908203125,-503.990234375,172.920654296875,-691.30126953125,-500.0009765625,176.889892578125,-699.9990234375,-491.2998046875,172.921142578125,-703.990234375,-486.591796875,164.983642578125,-699.27978515625,-490.58203125,161.0146484375,-690.5810546875,-499.80078125,180.19189453125,-699.79833984375,-504.6953125,175.32373046875,-689.12939453125,-498.919921875,165.587646484375,-683.35107421875,-488.248046875,160.719970703125,-688.2470703125,-483.3525390625,165.587646484375,-698.91796875,-489.12890625,175.323974609375,-704.6943359375,-509.568359375,152.77685546875,-696.87744140625,-514.27734375,160.714599609375,-701.587890625,-510.287109375,164.683837890625,-710.2861328125,-501.587890625,160.715087890625,-714.27587890625,-496.8779296875,152.77734375,-709.5673828125,-500.869140625,148.80859375,-700.86669921875,-510.43359375,168.570068359375,-710.4326171875,-515.623046875,163.409423828125,-699.12060546875,-509.4990234375,153.089599609375,-692.9990234375,-498.1875,147.9296875,-698.18798828125,-493,153.089599609375,-709.498046875,
- -499.123046875,163.409423828125,-715.62109375,-527.7900390625,131.677978515625,-715.099609375,-532.5,139.615966796875,-719.80859375,-528.5087890625,143.585205078125,-728.5078125,-519.80859375,139.616455078125,-732.49951171875,-515.099609375,131.678466796875,-727.7890625,-519.08984375,127.710205078125,-719.09033203125,-528.84765625,147.796142578125,-728.84814453125,-533.744140625,142.927978515625,-718.17578125,-527.9677734375,133.191650390625,-712.3994140625,-516.57421875,127.108154296875,-716.5732421875,-512.400390625,133.19189453125,-727.9658203125,-518.1767578125,142.927978515625,-733.7421875,-538.2666015625,117.633544921875,-726.5078125,-542.62890625,124.987060546875,-730.87109375,-538.931640625,128.663330078125,-738.93212890625,-530.87109375,124.987060546875,-742.62890625,-526.5087890625,117.633544921875,-738.265625,-530.20703125,113.956298828125,-730.20458984375,-539.677734375,133.56005859375,-739.67822265625,-544.6748046875,128.59130859375,-728.78515625,-538.7783203125,118.653564453125,-722.8896484375,-527.88671875,113.6845703125,-727.88427734375,-522.890625,118.6533203125,-738.77685546875,-528.7861328125,128.591064453125,-744.673828125,-555.57421875,97.15185546875,-742.8837890625,-560.283203125,105.089599609375,-747.59228515625,-556.29296875,109.058837890625,-756.2919921875,-547.5927734375,105.090087890625,-760.2822265625,-542.8837890625,97.152587890625,-755.5732421875,-546.8740234375,93.183837890625,-746.873046875,-556.0927734375,112.361083984375,-756.091796875,-560.98828125,107.492919921875,-745.41943359375,-555.2119140625,97.756591796875,-739.64453125,-544.5400390625,92.888916015625,-744.5390625,-539.646484375,97.756591796875,-755.20947265625,-545.421875,107.492919921875,-760.986328125,-571.8291015625,78.209228515625,-759.1396484375,-576.5380859375,86.146728515625,-763.8486328125,-572.5478515625,90.115966796875,-772.546875,-563.84765625,86.147216796875,-776.5380859375,-559.138671875,78.209716796875,-771.8291015625,-563.12890625,74.240966796875,-763.12939453125,-572.6943359375,94.001953125,-772.693359375,
- -577.8828125,88.842041015625,-761.38330078125,-571.7607421875,78.521728515625,-755.259765625,-560.44921875,73.361572265625,-760.44677734375,-555.2607421875,78.521728515625,-771.7587890625,-561.3828125,88.842041015625,-777.88232421875,-585.4130859375,62.0205078125,-773.8896484375,-589.689453125,69.228271484375,-778.166015625,-586.06640625,72.832275390625,-786.064453125,-578.166015625,69.228759765625,-789.68798828125,-573.888671875,62.021240234375,-785.41357421875,-577.513671875,58.417236328125,-777.5126953125,-586.298828125,76.864501953125,-786.2978515625,-591.193359375,71.996337890625,-775.626953125,-585.4169921875,62.260009765625,-769.8505859375,-574.74609375,57.39208984375,-774.7451171875,-569.8515625,62.260009765625,-785.41552734375,-575.626953125,71.996337890625,-791.19384765625,-597.2734375,49.743896484375,-784.5830078125,-601.982421875,57.681396484375,-789.29345703125,-597.9921875,61.65087890625,-797.9912109375,-589.2919921875,57.681884765625,-801.982421875,-584.58203125,49.744384765625,-797.27392578125,-588.57421875,45.775634765625,-788.57177734375,-597.79296875,64.95263671875,-797.79052734375,-602.6875,60.084716796875,-787.1201171875,-596.9111328125,50.3486328125,-781.34375,-586.240234375,45.480712890625,-786.23779296875,-581.3447265625,50.348388671875,-796.91015625,-587.12109375,60.084716796875,-802.6865234375,-616.5625,25.876220703125,-802.939453125,-621.6181640625,34.397705078125,-807.9951171875,-617.333984375,38.6591796875,-817.33447265625,-607.9951171875,34.3984375,-821.6171875,-602.939453125,25.876708984375,-816.5615234375,-607.2236328125,21.615966796875,-807.2216796875,-617.3076171875,42.253173828125,-817.306640625,-622.6435546875,36.947021484375,-805.67578125,-616.34765625,26.334716796875,-799.3798828125,-604.7158203125,21.029052734375,-804.71484375,-599.380859375,26.334716796875,-816.345703125,-605.6767578125,36.947021484375,-822.6416015625,-625.224609375,15.542236328125,-812.5341796875,-629.93359375,23.479736328125,-817.2431640625,-625.943359375,27.448974609375,-825.9423828125,-617.2421875,23.480224609375,-829.93408203125,
- -612.5341796875,15.542724609375,-825.2236328125,-616.5244140625,11.573974609375,-816.5234375,-625.7431640625,30.751220703125,-825.7421875,-630.6376953125,25.883056640625,-815.0712890625,-624.8623046875,16.14697265625,-809.294921875,-614.19140625,11.27880859375,-814.189453125,-609.2958984375,16.14697265625,-824.861328125,-615.072265625,25.883056640625,-830.63623046875,-640.9140625,-3.0751953125,-828.224609375,-645.623046875,4.862548828125,-832.93359375,-641.6328125,8.831787109375,-841.6318359375,-632.93359375,4.863037109375,-845.62158203125,-628.2236328125,-3.074462890625,-840.9130859375,-632.21484375,-7.043212890625,-832.21240234375,-641.43359375,12.1337890625,-841.43115234375,-646.328125,7.265869140625,-830.7607421875,-640.552734375,-2.470458984375,-824.98388671875,-629.880859375,-7.338623046875,-829.8798828125,-624.986328125,-2.470458984375,-840.55078125,-630.76171875,7.265869140625,-846.32763671875,-2.5478515625,754.280517578125,-191.744140625,-6.556640625,761.037841796875,-195.751953125,-3.1591796875,764.4169921875,-203.158203125,4.24609375,761.038330078125,-206.5546875,8.2548828125,754.281494140625,-202.5458984375,4.859375,750.902587890625,-195.140625,-17.62109375,736.508544921875,-204.9306640625,-22.330078125,744.446044921875,-209.638671875,-18.33984375,748.415283203125,-218.3388671875,-9.640625,744.446533203125,-222.3291015625,-4.9306640625,736.509033203125,-217.6201171875,-8.921875,732.540283203125,-208.919921875,-18.1396484375,751.71728515625,-218.138671875,-23.0341796875,746.849365234375,-207.4677734375,-17.2587890625,737.113037109375,-201.69140625,-6.5869140625,732.244873046875,-206.5859375,-1.69140625,737.113037109375,-217.2578125,-7.46875,746.849365234375,-223.033203125,-4.703125,764.7216796875,-204.703125,-8.7314453125,760.715576171875,-195.921875,-3.978515625,752.7041015625,-191.1689453125,4.802734375,748.698486328125,-195.1962890625,8.830078125,752.7041015625,-203.9775390625,4.0771484375,760.715576171875,-208.73046875,-34.8857421875,715.981689453125,-222.8935546875,-39.333984375,723.481201171875,-227.34375,
- -35.564453125,727.231201171875,-235.5625,-27.34375,723.480712890625,-239.3349609375,-22.89453125,715.981201171875,-234.8857421875,-26.666015625,712.232177734375,-226.6640625,-35.6240234375,730.97119140625,-235.623046875,-40.5185546875,726.103271484375,-224.9521484375,-34.7431640625,716.366943359375,-219.17578125,-24.0703125,711.498779296875,-224.072265625,-19.17578125,716.366943359375,-234.7421875,-24.953125,726.103271484375,-240.517578125,-45.3583984375,702.904541015625,-232.6689453125,-50.068359375,710.842041015625,-237.3779296875,-46.078125,714.811767578125,-246.076171875,-37.3779296875,710.843017578125,-250.0673828125,-32.66796875,702.905517578125,-245.3583984375,-36.66015625,698.936767578125,-236.658203125,-46.4609375,718.417236328125,-246.458984375,-51.6494140625,713.257080078125,-235.1484375,-45.525390625,702.936767578125,-229.02734375,-34.21484375,697.777099609375,-234.2138671875,-29.02734375,702.936767578125,-245.5244140625,-35.1494140625,713.257080078125,-251.6474609375,-58.2060546875,686.583984375,-246.2138671875,-62.654296875,694.083740234375,-250.6640625,-58.884765625,697.833251953125,-258.8837890625,-50.6640625,694.083740234375,-262.654296875,-46.21484375,686.583984375,-258.205078125,-49.986328125,682.833984375,-249.984375,-58.4716796875,702.13427734375,-258.470703125,-63.3662109375,697.265869140625,-247.7998046875,-57.58984375,687.52978515625,-242.0234375,-47.0400390625,682.864501953125,-247.0380859375,-42.0234375,687.530029296875,-257.58984375,-47.80078125,697.26611328125,-263.365234375,-74.2744140625,669.28515625,-261.583984375,-78.984375,677.222900390625,-266.29296875,-74.9931640625,681.192138671875,-274.9912109375,-66.2919921875,677.223876953125,-278.982421875,-61.58203125,669.2861328125,-274.2734375,-65.57421875,665.317138671875,-265.5732421875,-74.7919921875,684.494140625,-274.7919921875,-79.6875,679.626220703125,-264.119140625,-73.91015625,669.889892578125,-258.345703125,-63.240234375,665.022216796875,-263.2392578125,-58.345703125,669.889892578125,-273.91015625,-64.1220703125,679.626220703125,-279.6865234375,
- -84.560546875,657.079345703125,-271.869140625,-89.26953125,665.016845703125,-276.580078125,-85.279296875,668.986083984375,-285.279296875,-76.5791015625,665.017333984375,-289.26953125,-71.87109375,657.079833984375,-284.55859375,-75.8603515625,653.111083984375,-275.8603515625,-85.42578125,672.872314453125,-285.423828125,-90.6142578125,667.712158203125,-274.1142578125,-84.4921875,657.39208984375,-267.9912109375,-73.1796875,652.232177734375,-273.1796875,-67.9921875,657.39208984375,-284.490234375,-74.115234375,667.712158203125,-290.61328125,-102.7822265625,635.98046875,-290.091796875,-107.4921875,643.918212890625,-294.80078125,-103.501953125,647.887451171875,-303.5,-94.80078125,643.918701171875,-307.4912109375,-90.091796875,635.98095703125,-302.783203125,-94.0830078125,632.012451171875,-294.08203125,-103.8408203125,652.098876953125,-303.83984375,-108.7353515625,647.230224609375,-293.1689453125,-102.958984375,637.494140625,-287.392578125,-91.56640625,631.410888671875,-291.56640625,-87.3935546875,637.494384765625,-302.9580078125,-93.169921875,647.230712890625,-308.734375,-113.2578125,621.935791015625,-301.501953125,-117.62109375,629.289306640625,-305.86328125,-113.923828125,632.965576171875,-313.923828125,-105.86328125,629.289306640625,-317.62109375,-101.5,621.935791015625,-313.259765625,-105.19921875,618.2587890625,-305.197265625,-114.669921875,637.862548828125,-314.669921875,-119.666015625,632.893798828125,-303.7783203125,-113.7705078125,622.955810546875,-297.8818359375,-102.8779296875,617.987060546875,-302.8779296875,-97.8818359375,622.955810546875,-313.7705078125,-103.7783203125,632.893798828125,-319.666015625,-130.56640625,601.454345703125,-317.8759765625,-135.275390625,609.391845703125,-322.583984375,-131.28515625,613.361328125,-331.2841796875,-122.5849609375,609.392578125,-335.2744140625,-117.8759765625,601.454833984375,-330.5654296875,-121.8671875,597.486083984375,-321.865234375,-131.083984375,616.663330078125,-331.0859375,-135.98046875,611.795166015625,-320.4130859375,-130.203125,602.05908203125,-314.638671875,-119.53125,597.191162109375,-319.533203125,
- -114.6376953125,602.05908203125,-330.203125,-120.4140625,611.795166015625,-335.9794921875,-146.8212890625,582.51171875,-334.1318359375,-151.5302734375,590.44921875,-338.8408203125,-147.5390625,594.41845703125,-347.541015625,-138.83984375,590.44970703125,-351.5302734375,-134.130859375,582.51220703125,-346.8212890625,-138.12109375,578.54345703125,-338.12109375,-147.6865234375,598.304443359375,-347.6865234375,-152.875,593.144287109375,-336.375,-146.751953125,582.82421875,-330.25390625,-135.44140625,577.6640625,-335.4404296875,-130.2529296875,582.82421875,-346.7509765625,-136.3759765625,593.144287109375,-352.8740234375,-160.40625,566.322998046875,-348.880859375,-164.681640625,573.530517578125,-353.158203125,-161.05859375,577.134765625,-361.056640625,-153.158203125,573.53125,-364.6796875,-148.880859375,566.323486328125,-360.40625,-152.505859375,562.7197265625,-352.5048828125,-161.291015625,581.166748046875,-361.2900390625,-166.185546875,576.298583984375,-350.619140625,-160.4091796875,566.5625,-344.8427734375,-149.73828125,561.694580078125,-349.7373046875,-144.8427734375,566.5625,-360.4091796875,-150.619140625,576.298583984375,-366.185546875,-172.265625,554.046142578125,-359.576171875,-176.9755859375,561.983642578125,-364.28515625,-172.984375,565.953369140625,-372.982421875,-164.2841796875,561.984619140625,-376.974609375,-159.57421875,554.046875,-372.265625,-163.5654296875,550.078125,-363.5654296875,-172.78515625,569.2548828125,-372.783203125,-177.6796875,564.38720703125,-362.111328125,-171.90234375,554.651123046875,-356.337890625,-161.2314453125,549.782958984375,-361.2314453125,-156.3369140625,554.650634765625,-371.90234375,-162.11328125,564.386962890625,-377.6787109375,-191.5546875,530.178466796875,-377.931640625,-196.6103515625,538.700439453125,-382.9873046875,-192.326171875,542.961669921875,-392.326171875,-182.986328125,538.700927734375,-396.611328125,-177.931640625,530.178955078125,-391.5537109375,-182.21484375,525.918212890625,-382.21484375,-192.298828125,546.555419921875,-392.30078125,-197.634765625,541.249755859375,-380.66796875,
- -191.3388671875,530.637451171875,-374.3720703125,-179.7080078125,525.331298828125,-379.70703125,-174.373046875,530.637451171875,-391.337890625,-180.6689453125,541.249755859375,-397.6337890625,-200.216796875,519.8447265625,-387.5263671875,-204.92578125,527.7822265625,-392.236328125,-200.935546875,531.75146484375,-400.9345703125,-192.234375,527.78271484375,-404.92578125,-187.525390625,519.84521484375,-400.216796875,-191.517578125,515.876220703125,-391.515625,-200.734375,535.053466796875,-400.736328125,-205.6298828125,530.185302734375,-390.0634765625,-199.8544921875,520.449462890625,-384.287109375,-189.18359375,515.581298828125,-389.181640625,-184.2880859375,520.449462890625,-399.853515625,-190.064453125,530.185302734375,-405.62890625,-215.90625,501.227294921875,-403.216796875,-220.615234375,509.164794921875,-407.92578125,-216.6259765625,513.13427734375,-416.6240234375,-207.9248046875,509.16552734375,-420.615234375,-203.216796875,501.227783203125,-415.904296875,-207.2060546875,497.259033203125,-407.2060546875,-216.42578125,516.436279296875,-416.42333984375,-221.3203125,511.568115234375,-405.751953125,-215.54296875,501.83203125,-399.978515625,-204.873046875,496.964111328125,-404.8720703125,-199.9775390625,501.83203125,-415.54296875,-205.75390625,511.568115234375,-421.3193359375,-214.94921875,502.248779296875,-404.1484375,-218.958984375,509.006103515625,-408.15576171875,-215.5625,512.38525390625,-415.56005859375,-208.15625,509.006591796875,-418.9580078125,-204.1474609375,502.249755859375,-414.94921875,-207.544921875,498.870849609375,-407.54296875,-230.0244140625,484.476806640625,-417.333984375,-234.732421875,492.414306640625,-422.04443359375,-230.7421875,496.383544921875,-430.7421875,-222.04296875,492.414794921875,-434.732421875,-217.333984375,484.477294921875,-430.0234375,-221.32421875,480.508544921875,-421.32275390625,-230.54296875,499.685546875,-430.5419921875,-235.4375,494.817626953125,-419.87109375,-229.6611328125,485.081298828125,-414.0947265625,-218.990234375,480.213134765625,-418.9892578125,-214.095703125,485.081298828125,-429.65966796875,
- -219.87109375,494.817626953125,-435.43798828125,-217.10546875,512.689697265625,-417.10693359375,-221.134765625,508.683837890625,-408.3251953125,-216.380859375,500.67236328125,-403.572265625,-207.599609375,496.666748046875,-407.599609375,-203.572265625,500.67236328125,-416.380859375,-208.326171875,508.683837890625,-421.1337890625,-247.2880859375,463.949951171875,-435.296875,-251.73828125,471.449462890625,-439.74560546875,-247.966796875,475.199462890625,-447.96728515625,-239.7470703125,471.448486328125,-451.73828125,-235.296875,463.948974609375,-447.28955078125,-239.068359375,460.200439453125,-439.0673828125,-248.0263671875,478.939453125,-448.0263671875,-252.921875,474.071044921875,-437.35546875,-247.1455078125,464.335205078125,-431.5791015625,-236.474609375,459.467041015625,-436.47314453125,-231.580078125,464.335205078125,-447.14404296875,-237.35546875,474.071044921875,-452.92236328125,-257.76171875,450.872802734375,-445.072265625,-262.470703125,458.810302734375,-449.78125,-258.48046875,462.779541015625,-458.48095703125,-249.78125,458.810791015625,-462.470703125,-245.072265625,450.873291015625,-457.76025390625,-249.0625,446.904541015625,-449.0615234375,-258.86328125,466.385498046875,-458.86376953125,-264.0517578125,461.225341796875,-447.5517578125,-257.9296875,450.905029296875,-441.42822265625,-246.6181640625,445.744873046875,-446.6171875,-241.4306640625,450.905029296875,-457.927734375,-247.552734375,461.225341796875,-464.05078125,-270.609375,434.5517578125,-458.6171875,-275.05859375,442.051513671875,-463.06591796875,-271.287109375,445.801025390625,-471.28759765625,-263.06640625,442.051513671875,-475.05908203125,-258.6181640625,434.5517578125,-470.6083984375,-262.388671875,430.802001953125,-462.3876953125,-270.875,450.102294921875,-470.8740234375,-275.76953125,445.23388671875,-460.203125,-269.9931640625,435.497802734375,-454.4267578125,-259.4423828125,430.83251953125,-459.44140625,-254.427734375,435.498046875,-469.99169921875,-260.203125,445.234130859375,-475.77001953125,-286.6767578125,417.25341796875,-473.9873046875,
- -291.38671875,425.191162109375,-478.6962890625,-287.396484375,429.160400390625,-487.39453125,-278.6953125,425.191650390625,-491.3857421875,-273.986328125,417.254150390625,-486.67529296875,-277.9775390625,413.285400390625,-477.9765625,-287.1962890625,432.46240234375,-487.1953125,-292.0908203125,427.59423828125,-476.5244140625,-286.314453125,417.858154296875,-470.748046875,-275.6435546875,412.990478515625,-475.642578125,-270.748046875,417.858154296875,-486.31494140625,-276.525390625,427.594482421875,-492.08935546875,-296.962890625,405.04736328125,-484.27490234375,-301.6728515625,412.985107421875,-488.9833984375,-297.681640625,416.954345703125,-497.68310546875,-288.982421875,412.985595703125,-501.67333984375,-284.2734375,405.048095703125,-496.96240234375,-288.263671875,401.079345703125,-488.26416015625,-297.828125,420.840576171875,-497.82958984375,-303.017578125,415.679931640625,-486.517578125,-296.89453125,405.360107421875,-480.39599609375,-285.5830078125,400.2001953125,-485.5830078125,-280.3955078125,405.360107421875,-496.8935546875,-286.5185546875,415.679931640625,-503.0166015625,-315.185546875,383.94873046875,-502.4951171875,-319.89453125,391.886474609375,-507.20556640625,-315.904296875,395.855712890625,-515.90478515625,-307.205078125,391.886962890625,-519.89306640625,-302.49609375,383.94921875,-515.18408203125,-306.486328125,379.980712890625,-506.4853515625,-316.244140625,400.066650390625,-516.24169921875,-321.138671875,395.198486328125,-505.57080078125,-315.361328125,385.46240234375,-499.79638671875,-303.970703125,379.378662109375,-503.96826171875,-299.7958984375,385.46240234375,-515.361328125,-305.572265625,395.198486328125,-521.1376953125,-325.662109375,369.90380859375,-513.90283203125,-330.0244140625,377.257568359375,-518.2666015625,-326.328125,380.933837890625,-526.32568359375,-318.2666015625,377.257568359375,-530.0244140625,-313.904296875,369.90380859375,-525.66064453125,-317.6015625,366.22705078125,-517.60205078125,-327.07421875,385.830810546875,-527.07177734375,-332.068359375,380.862060546875,-516.18212890625,
- -326.1728515625,370.924072265625,-510.28515625,-315.28125,365.955322265625,-515.28173828125,-310.28515625,370.924072265625,-526.173828125,-316.181640625,380.862060546875,-532.0693359375,-342.9697265625,349.422607421875,-530.279296875,-347.677734375,357.360107421875,-534.98974609375,-343.6884765625,361.32958984375,-543.6875,-334.98828125,357.36083984375,-547.67724609375,-330.279296875,349.423095703125,-542.96875,-334.26953125,345.454345703125,-534.27001953125,-343.48828125,364.631591796875,-543.48681640625,-348.3828125,359.763427734375,-532.81640625,-342.6064453125,350.027099609375,-527.0400390625,-331.935546875,345.1591796875,-531.93408203125,-327.041015625,350.027099609375,-542.60498046875,-332.81640625,359.763427734375,-548.38330078125,-359.224609375,330.479736328125,-546.53515625,-363.93359375,338.417236328125,-551.244140625,-359.943359375,342.386474609375,-559.94189453125,-351.2431640625,338.417724609375,-563.93359375,-346.5341796875,330.480224609375,-559.224609375,-350.5244140625,326.511474609375,-550.5244140625,-360.08984375,346.272705078125,-560.08837890625,-365.2783203125,341.1123046875,-548.7783203125,-359.1552734375,330.792236328125,-542.6552734375,-347.84375,325.63232421875,-547.84375,-342.65625,330.792236328125,-559.154296875,-348.779296875,341.1123046875,-565.27734375,-372.80859375,314.291259765625,-561.28662109375,-377.0849609375,321.498779296875,-565.5615234375,-373.4609375,325.10302734375,-573.4599609375,-365.560546875,321.499267578125,-577.08544921875,-361.28515625,314.291748046875,-572.80712890625,-364.908203125,310.68798828125,-564.90869140625,-373.6943359375,329.135009765625,-573.693359375,-378.5888671875,324.2666015625,-563.0224609375,-372.8125,314.530517578125,-557.24609375,-362.1416015625,309.662841796875,-562.140625,-357.24609375,314.53076171875,-572.8125,-363.0224609375,324.266845703125,-578.5888671875,-384.66796875,302.014404296875,-571.97998046875,-389.3779296875,309.951904296875,-576.6884765625,-385.38671875,313.921630859375,-585.38818359375,-376.6875,309.952392578125,-589.3779296875,-371.978515625,302.014892578125,-584.66748046875,
- -375.96875,298.04638671875,-575.96875,-385.1875,317.22314453125,-585.18798828125,-390.08203125,312.355224609375,-574.51708984375,-384.306640625,302.618896484375,-568.73876953125,-373.634765625,297.751220703125,-573.634765625,-368.740234375,302.618896484375,-584.3056640625,-374.5166015625,312.355224609375,-590.08203125,-403.9580078125,278.146728515625,-590.3349609375,-409.013671875,286.668212890625,-595.390625,-404.7294921875,290.929443359375,-604.7294921875,-395.390625,286.668701171875,-609.01220703125,-390.3349609375,278.147216796875,-603.95703125,-394.619140625,273.886474609375,-594.61669921875,-404.703125,294.523681640625,-604.70166015625,-410.0380859375,289.217529296875,-593.0712890625,-403.7421875,278.605224609375,-586.775390625,-392.111328125,273.299560546875,-592.1103515625,-386.7763671875,278.605224609375,-603.7412109375,-393.072265625,289.217529296875,-610.037109375,-412.619140625,267.812744140625,-599.93115234375,-417.328125,275.750244140625,-604.64013671875,-413.3388671875,279.7197265625,-613.337890625,-404.638671875,275.7509765625,-617.32763671875,-399.9296875,267.8134765625,-612.61865234375,-403.919921875,263.844482421875,-603.9189453125,-413.138671875,283.021728515625,-613.13916015625,-418.033203125,278.153564453125,-602.466796875,-412.2578125,268.41748046875,-596.6904296875,-401.5859375,263.54931640625,-601.58642578125,-396.69140625,268.41748046875,-612.2568359375,-402.466796875,278.153564453125,-618.03369140625,-428.3095703125,249.195556640625,-615.6201171875,-433.0185546875,257.133056640625,-620.3291015625,-429.029296875,261.1025390625,-629.02734375,-420.328125,257.1337890625,-633.0185546875,-415.619140625,249.196044921875,-628.3095703125,-419.609375,245.227294921875,-619.609375,-428.828125,264.404541015625,-628.82861328125,-433.72265625,259.536376953125,-618.15771484375,-427.947265625,249.80029296875,-612.37939453125,-417.2763671875,244.93212890625,-617.275390625,-412.380859375,249.80029296875,-627.9462890625,-418.1572265625,259.536376953125,-633.72265625,7.33203125,751.366943359375,-200.8603515625,
- 7.33203125,759.832763671875,-200.8603515625,0.0009765625,764.065551757813,-200.861328125,-7.3310546875,759.832763671875,-200.861328125,-7.3310546875,751.366943359375,-200.861328125,0.0009765625,747.134399414063,-200.861328125,8.314453125,749.606323242188,-172.80859375,8.314453125,759.205444335938,-172.80859375,0.0009765625,764.004760742188,-172.80859375,-8.3134765625,759.205444335938,-172.80859375,-8.3134765625,749.606323242188,-172.80859375,0.0009765625,744.806762695313,-172.80859375,0.0009765625,768.434204101563,-175.20703125,11.2353515625,761.948120117188,-175.20703125,11.2353515625,748.975708007813,-175.20703125,0.0009765625,742.489379882813,-175.20703125,-11.234375,748.975708007813,-175.20703125,-11.234375,761.948120117188,-175.20703125,8.9736328125,749.224975585938,-152.337890625,8.9736328125,759.586547851563,-152.337890625,0.0009765625,764.767211914063,-152.33984375,-8.97265625,759.586547851563,-152.33984375,-8.97265625,749.224975585938,-152.33984375,0.0009765625,744.044311523438,-152.33984375,0.0009765625,767.115112304688,-154.73828125,11.0078125,760.760375976563,-154.73828125,11.0078125,748.051147460938,-154.73828125,0.0009765625,741.696655273438,-154.73828125,-11.005859375,748.051147460938,-154.73828125,-11.005859375,760.760375976563,-154.73828125,8.9736328125,749.489624023438,-128.427734375,8.9736328125,759.850952148438,-128.427734375,0.0009765625,765.031616210938,-128.4296875,-8.97265625,759.850952148438,-128.4296875,-8.97265625,749.489624023438,-128.4296875,0.0009765625,744.308959960938,-128.4296875,0.0009765625,768.141723632813,-130.828125,11.66796875,761.405883789063,-130.828125,11.66796875,747.934448242188,-130.828125,0.0009765625,741.198608398438,-130.828125,-11.6650390625,747.934448242188,-130.828125,-11.6650390625,761.405883789063,-130.828125,8.1484375,749.965942382813,-102.017578125,8.1484375,759.374633789063,-102.017578125,0.0009765625,764.078735351563,-102.017578125,-8.1474609375,759.374633789063,-102.017578125,-8.1474609375,749.965942382813,-102.017578125,0.0009765625,745.261840820313,-102.017578125,
- 0.0009765625,767.379516601563,-104.41796875,11.0078125,761.024780273438,-104.41796875,11.0078125,748.315551757813,-104.41796875,0.0009765625,741.961059570313,-104.41796875,-11.005859375,748.315551757813,-104.41796875,-11.005859375,761.024780273438,-104.41796875,8.9736328125,750.811889648438,-81.396484375,8.9736328125,761.173461914063,-81.396484375,0.0009765625,766.354125976563,-81.396484375,-8.97265625,761.173461914063,-81.396484375,-8.97265625,750.811889648438,-81.396484375,0.0009765625,745.631225585938,-81.396484375,0.0009765625,768.701782226563,-83.794921875,11.0078125,762.347290039063,-83.794921875,11.0078125,749.638061523438,-83.794921875,0.0009765625,743.283569335938,-83.794921875,-11.005859375,749.638061523438,-83.794921875,-11.005859375,762.347290039063,-83.794921875,9.6337890625,749.637084960938,-44.7509765625,9.6337890625,760.761108398438,-44.7509765625,0.0009765625,766.322875976563,-44.751953125,-9.6318359375,760.761108398438,-44.751953125,-9.6318359375,749.637084960938,-44.751953125,0.0009765625,744.075317382813,-44.751953125,0.0009765625,769.051879882813,-47.1513671875,11.998046875,762.125610351563,-47.1513671875,11.998046875,748.272827148438,-47.1513671875,0.0009765625,741.346557617188,-47.1513671875,-11.9951171875,748.272827148438,-47.1513671875,-11.9951171875,762.125610351563,-47.1513671875,8.9736328125,750.018432617188,-27.7978515625,8.9736328125,760.379760742188,-27.7978515625,0.0009765625,765.560424804688,-27.798828125,-8.97265625,760.379760742188,-27.798828125,-8.97265625,750.018432617188,-27.798828125,0.0009765625,744.837524414063,-27.798828125,0.0009765625,767.908325195313,-30.197265625,11.0078125,761.553588867188,-30.197265625,11.0078125,748.844604492188,-30.197265625,0.0009765625,742.489868164063,-30.197265625,-11.005859375,748.844604492188,-30.197265625,-11.005859375,761.553588867188,-30.197265625,8.9736328125,750.018188476563,1.90625,8.9736328125,760.379760742188,1.90625,0.0009765625,765.560424804688,1.904296875,-8.97265625,760.379760742188,1.904296875,-8.97265625,750.018188476563,1.904296875,
- 0.0009765625,744.837524414063,1.904296875,0.0009765625,767.908325195313,-0.4931640625,11.0078125,761.553588867188,-0.4931640625,11.0078125,748.844360351563,-0.4931640625,0.0009765625,742.489868164063,-0.4931640625,-11.005859375,748.844360351563,-0.4931640625,-11.005859375,761.553588867188,-0.4931640625,0.0009765625,766.21142578125,-198.9375,9.2021484375,760.898681640625,-198.9365234375,9.2021484375,750.273071289063,-198.9365234375,0.0009765625,744.960571289063,-198.9375,-9.201171875,750.273071289063,-198.9375,-9.201171875,760.898681640625,-198.9375
- }
- PolygonVertexIndex: *4403 {
- a: 3,258,257,-3,6,261,263,-10,8,9,263,-265,11,266,265,-11,19,274,273,-19,23,278,277,-23,26,281,283,-30,28,29,283,-285,31,286,285,-31,39,294,293,-39,43,298,297,-43,46,301,303,-50,48,49,303,-305,51,306,305,-51,59,314,313,-59,69,324,327,-76,89,87,345,-348,87,86,344,-346,86,88,346,-345,88,89,347,-347,92,350,352,-95,94,352,353,-96,99,100,98,-98,98,356,355,-98,101,359,361,-105,103,102,101,-105,103,104,361,-363,107,108,106,-106,106,364,363,-106,111,112,110,-110,115,116,114,-114,1,116,115,-1,114,372,371,-114,3,118,120,-6,119,120,118,-118,5,120,119,-5,118,3,2,-118,6,121,122,-8,121,6,9,-125,123,122,121,-125,123,124,9,-9,11,126,128,-14,127,128,126,-126,13,128,127,-13,126,11,10,-126,14,129,130,-16,15,130,132,-18,131,132,130,-130,17,132,131,-17,19,134,136,-22,135,136,134,-134,21,136,135,-21,134,19,18,-134,23,138,140,-26,139,140,138,-138,25,140,139,-25,138,23,22,-138,26,141,142,-28,141,26,29,-145,143,142,141,-145,143,144,29,-29,31,146,148,-34,147,148,146,-146,33,148,147,-33,146,31,30,-146,34,149,150,-36,35,150,152,-38,151,152,150,-150,37,152,151,-37,39,154,156,-42,155,156,154,-154,41,156,155,-41,154,39,38,-154,43,158,160,-46,159,160,158,-158,45,160,159,-45,158,43,42,-158,46,161,162,-48,161,46,49,-165,163,162,161,-165,163,164,49,-49,51,166,168,-54,167,168,166,-166,53,168,167,-53,166,51,50,-166,54,169,170,-56,55,170,172,-58,171,172,170,-170,57,172,171,-57,59,174,176,-62,175,176,174,-174,61,176,175,-61,174,59,58,-174,177,178,233,-235,181,182,180,-180,185,186,184,-184,184,380,379,-184,196,208,197,-196,205,192,191,-205,207,194,193,-207,211,212,384,-384,212,211,210,-200,213,212,199,-199,214,213,198,-210,211,214,209,-211,204,385,387,-206,64,317,385,204,-192,65,318,-387,73,74,207,-207,66,73,206,-194,67,66,193,-195,74,67,194,-208,68,69,196,-196,70,68,195,-198,75,70,197,-209,196,69,75,-209,216,187,200,-216,217,188,187,-217,218,201,188,-218,215,200,201,-219,216,215,235,-239,217,216,238,-240,218,217,239,-241,215,218,240,-236,85,77,220,-233,76,84,231,-220,231,232,220,-220,77,76,219,-221,221,222,224,-224,223,224,226,-226,78,334,
- 394,223,-226,225,226,228,-228,79,81,228,-227,80,78,225,-228,227,228,230,-230,81,83,230,-229,82,80,227,-230,229,230,232,-232,83,85,232,-231,84,82,229,-232,237,397,384,212,-214,236,237,213,-215,214,211,383,398,-237,202,395,388,-190,241,242,222,-222,221,392,396,-242,238,235,240,-240,246,244,87,-90,244,243,86,-88,245,243,244,-247,243,245,88,-87,245,246,89,-89,90,247,248,-92,249,92,94,-252,93,250,247,-91,251,94,95,-253,96,253,252,-96,91,248,253,-97,248,247,250,249,251,252,-254,92,249,250,-94,256,254,-2,255,256,1,-1,260,258,3,-6,259,260,5,-5,262,261,6,-8,268,266,11,-14,267,268,13,-13,270,269,14,-16,272,270,15,-18,271,272,17,-17,276,274,19,-22,275,276,21,-21,280,278,23,-26,279,280,25,-25,282,281,26,-28,288,286,31,-34,287,288,33,-33,290,289,34,-36,292,290,35,-38,291,292,37,-37,296,294,39,-42,295,296,41,-41,300,298,43,-46,299,300,45,-45,302,301,46,-48,308,306,51,-54,307,308,53,-53,310,309,54,-56,312,310,55,-58,311,312,57,-57,316,314,59,-62,315,316,61,-61,319,317,-65,318,319,-65,320,323,74,-74,321,320,73,-67,322,321,66,-68,323,322,67,-75,325,324,69,-69,326,325,68,-71,327,326,70,-76,328,329,62,-72,329,330,63,-63,330,331,72,-64,331,328,71,-73,339,333,77,-86,332,343,84,-77,333,332,76,-78,335,336,-80,340,334,-79,336,337,81,-80,341,340,78,-81,337,338,83,-82,342,341,80,-83,338,339,85,-84,343,342,82,-85,349,348,90,-92,348,351,93,-91,353,354,96,-96,354,349,91,-97,351,350,92,-94,358,356,98,-101,357,358,100,-100,360,359,101,-103,366,364,106,-109,365,366,108,-108,368,367,109,-111,370,368,110,-113,369,370,112,-112,254,372,114,116,-2,373,374,178,-178,376,375,179,-181,378,376,180,-183,377,378,182,-182,382,380,184,-187,381,382,186,-186,386,318,64,191,-193,387,386,192,-206,389,390,203,-191,391,393,224,-223,394,392,221,-224,393,335,79,226,-225,374,397,233,-179,390,395,202,-204,388,389,190,-190,399,391,222,-243,396,399,242,-242,397,396,234,-234,401,405,404,-401,406,407,403,-403,403,407,405,-402,402,403,401,-401,404,406,402,-401,404,405,407,-407,409,548,550,-412,411,550,549,-411,412,551,552,-414,417,556,558,-420,419,558,557,-419,420,559,560,-422,
- 421,560,562,-424,423,562,561,-423,425,564,566,-428,427,566,565,-427,429,568,570,-432,431,570,569,-431,432,571,572,-434,437,576,578,-440,439,578,577,-439,440,579,580,-442,441,580,582,-444,443,582,581,-443,445,584,586,-448,447,586,585,-447,449,588,590,-452,451,590,589,-451,452,591,592,-454,457,596,598,-460,459,598,597,-459,460,599,600,-462,461,600,602,-464,463,602,601,-463,465,604,606,-468,467,606,605,-467,469,608,610,-472,471,610,609,-471,472,611,612,-474,477,616,618,-480,479,618,617,-479,480,619,620,-482,481,620,622,-484,483,622,621,-483,485,624,626,-488,487,626,625,-487,488,627,628,-490,489,628,630,-492,491,630,629,-491,493,632,634,-496,495,634,633,-495,496,503,639,-641,497,496,640,-642,504,497,641,-643,505,506,646,-644,498,505,643,-645,499,498,644,-646,506,499,645,-647,500,501,647,-649,502,500,648,-650,507,502,649,-651,521,509,659,-667,508,520,671,-659,509,508,658,-660,511,513,662,-661,512,510,522,661,-668,513,515,663,-663,514,512,667,-669,515,517,664,-664,516,514,668,-670,517,519,665,-665,518,516,669,-671,519,521,666,-666,520,518,670,-672,543,672,655,-538,528,677,678,-530,531,680,677,-529,534,683,682,-534,529,678,683,-535,530,679,680,-532,547,548,409,-409,553,551,412,-416,554,553,415,-415,555,556,417,-417,563,564,425,-425,567,568,429,-429,573,571,432,-436,574,573,435,-435,575,576,437,-437,583,584,445,-445,587,588,449,-449,593,591,452,-456,594,593,455,-455,595,596,457,-457,603,604,465,-465,607,608,469,-469,613,611,472,-476,614,613,475,-475,615,616,477,-477,623,624,485,-485,631,632,493,-493,637,638,546,-541,636,637,540,-540,635,636,539,-546,638,635,545,-547,642,639,503,-505,650,647,501,-508,651,652,535,-542,652,653,536,-536,653,654,542,-537,654,651,541,-543,656,657,544,-539,657,672,543,-545,655,656,538,-538,676,674,525,-528,674,673,524,-526,673,675,526,-525,675,676,527,-527,681,679,530,-533,682,681,532,-534,523,511,-661,409,411,410,-409,412,413,414,-416,417,419,418,-417,421,423,422,-421,425,427,426,-425,429,431,430,-429,432,433,434,-436,437,439,438,-437,441,443,442,-441,445,447,446,-445,449,451,450,-449,452,453,454,
- -456,457,459,458,-457,461,463,462,-461,465,467,466,-465,469,471,470,-469,472,473,474,-476,477,479,478,-477,481,483,482,-481,485,487,486,-485,489,491,490,-489,493,495,494,-493,497,504,503,-497,499,506,505,-499,502,507,501,-501,524,526,527,-526,508,509,521,-521,510,511,523,-523,512,513,511,-511,514,515,513,-513,516,517,515,-515,518,519,517,-517,520,521,519,-519,687,688,684,685,691,690,689,-687,695,693,692,-695,696,697,695,-695,697,693,-696,698,699,715,-715,702,703,699,-699,699,703,704,-701,701,700,704,-706,698,701,705,-703,706,709,713,-711,708,712,713,-710,707,711,712,-709,710,711,707,-707,706,707,703,-703,707,708,704,-704,708,709,705,-705,705,709,706,-703,716,715,699,-701,717,716,700,-702,717,701,698,-715,714,715,716,-718,718,720,722,-724,719,718,723,-725,721,719,724,-726,720,721,725,-723,745,746,726,-728,744,745,727,-729,744,728,729,-750,748,749,729,-731,747,748,730,-732,746,747,731,-727,730,729,728,727,726,-732,734,738,743,-736,733,739,738,-735,732,740,739,-734,737,741,740,-733,736,742,741,-738,735,743,742,-737,743,738,744,-750,738,739,745,-745,739,740,746,-746,740,741,747,-747,741,742,748,-748,742,743,749,-749,757,758,732,-734,756,757,733,-735,756,734,735,-762,760,761,735,-737,759,760,736,-738,758,759,737,-733,752,756,761,-754,751,757,756,-753,750,758,757,-752,755,759,758,-751,754,760,759,-756,753,761,760,-755,769,770,750,-752,768,769,751,-753,768,752,753,-774,772,773,753,-755,771,772,754,-756,770,771,755,-751,764,768,773,-766,763,769,768,-765,762,770,769,-764,767,771,770,-763,766,772,771,-768,765,773,772,-767,781,782,762,-764,780,781,763,-765,780,764,765,-786,784,785,765,-767,783,784,766,-768,782,783,767,-763,776,780,785,-778,775,781,780,-777,774,782,781,-776,779,783,782,-775,778,784,783,-780,777,785,784,-779,793,794,774,-776,792,793,775,-777,792,776,777,-798,796,797,777,-779,795,796,778,-780,794,795,779,-775,788,792,797,-790,787,793,792,-789,786,794,793,-788,791,795,794,-787,790,796,795,-792,789,797,796,-791,805,806,786,-788,804,805,787,-789,804,788,789,-810,808,809,789,-791,807,808,790,-792,806,807,791,-787,800,
- 804,809,-802,799,805,804,-801,798,806,805,-800,803,807,806,-799,802,808,807,-804,801,809,808,-803,817,818,798,-800,816,817,799,-801,816,800,801,-822,820,821,801,-803,819,820,802,-804,818,819,803,-799,812,816,821,-814,811,817,816,-813,810,818,817,-812,815,819,818,-811,814,820,819,-816,813,821,820,-815,829,830,810,-812,828,829,811,-813,828,812,813,-834,832,833,813,-815,831,832,814,-816,830,831,815,-811,824,828,833,-826,823,829,828,-825,822,830,829,-824,827,831,830,-823,826,832,831,-828,825,833,832,-827,841,842,822,-824,840,841,823,-825,840,824,825,-846,844,845,825,-827,843,844,826,-828,842,843,827,-823,836,840,845,-838,835,841,840,-837,834,842,841,-836,839,843,842,-835,838,844,843,-840,837,845,844,-839,853,854,834,-836,852,853,835,-837,852,836,837,-858,856,857,837,-839,855,856,838,-840,854,855,839,-835,848,852,857,-850,847,853,852,-849,846,854,853,-848,851,855,854,-847,850,856,855,-852,849,857,856,-851,865,866,846,-848,864,865,847,-849,864,848,849,-870,868,869,849,-851,867,868,850,-852,866,867,851,-847,860,864,869,-862,859,865,864,-861,858,866,865,-860,863,867,866,-859,862,868,867,-864,861,869,868,-863,877,878,858,-860,876,877,859,-861,876,860,861,-882,880,881,861,-863,879,880,862,-864,878,879,863,-859,872,876,881,-874,871,877,876,-873,870,878,877,-872,875,879,878,-871,874,880,879,-876,873,881,880,-875,889,890,870,-872,888,889,871,-873,888,872,873,-894,892,893,873,-875,891,892,874,-876,890,891,875,-871,884,888,893,-886,883,889,888,-885,882,890,889,-884,887,891,890,-883,886,892,891,-888,885,893,892,-887,901,902,882,-884,900,901,883,-885,900,884,885,-906,904,905,885,-887,903,904,886,-888,902,903,887,-883,896,900,905,-898,895,901,900,-897,894,902,901,-896,899,903,902,-895,898,904,903,-900,897,905,904,-899,913,914,894,-896,912,913,895,-897,912,896,897,-918,916,917,897,-899,915,916,898,-900,914,915,899,-895,909,908,912,-918,908,907,913,-913,907,906,914,-914,906,911,915,-915,911,910,916,-916,910,909,917,-917,911,906,907,908,909,-911,937,938,918,-920,936,937,919,-921,936,920,921,-942,940,941,921,-923,939,940,922,-924,938,939,
- 923,-919,922,921,920,919,918,-924,926,930,935,-928,925,931,930,-927,924,932,931,-926,929,933,932,-925,928,934,933,-930,927,935,934,-929,935,930,936,-942,930,931,937,-937,931,932,938,-938,932,933,939,-939,933,934,940,-940,934,935,941,-941,949,950,924,-926,948,949,925,-927,948,926,927,-954,952,953,927,-929,951,952,928,-930,950,951,929,-925,944,948,953,-946,943,949,948,-945,942,950,949,-944,947,951,950,-943,946,952,951,-948,945,953,952,-947,961,962,942,-944,960,961,943,-945,960,944,945,-966,964,965,945,-947,963,964,946,-948,962,963,947,-943,956,960,965,-958,955,961,960,-957,954,962,961,-956,959,963,962,-955,958,964,963,-960,957,965,964,-959,973,974,954,-956,972,973,955,-957,972,956,957,-978,976,977,957,-959,975,976,958,-960,974,975,959,-955,968,972,977,-970,967,973,972,-969,966,974,973,-968,971,975,974,-967,970,976,975,-972,969,977,976,-971,985,986,966,-968,984,985,967,-969,984,968,969,-990,988,989,969,-971,987,988,970,-972,986,987,971,-967,980,984,989,-982,979,985,984,-981,978,986,985,-980,983,987,986,-979,982,988,987,-984,981,989,988,-983,997,998,978,-980,996,997,979,-981,996,980,981,-1002,1000,1001,981,-983,999,1000,982,-984,998,999,983,-979,992,996,1001,-994,991,997,996,-993,990,998,997,-992,995,999,998,-991,994,1000,999,-996,993,1001,1000,-995,1009,1010,990,-992,1008,1009,991,-993,1008,992,993,-1014,1012,1013,993,-995,1011,1012,994,-996,1010,1011,995,-991,1004,1008,1013,-1006,1003,1009,1008,-1005,1002,1010,1009,-1004,1007,1011,1010,-1003,1006,1012,1011,-1008,1005,1013,1012,-1007,1021,1022,1002,-1004,1020,1021,1003,-1005,1020,1004,1005,-1026,1024,1025,1005,-1007,1023,1024,1006,-1008,1022,1023,1007,-1003,1016,1020,1025,-1018,1015,1021,1020,-1017,1014,1022,1021,-1016,1019,1023,1022,-1015,1018,1024,1023,-1020,1017,1025,1024,-1019,1033,1034,1014,-1016,1032,1033,1015,-1017,1032,1016,1017,-1038,1036,1037,1017,-1019,1035,1036,1018,-1020,1034,1035,1019,-1015,1028,1032,1037,-1030,1027,1033,1032,-1029,1026,1034,1033,-1028,1031,1035,1034,-1027,1030,1036,1035,-1032,1029,1037,1036,-1031,1045,1046,1026,-1028,1044,1045,1027,-1029,
- 1044,1028,1029,-1050,1048,1049,1029,-1031,1047,1048,1030,-1032,1046,1047,1031,-1027,1040,1044,1049,-1042,1039,1045,1044,-1041,1038,1046,1045,-1040,1043,1047,1046,-1039,1042,1048,1047,-1044,1041,1049,1048,-1043,1057,1058,1038,-1040,1056,1057,1039,-1041,1056,1040,1041,-1062,1060,1061,1041,-1043,1059,1060,1042,-1044,1058,1059,1043,-1039,1052,1056,1061,-1054,1051,1057,1056,-1053,1050,1058,1057,-1052,1055,1059,1058,-1051,1054,1060,1059,-1056,1053,1061,1060,-1055,1069,1070,1050,-1052,1068,1069,1051,-1053,1068,1052,1053,-1074,1072,1073,1053,-1055,1071,1072,1054,-1056,1070,1071,1055,-1051,1064,1068,1073,-1066,1063,1069,1068,-1065,1062,1070,1069,-1064,1067,1071,1070,-1063,1066,1072,1071,-1068,1065,1073,1072,-1067,1081,1082,1062,-1064,1080,1081,1063,-1065,1080,1064,1065,-1086,1084,1085,1065,-1067,1083,1084,1066,-1068,1082,1083,1067,-1063,1076,1080,1085,-1078,1075,1081,1080,-1077,1074,1082,1081,-1076,1079,1083,1082,-1075,1078,1084,1083,-1080,1077,1085,1084,-1079,1093,1094,1074,-1076,1092,1093,1075,-1077,1092,1076,1077,-1098,1096,1097,1077,-1079,1095,1096,1078,-1080,1094,1095,1079,-1075,1088,1092,1097,-1090,1087,1093,1092,-1089,1086,1094,1093,-1088,1091,1095,1094,-1087,1090,1096,1095,-1092,1089,1097,1096,-1091,1105,1106,1086,-1088,1104,1105,1087,-1089,1104,1088,1089,-1110,1108,1109,1089,-1091,1107,1108,1090,-1092,1106,1107,1091,-1087,1101,1100,1104,-1110,1100,1099,1105,-1105,1099,1098,1106,-1106,1098,1103,1107,-1107,1103,1102,1108,-1108,1102,1101,1109,-1109,1103,1098,1099,1100,1101,-1103,1129,1130,1110,-1112,1128,1129,1111,-1113,1128,1112,1113,-1134,1132,1133,1113,-1115,1131,1132,1114,-1116,1130,1131,1115,-1111,1114,1113,1112,1111,1110,-1116,1118,1122,1127,-1120,1117,1123,1122,-1119,1116,1124,1123,-1118,1121,1125,1124,-1117,1120,1126,1125,-1122,1119,1127,1126,-1121,1127,1122,1128,-1134,1122,1123,1129,-1129,1123,1124,1130,-1130,1124,1125,1131,-1131,1125,1126,1132,-1132,1126,1127,1133,-1133,1141,1142,1116,-1118,1140,1141,1117,-1119,1140,1118,1119,-1146,1144,1145,1119,-1121,1143,1144,1120,-1122,1142,1143,1121,-1117,1136,1140,1145,
- -1138,1135,1141,1140,-1137,1134,1142,1141,-1136,1139,1143,1142,-1135,1138,1144,1143,-1140,1137,1145,1144,-1139,1153,1154,1134,-1136,1152,1153,1135,-1137,1152,1136,1137,-1158,1156,1157,1137,-1139,1155,1156,1138,-1140,1154,1155,1139,-1135,1148,1152,1157,-1150,1147,1153,1152,-1149,1146,1154,1153,-1148,1151,1155,1154,-1147,1150,1156,1155,-1152,1149,1157,1156,-1151,1165,1166,1146,-1148,1164,1165,1147,-1149,1164,1148,1149,-1170,1168,1169,1149,-1151,1167,1168,1150,-1152,1166,1167,1151,-1147,1160,1164,1169,-1162,1159,1165,1164,-1161,1158,1166,1165,-1160,1163,1167,1166,-1159,1162,1168,1167,-1164,1161,1169,1168,-1163,1177,1178,1158,-1160,1176,1177,1159,-1161,1176,1160,1161,-1182,1180,1181,1161,-1163,1179,1180,1162,-1164,1178,1179,1163,-1159,1172,1176,1181,-1174,1171,1177,1176,-1173,1170,1178,1177,-1172,1175,1179,1178,-1171,1174,1180,1179,-1176,1173,1181,1180,-1175,1189,1190,1170,-1172,1188,1189,1171,-1173,1188,1172,1173,-1194,1192,1193,1173,-1175,1191,1192,1174,-1176,1190,1191,1175,-1171,1184,1188,1193,-1186,1183,1189,1188,-1185,1182,1190,1189,-1184,1187,1191,1190,-1183,1186,1192,1191,-1188,1185,1193,1192,-1187,1201,1202,1182,-1184,1200,1201,1183,-1185,1200,1184,1185,-1206,1204,1205,1185,-1187,1203,1204,1186,-1188,1202,1203,1187,-1183,1196,1200,1205,-1198,1195,1201,1200,-1197,1194,1202,1201,-1196,1199,1203,1202,-1195,1198,1204,1203,-1200,1197,1205,1204,-1199,1213,1214,1194,-1196,1212,1213,1195,-1197,1212,1196,1197,-1218,1216,1217,1197,-1199,1215,1216,1198,-1200,1214,1215,1199,-1195,1208,1212,1217,-1210,1207,1213,1212,-1209,1206,1214,1213,-1208,1211,1215,1214,-1207,1210,1216,1215,-1212,1209,1217,1216,-1211,1225,1226,1206,-1208,1224,1225,1207,-1209,1224,1208,1209,-1230,1228,1229,1209,-1211,1227,1228,1210,-1212,1226,1227,1211,-1207,1220,1224,1229,-1222,1219,1225,1224,-1221,1218,1226,1225,-1220,1223,1227,1226,-1219,1222,1228,1227,-1224,1221,1229,1228,-1223,1237,1238,1218,-1220,1236,1237,1219,-1221,1236,1220,1221,-1242,1240,1241,1221,-1223,1239,1240,1222,-1224,1238,1239,1223,-1219,1232,1236,1241,-1234,1231,1237,1236,-1233,1230,1238,
- 1237,-1232,1235,1239,1238,-1231,1234,1240,1239,-1236,1233,1241,1240,-1235,1249,1250,1230,-1232,1248,1249,1231,-1233,1248,1232,1233,-1254,1252,1253,1233,-1235,1251,1252,1234,-1236,1250,1251,1235,-1231,1244,1248,1253,-1246,1243,1249,1248,-1245,1242,1250,1249,-1244,1247,1251,1250,-1243,1246,1252,1251,-1248,1245,1253,1252,-1247,1261,1262,1242,-1244,1260,1261,1243,-1245,1260,1244,1245,-1266,1264,1265,1245,-1247,1263,1264,1246,-1248,1262,1263,1247,-1243,1256,1260,1265,-1258,1255,1261,1260,-1257,1254,1262,1261,-1256,1259,1263,1262,-1255,1258,1264,1263,-1260,1257,1265,1264,-1259,1273,1274,1254,-1256,1272,1273,1255,-1257,1272,1256,1257,-1278,1276,1277,1257,-1259,1275,1276,1258,-1260,1274,1275,1259,-1255,1268,1272,1277,-1270,1267,1273,1272,-1269,1266,1274,1273,-1268,1271,1275,1274,-1267,1270,1276,1275,-1272,1269,1277,1276,-1271,1285,1286,1266,-1268,1284,1285,1267,-1269,1284,1268,1269,-1290,1288,1289,1269,-1271,1287,1288,1270,-1272,1286,1287,1271,-1267,1280,1284,1289,-1282,1279,1285,1284,-1281,1278,1286,1285,-1280,1283,1287,1286,-1279,1282,1288,1287,-1284,1281,1289,1288,-1283,1297,1298,1278,-1280,1296,1297,1279,-1281,1296,1280,1281,-1302,1300,1301,1281,-1283,1299,1300,1282,-1284,1298,1299,1283,-1279,1293,1292,1296,-1302,1292,1291,1297,-1297,1291,1290,1298,-1298,1290,1295,1299,-1299,1295,1294,1300,-1300,1294,1293,1301,-1301,1295,1290,1291,1292,1293,-1295,1405,1406,1302,-1304,1404,1405,1303,-1305,1404,1304,1305,-1410,1408,1409,1305,-1307,1407,1408,1306,-1308,1406,1407,1307,-1303,1310,1314,1319,-1312,1309,1315,1314,-1311,1308,1316,1315,-1310,1313,1317,1316,-1309,1312,1318,1317,-1314,1311,1319,1318,-1313,1327,1328,1308,-1310,1326,1327,1309,-1311,1326,1310,1311,-1332,1330,1331,1311,-1313,1329,1330,1312,-1314,1328,1329,1313,-1309,1322,1326,1331,-1324,1321,1327,1326,-1323,1320,1328,1327,-1322,1325,1329,1328,-1321,1324,1330,1329,-1326,1323,1331,1330,-1325,1339,1340,1320,-1322,1338,1339,1321,-1323,1338,1322,1323,-1344,1342,1343,1323,-1325,1341,1342,1324,-1326,1340,1341,1325,-1321,1334,1338,1343,-1336,1333,1339,1338,-1335,1332,1340,1339,
- -1334,1337,1341,1340,-1333,1336,1342,1341,-1338,1335,1343,1342,-1337,1351,1352,1332,-1334,1350,1351,1333,-1335,1350,1334,1335,-1356,1354,1355,1335,-1337,1353,1354,1336,-1338,1352,1353,1337,-1333,1346,1350,1355,-1348,1345,1351,1350,-1347,1344,1352,1351,-1346,1349,1353,1352,-1345,1348,1354,1353,-1350,1347,1355,1354,-1349,1363,1364,1344,-1346,1362,1363,1345,-1347,1362,1346,1347,-1368,1366,1367,1347,-1349,1365,1366,1348,-1350,1364,1365,1349,-1345,1358,1362,1367,-1360,1357,1363,1362,-1359,1356,1364,1363,-1358,1361,1365,1364,-1357,1360,1366,1365,-1362,1359,1367,1366,-1361,1375,1376,1356,-1358,1374,1375,1357,-1359,1374,1358,1359,-1380,1378,1379,1359,-1361,1377,1378,1360,-1362,1376,1377,1361,-1357,1370,1374,1379,-1372,1369,1375,1374,-1371,1368,1376,1375,-1370,1373,1377,1376,-1369,1372,1378,1377,-1374,1371,1379,1378,-1373,1387,1388,1368,-1370,1386,1387,1369,-1371,1386,1370,1371,-1392,1390,1391,1371,-1373,1389,1390,1372,-1374,1388,1389,1373,-1369,1382,1386,1391,-1384,1381,1387,1386,-1383,1380,1388,1387,-1382,1385,1389,1388,-1381,1384,1390,1389,-1386,1383,1391,1390,-1385,1399,1400,1380,-1382,1398,1399,1381,-1383,1398,1382,1383,-1404,1402,1403,1383,-1385,1401,1402,1384,-1386,1400,1401,1385,-1381,1395,1394,1398,-1404,1394,1393,1399,-1399,1393,1392,1400,-1400,1392,1397,1401,-1401,1397,1396,1402,-1402,1396,1395,1403,-1403,1397,1392,1393,1394,1395,-1397,1302,1307,1306,1305,1304,-1304,1319,1314,1404,-1410,1314,1315,1405,-1405,1315,1316,1406,-1406,1316,1317,1407,-1407,1317,1318,1408,-1408,1318,1319,1409,-1409
- }
- Edges: *2437 {
- a: 652,127,2,135,143,3,660,151,7,8,11,14,167,175,15,672,183,187,195,684,18,199,692,19,207,22,215,223,23,700,231,27,28,31,34,247,255,35,712,263,267,275,724,38,279,732,39,287,42,295,303,43,740,311,47,48,51,54,327,335,55,752,343,347,355,764,58,359,772,59,367,817,809,813,424,429,436,440,444,63,448,452,456,432,821,782,60,808,812,816,830,508,824,533,529,836,545,541,842,557,553,850,500,496,826,68,65,72,64,76,73,67,614,868,80,622,82,87,630,634,83,645,94,89,91,88,90,892,101,100,99,103,107,114,109,111,108,110,904,118,117,119,116,916,130,121,123,126,122,120,124,146,133,132,139,136,138,142,134,148,150,149,156,155,154,159,163,178,165,164,171,168,170,174,166,180,182,181,185,191,188,194,186,210,197,196,203,206,202,200,198,226,213,212,219,216,218,222,214,228,230,229,236,235,234,239,243,258,245,244,251,248,250,254,246,260,262,261,265,271,268,274,266,290,277,276,283,286,282,280,278,306,293,292,299,296,298,302,294,308,310,309,316,315,314,319,323,338,325,324,331,328,330,334,326,340,342,341,345,351,348,354,346,370,357,356,363,366,362,360,358,375,372,925,378,377,379,376,937,386,381,383,945,382,380,473,465,469,957,578,982,394,393,392,398,397,396,388,391,390,389,410,406,414,395,399,477,978,418,403,401,400,565,408,412,416,415,411,407,405,420,428,431,435,439,443,433,449,451,455,459,467,471,475,479,466,464,468,472,577,958,483,487,491,956,503,506,497,515,513,512,962,519,517,514,960,528,526,518,532,540,538,527,530,552,550,539,542,502,498,504,499,524,536,548,501,373,481,569,582,580,993,973,374,486,490,482,494,566,573,579,585,596,595,592,599,591,602,604,594,611,612,613,615,619,620,617,625,626,627,628,632,618,637,647,648,0,656,4,664,6,12,668,674,676,680,16,688,20,696,24,704,26,32,708,714,716,720,36,728,40,736,44,744,46,52,748,754,756,760,56,768,778,775,786,790,780,798,802,62,810,520,837,840,848,856,828,69,866,870,86,874,92,888,96,896,98,112,900,906,908,912,128,923,927,929,933,384,941,950,422,583,522,575,561,987,646,649,653,657,1,661,5,10,665,669,13,673,677,681,685,689,17,693,697,21,701,25,30,705,709,33,713,717,721,725,729,37,733,
- 737,41,741,45,50,745,749,53,753,757,761,765,769,57,773,776,779,783,787,791,795,799,803,61,807,811,815,819,823,827,831,835,838,841,845,849,853,857,861,66,70,74,78,865,81,869,85,873,877,881,885,889,93,893,97,106,897,901,113,905,909,913,917,129,922,926,930,934,938,942,385,402,421,425,430,951,955,959,963,967,521,972,562,572,976,980,576,984,584,988,992,1011,999,1007,1002,1001,998,996,1003,997,1005,1012,1000,1023,1027,1319,1031,1323,1327,1035,1039,1331,1043,1047,1051,1055,1335,1059,1063,1067,1339,1071,1343,1347,1075,1079,1351,1083,1087,1091,1095,1355,1099,1103,1107,1359,1111,1363,1367,1115,1119,1371,1123,1127,1131,1135,1375,1139,1143,1147,1379,1151,1383,1387,1155,1159,1391,1163,1167,1171,1175,1395,1179,1183,1187,1191,1195,1399,1199,1200,1204,1208,1216,1220,1224,1423,1228,1232,1236,1419,1212,1248,1256,1252,1265,1261,1273,1269,1281,1277,1289,1285,1244,1240,1590,1459,1463,1455,1467,1300,1304,1475,1308,1312,1471,1316,1020,1022,1028,1030,1324,1032,1034,1040,1042,1046,1052,1054,1060,1062,1068,1070,1344,1072,1074,1080,1082,1086,1092,1094,1100,1102,1108,1110,1364,1112,1114,1120,1122,1126,1132,1134,1140,1142,1148,1150,1384,1152,1154,1160,1162,1166,1172,1174,1180,1182,1186,1192,1194,1435,1427,1431,1443,1296,1451,1407,1403,1411,1439,1447,1415,1408,1404,1402,1203,1207,1211,1219,1223,1213,1231,1235,1239,1426,1430,1434,1295,1444,1442,1260,1268,1276,1284,1245,1458,1297,1301,1307,1305,1320,1026,1328,1332,1038,1050,1336,1058,1340,1066,1348,1352,1078,1090,1356,1098,1360,1106,1368,1372,1118,1130,1376,1138,1380,1146,1388,1392,1158,1170,1396,1178,1190,1400,1198,1412,1201,1215,1229,1428,1247,1241,1255,1253,1262,1270,1278,1243,1293,1454,1462,1456,1299,1313,1472,1021,1025,1317,1029,1321,1325,1033,1037,1329,1041,1045,1049,1053,1057,1333,1061,1065,1337,1069,1341,1345,1073,1077,1349,1081,1085,1089,1093,1097,1353,1101,1105,1357,1109,1361,1365,1113,1117,1369,1121,1125,1129,1133,1137,1373,1141,1145,1377,1149,1381,1385,1153,1157,1389,1161,1165,1169,1173,1177,1393,1181,1185,1189,1193,1197,1397,1401,1405,1409,1413,1417,1202,1206,1210,1214,1218,1222,1226,
- 1230,1234,1238,1421,1425,1429,1433,1437,1441,1242,1246,1250,1254,1259,1263,1267,1271,1275,1279,1283,1287,1291,1445,1449,1294,1479,1453,1457,1461,1465,1298,1469,1302,1473,1306,1310,1314,1477,1482,1485,1490,1494,1498,1502,1505,1510,1514,1518,1522,1525,1530,1534,1538,1542,1545,1550,1554,1558,1562,1566,1588,1592,1596,1600,1604,1586,1257,1614,1619,1613,1617,1616,1615,1618,1612,1258,1621,1623,1620,1622,1624,1627,1625,1628,1634,1632,1631,1686,1642,1646,1643,1647,1638,1636,1635,1641,1640,1645,1649,1665,1662,1652,1658,1651,1676,1672,1668,1670,1654,1653,1659,1663,1655,1660,1656,1690,1633,1683,1687,1694,1707,1699,1703,1711,1702,1706,1710,1700,1713,1701,1705,1709,1737,1717,1721,1724,1729,1733,1760,1756,1752,1748,1768,1764,1716,1718,1722,1725,1730,1734,1745,1746,1749,1750,1753,1754,1757,1758,1761,1762,1747,1766,1770,1774,1719,1778,1715,1782,1735,1786,1731,1772,1727,1726,1832,1828,1824,1820,1840,1836,1794,1796,1800,1803,1808,1812,1817,1821,1797,1825,1793,1829,1813,1833,1809,1819,1805,1804,1880,1876,1872,1868,1888,1884,1842,1844,1848,1851,1856,1860,1865,1869,1845,1873,1841,1877,1861,1881,1857,1867,1853,1852,1928,1924,1920,1916,1936,1932,1890,1892,1896,1899,1904,1908,1913,1917,1893,1921,1889,1925,1909,1929,1905,1915,1901,1900,1976,1972,1968,1964,1984,1980,1938,1940,1944,1947,1952,1956,1961,1965,1941,1969,1937,1973,1957,1977,1953,1963,1949,1948,2024,2020,2016,2012,2032,2028,1986,1988,1992,1995,2000,2004,2009,2013,1989,2017,1985,2021,2005,2025,2001,2011,1997,1996,2072,2068,2064,2060,2080,2076,2034,2036,2040,2043,2048,2052,2057,2061,2037,2065,2033,2069,2053,2073,2049,2059,2045,2044,2120,2116,2112,2108,2128,2124,2082,2084,2088,2091,2096,2100,2105,2109,2085,2113,2081,2117,2101,2121,2097,2107,2093,2092,2168,2164,2160,2156,2176,2172,2130,2132,2136,2139,2144,2148,2153,2157,2133,2161,2129,2165,2149,2169,2145,2155,2141,2140,2216,2212,2208,2204,2224,2220,2178,2180,2184,2187,2192,2196,2201,2205,2181,2209,2177,2213,2197,2217,2193,2203,2189,2188,2264,2260,2256,2252,2272,2268,2226,2228,2232,2235,2240,2244,2249,2253,2229,2257,2225,2261,2245,2265,
- 2241,2251,2237,2236,2312,2308,2304,2300,2320,2316,2274,2276,2280,2283,2288,2292,2297,2301,2277,2305,2273,2309,2293,2313,2289,2299,2285,2284,2360,2356,2352,2348,2368,2364,2322,2324,2328,2331,2336,2340,2345,2349,2325,2353,2321,2357,2341,2361,2337,2347,2333,2332,2408,2404,2400,2396,2416,2412,2370,2372,2376,2379,2384,2388,2393,2397,2373,2401,2369,2405,2389,2409,2385,2395,2381,2380,2449,2445,2441,2461,2457,2453,2418,2420,2424,2427,2432,2436,2442,2446,2421,2450,2417,2454,2437,2458,2433,2444,2429,2428,2493,2473,2477,2480,2485,2489,2516,2512,2508,2504,2524,2520,2472,2474,2478,2481,2486,2490,2501,2502,2505,2506,2509,2510,2513,2514,2517,2518,2503,2522,2526,2530,2475,2534,2471,2538,2491,2542,2487,2528,2483,2482,2588,2584,2580,2576,2596,2592,2550,2552,2556,2559,2564,2568,2573,2577,2553,2581,2549,2585,2569,2589,2565,2575,2561,2560,2636,2632,2628,2624,2644,2640,2598,2600,2604,2607,2612,2616,2621,2625,2601,2629,2597,2633,2617,2637,2613,2623,2609,2608,2684,2680,2676,2672,2692,2688,2646,2648,2652,2655,2660,2664,2669,2673,2649,2677,2645,2681,2665,2685,2661,2671,2657,2656,2732,2728,2724,2720,2740,2736,2694,2696,2700,2703,2708,2712,2717,2721,2697,2725,2693,2729,2713,2733,2709,2719,2705,2704,2780,2776,2772,2768,2788,2784,2742,2744,2748,2751,2756,2760,2765,2769,2745,2773,2741,2777,2761,2781,2757,2767,2753,2752,2828,2824,2820,2816,2836,2832,2790,2792,2796,2799,2804,2808,2813,2817,2793,2821,2789,2825,2809,2829,2805,2815,2801,2800,2876,2872,2868,2864,2884,2880,2838,2840,2844,2847,2852,2856,2861,2865,2841,2869,2837,2873,2857,2877,2853,2863,2849,2848,2924,2920,2916,2912,2932,2928,2886,2888,2892,2895,2900,2904,2909,2913,2889,2917,2885,2921,2905,2925,2901,2911,2897,2896,2972,2968,2964,2960,2980,2976,2934,2936,2940,2943,2948,2952,2957,2961,2937,2965,2933,2969,2953,2973,2949,2959,2945,2944,3020,3016,3012,3008,3028,3024,2982,2984,2988,2991,2996,3000,3005,3009,2985,3013,2981,3017,3001,3021,2997,3007,2993,2992,3068,3064,3060,3056,3076,3072,3030,3032,3036,3039,3044,3048,3053,3057,3033,3061,3029,3065,3049,3069,3045,3055,3041,3040,3116,3112,3108,3104,
- 3124,3120,3078,3080,3084,3087,3092,3096,3101,3105,3081,3109,3077,3113,3097,3117,3093,3103,3089,3088,3164,3160,3156,3152,3172,3168,3126,3128,3132,3135,3140,3144,3149,3153,3129,3157,3125,3161,3145,3165,3141,3151,3137,3136,3205,3201,3197,3217,3213,3209,3174,3176,3180,3183,3188,3192,3198,3202,3177,3206,3173,3210,3193,3214,3189,3200,3185,3184,3249,3229,3233,3236,3241,3245,3272,3268,3264,3260,3280,3276,3228,3230,3234,3237,3242,3246,3257,3258,3261,3262,3265,3266,3269,3270,3273,3274,3259,3278,3282,3286,3231,3290,3227,3294,3247,3298,3243,3284,3239,3238,3344,3340,3336,3332,3352,3348,3306,3308,3312,3315,3320,3324,3329,3333,3309,3337,3305,3341,3325,3345,3321,3331,3317,3316,3392,3388,3384,3380,3400,3396,3354,3356,3360,3363,3368,3372,3377,3381,3357,3385,3353,3389,3373,3393,3369,3379,3365,3364,3440,3436,3432,3428,3448,3444,3402,3404,3408,3411,3416,3420,3425,3429,3405,3433,3401,3437,3421,3441,3417,3427,3413,3412,3488,3484,3480,3476,3496,3492,3450,3452,3456,3459,3464,3468,3473,3477,3453,3481,3449,3485,3469,3489,3465,3475,3461,3460,3536,3532,3528,3524,3544,3540,3498,3500,3504,3507,3512,3516,3521,3525,3501,3529,3497,3533,3517,3537,3513,3523,3509,3508,3584,3580,3576,3572,3592,3588,3546,3548,3552,3555,3560,3564,3569,3573,3549,3577,3545,3581,3565,3585,3561,3571,3557,3556,3632,3628,3624,3620,3640,3636,3594,3596,3600,3603,3608,3612,3617,3621,3597,3625,3593,3629,3613,3633,3609,3619,3605,3604,3680,3676,3672,3668,3688,3684,3642,3644,3648,3651,3656,3660,3665,3669,3645,3673,3641,3677,3661,3681,3657,3667,3653,3652,3728,3724,3720,3716,3736,3732,3690,3692,3696,3699,3704,3708,3713,3717,3693,3721,3689,3725,3709,3729,3705,3715,3701,3700,3776,3772,3768,3764,3784,3780,3738,3740,3744,3747,3752,3756,3761,3765,3741,3769,3737,3773,3757,3777,3753,3763,3749,3748,3824,3820,3816,3812,3832,3828,3786,3788,3792,3795,3800,3804,3809,3813,3789,3817,3785,3821,3805,3825,3801,3811,3797,3796,3872,3868,3864,3860,3880,3876,3834,3836,3840,3843,3848,3852,3857,3861,3837,3865,3833,3869,3853,3873,3849,3859,3845,3844,3920,3916,3912,3908,3928,3924,3882,3884,3888,3891,3896,3900,
- 3905,3909,3885,3913,3881,3917,3901,3921,3897,3907,3893,3892,3961,3957,3953,3973,3969,3965,3930,3932,3936,3939,3944,3948,3954,3958,3933,3962,3929,3966,3949,3970,3945,3956,3941,3940,4005,3985,3989,3992,3997,4001,4022,4018,4014,4010,4030,4026,3984,3986,3990,3993,3998,4002,4007,4008,4011,4012,4015,4016,4019,4020,4023,4024,4009,4028,4070,4066,4062,4058,4078,4074,4032,4034,4038,4041,4046,4050,4055,4059,4035,4063,4031,4067,4051,4071,4047,4057,4043,4042,4118,4114,4110,4106,4126,4122,4080,4082,4086,4089,4094,4098,4103,4107,4083,4111,4079,4115,4099,4119,4095,4105,4091,4090,4166,4162,4158,4154,4174,4170,4128,4130,4134,4137,4142,4146,4151,4155,4131,4159,4127,4163,4147,4167,4143,4153,4139,4138,4214,4210,4206,4202,4222,4218,4176,4178,4182,4185,4190,4194,4199,4203,4179,4207,4175,4211,4195,4215,4191,4201,4187,4186,4262,4258,4254,4250,4270,4266,4224,4226,4230,4233,4238,4242,4247,4251,4227,4255,4223,4259,4243,4263,4239,4249,4235,4234,4310,4306,4302,4298,4318,4314,4272,4274,4278,4281,4286,4290,4295,4299,4275,4303,4271,4307,4291,4311,4287,4297,4283,4282,4351,4347,4343,4363,4359,4355,4320,4322,4326,4329,4334,4338,4344,4348,4323,4352,4319,4356,4339,4360,4335,4346,4331,4330,4380,4384,3987,4388,3983,4392,4003,4396,3999,4382,3995,3994
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *13209 {
- a: 0.643245756626129,0.765659749507904,0,0.643245577812195,0.765659987926483,0,0.64324563741684,0.765659987926483,0,0.643245756626129,0.765659749507904,0,0.765639185905457,-0.643270254135132,6.86655994286411e-008,0.765639901161194,-0.643269419670105,0,0.765639960765839,-0.643269419670105,0,0.765639245510101,-0.643270194530487,6.86655994286411e-008,0.643177092075348,0.765717506408691,0,0.643177092075348,0.765717506408691,0,0.643176794052124,0.765717685222626,0,0.643176853656769,0.765717685222626,0,0.643211662769318,0.765688478946686,0,0.643212258815765,0.765688002109528,0,0.643212199211121,0.765688002109528,0,0.643211662769318,0.765688478946686,0,0.643294632434845,0.765618741512299,-5.39475237815168e-008,0.64329469203949,0.765618681907654,-2.42290525420685e-007,0.643294751644135,0.765618681907654,-2.42290525420685e-007,0.643294632434845,0.765618681907654,-5.39475095706621e-008,0.643187642097473,0.76570850610733,-5.07274471317487e-008,0.643189370632172,0.7657071352005,-1.88553244129253e-007,0.643189370632172,0.7657071352005,-1.88553244129253e-007,0.643187701702118,0.76570862531662,-5.07274542371761e-008,0.765660762786865,-0.643244683742523,0,0.76566070318222,-0.643244683742523,0,0.765660643577576,-0.643244624137878,0,0.765660762786865,-0.643244683742523,0,0.643256902694702,0.765650451183319,-4.82911346466608e-008,0.643256902694702,0.765650451183319,-4.82911381993745e-008,0.643254339694977,0.765652596950531,-1.58754232870706e-007,0.643254280090332,0.765652596950531,-1.58754232870706e-007,0.643291354179382,0.765621542930603,-4.65977763042247e-008,0.643292844295502,0.765620231628418,-1.41822710020278e-007,0.643292784690857,0.765620291233063,-1.41822695809424e-007,0.643291294574738,0.765621542930603,-4.6597772751511e-008,0.64336633682251,0.765558362007141,0,0.643367648124695,0.765557408332825,0,0.64336770772934,0.76555734872818,0,0.64336633682251,0.765558362007141,0,0.643195569515228,0.76570200920105,0,0.643195986747742,0.765701532363892,0,0.643195986747742,0.765701472759247,0,0.643195569515228,0.76570200920105,0,
- 0.765660107135773,-0.643245398998261,0,0.765660226345062,-0.643245220184326,0,0.765660166740417,-0.643245160579681,0,0.765660107135773,-0.643245398998261,0,0.643340766429901,0.765579879283905,0,0.643340766429901,0.765579879283905,0,0.643340229988098,0.765580415725708,0,0.643340170383453,0.765580356121063,0,0.643204033374786,0.765694797039032,0,0.643204927444458,0.76569402217865,0,0.643204867839813,0.765694081783295,0,0.643204033374786,0.765694797039032,0,0.643241584300995,0.765663206577301,1.19711486945562e-007,0.64324164390564,0.765663206577301,1.19711501156416e-007,0.643241584300995,0.765663266181946,1.19711501156416e-007,0.64324164390564,0.765663266181946,1.19711501156416e-007,0.796314001083374,-0.604883551597595,0,0.796313941478729,-0.604883551597595,0,0.796313881874084,-0.604883551597595,0,0.796314001083374,-0.604883551597595,0,0.00245103752240539,-0.999997019767761,0,0.00245103752240539,-0.999997019767761,0,0.00245103682391346,-0.999996960163116,0,0.00245103659108281,-0.999996960163116,0,-0.999996781349182,-0.00255709979683161,0,-0.999996781349182,-0.00255709979683161,0,-0.999996781349182,-0.00255689350888133,0,-0.999996721744537,-0.00255689350888133,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,1.1526570915521e-006,-1,0,0,-0.966664373874664,-0.256046742200851,0,-0.919905602931976,-0.392139822244644,9.22558626825776e-007,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0.643300712108612,0.765613675117493,0,0.643300712108612,0.765613615512848,0,0.643300652503967,0.765613615512848,0,0.643300712108612,0.765613675117493,0,0.765669584274292,-0.643234133720398,0,0.765669465065002,-0.643234133720398,0,0.765669465065002,-0.643234133720398,0,0.765669584274292,-0.643234133720398,0,0,0,1,0,0,1,0,0,1,0,0,1,0.64332515001297,0.76559317111969,0,0.64332515001297,0.76559317111969,0,0.643325090408325,0.765593111515045,0,0.643325090408325,0.765593111515045,0,0,0,1,0,0,1,0,0,1,0,0,1,0.643231511116028,0.765671789646149,0,0.643231511116028,0.765671789646149,0,0.643231511116028,0.765671849250793,0,0.643231511116028,0.765671789646149,0,
- 0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.643349289894104,-0.765572786331177,0,-0.643349230289459,-0.765572786331177,0,-0.643349230289459,-0.765572786331177,0,-0.643349289894104,-0.765572786331177,0,0.643286764621735,0.765625298023224,0,0.643286764621735,0.765625238418579,0,0.643286764621735,0.765625357627869,0,0.643286764621735,0.765625298023224,0,0.765652298927307,-0.643254637718201,0,0.765652358531952,-0.643254697322845,0,0.765652358531952,-0.643254697322845,0,0.765652298927307,-0.643254637718201,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643229842185974,-0.765673100948334,8.13818019196333e-007,-0.643232941627502,-0.765670537948608,9.0206231107004e-007,-0.643233001232147,-0.765670478343964,9.02062367913459e-007,-0.643229961395264,-0.765673100948334,8.13818076039752e-007,0.643245816230774,0.765659749507904,0,0.643245756626129,0.765659749507904,0,0.643245756626129,0.765659749507904,0,0.643245816230774,0.765659749507904,0,-0.64322304725647,-0.765678942203522,-1.19653350338922e-007,-0.643221318721771,-0.765680193901062,-1.38810761995956e-007,-0.643221318721771,-0.765680253505707,-1.3881077620681e-007,-0.64322304725647,-0.765678942203522,-1.19653350338922e-007,0.765639066696167,-0.643270254135132,7.73384556396195e-008,0.765639185905457,-0.643270254135132,6.86655994286411e-008,0.765639245510101,-0.643270194530487,6.86655994286411e-008,0.765639185905457,-0.643270373344421,7.73384627450469e-008,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0.643177032470703,0.765717446804047,0,0.643177032470703,0.765717446804047,0,0.643177092075348,0.765717506408691,0,0.643177092075348,0.765717506408691,0,0.765646040439606,-0.643262207508087,-5.11363040800461e-008,0.76564610004425,-0.643262088298798,-6.06210406317587e-008,0.76564610004425,-0.643261969089508,-6.06210406317587e-008,0.765645980834961,-0.643262088298798,-5.11362969746187e-008,0,0,1,0,0,1,0,0,1,0,0,1,-0.643192708492279,-0.765704214572906,-5.65918618633532e-008,-0.643193066120148,-0.765704035758972,-6.93974726573288e-008,-0.643193125724792,-0.765703976154327,-6.93974655519014e-008,
- -0.643192708492279,-0.765704214572906,-5.65918618633532e-008,0.643211483955383,0.765688538551331,0,0.643211662769318,0.765688478946686,0,0.643211662769318,0.765688478946686,0,0.643211483955383,0.765688538551331,0,0.643241405487061,0.76566344499588,-5.65264315355307e-008,0.64324164390564,0.765663146972656,0,0.64324164390564,0.765663146972656,0,0.643241465091705,0.76566344499588,-5.65264528518128e-008,0.765656888484955,-0.643249154090881,0,0.7656569480896,-0.643249154090881,0,0.7656569480896,-0.643249154090881,0,0.765656888484955,-0.643249154090881,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643290579319,-0.765622138977051,0,-0.643290519714355,-0.765622019767761,0,-0.643290519714355,-0.765622019767761,0,-0.643290579319,-0.765622138977051,0,0.765642762184143,-0.643266022205353,3.70818398209849e-008,0.765642821788788,-0.643265902996063,0,0.765642821788788,-0.643265902996063,0,0.765642702579498,-0.643266022205353,3.70818504791259e-008,0,0,1,0,0,1,0,0,1,0,0,1,-0.643353521823883,-0.76556932926178,0,-0.643353402614594,-0.76556932926178,0,-0.643353402614594,-0.76556932926178,0,-0.643353521823883,-0.76556932926178,0,0.6432945728302,0.765618681907654,0,0.643294632434845,0.765618741512299,-5.39475237815168e-008,0.643294632434845,0.765618681907654,-5.39475095706621e-008,0.6432945728302,0.765618681907654,0,0.765651047229767,-0.64325624704361,0,0.765651166439056,-0.643256068229675,0,0.765651166439056,-0.643256068229675,0,0.765651047229767,-0.64325624704361,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643186450004578,-0.765709578990936,-4.83186681776715e-008,-0.643187046051025,-0.765709161758423,0,-0.643187046051025,-0.765709161758423,0,-0.643186509609222,-0.765709578990936,-4.83186717303852e-008,0.643187046051025,0.765709161758423,0,0.643187642097473,0.76570850610733,-5.07274471317487e-008,0.643187701702118,0.76570862531662,-5.07274542371761e-008,0.643187046051025,0.765709161758423,0,-0.643195509910584,-0.76570200920105,0,-0.64319521188736,-0.765702247619629,0,-0.64319521188736,-0.765702247619629,0,-0.643195509910584,-0.76570200920105,0,0.765660762786865,-0.643244624137878,0,
- 0.765660762786865,-0.643244683742523,0,0.765660762786865,-0.643244683742523,0,0.765660762786865,-0.643244624137878,0,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0.643258035182953,0.765649437904358,0,0.643258035182953,0.765649437904358,0,0.643256902694702,0.765650451183319,-4.82911381993745e-008,0.643256902694702,0.765650451183319,-4.82911346466608e-008,0.765656113624573,-0.643250048160553,2.00296650376686e-008,0.765656471252441,-0.643249750137329,0,0.765656471252441,-0.643249750137329,0,0.765656173229218,-0.643250048160553,2.00296685903822e-008,0,0,1,0,0,1,0,0,1,0,0,1,-0.643227934837341,-0.765674769878387,0,-0.643227696418762,-0.765674889087677,0,-0.643227696418762,-0.765674889087677,0,-0.643227934837341,-0.765674769878387,0,0.643290519714355,0.765622019767761,0,0.643291354179382,0.765621542930603,-4.65977763042247e-008,0.643291294574738,0.765621542930603,-4.6597772751511e-008,0.643290519714355,0.765622019767761,0,0.64325362443924,0.765653133392334,0,0.643253922462463,0.76565283536911,0,0.643253922462463,0.76565283536911,0,0.64325362443924,0.765653133392334,0,0.765649914741516,-0.643257558345795,0,0.765649855136871,-0.643257617950439,0,0.765649855136871,-0.643257617950439,0,0.765649914741516,-0.643257558345795,0,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,-0.643170714378357,-0.765722751617432,0,-0.643170714378357,-0.765722811222076,0,-0.643170714378357,-0.765722811222076,0,-0.643170714378357,-0.765722751617432,0,0.765652656555176,-0.643254280090332,0,0.765652477741241,-0.643254399299622,0,0.765652477741241,-0.643254399299622,0,0.765652656555176,-0.643254280090332,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643352627754211,-0.765569984912872,0,-0.643353402614594,-0.76556932926178,0,-0.643353402614594,-0.76556932926178,0,-0.643352627754211,-0.765569984912872,0,0.643365621566772,0.765559136867523,0,0.64336633682251,0.765558362007141,0,0.64336633682251,0.765558362007141,0,0.643365621566772,0.765559136867523,0,0.765648543834686,-0.643259227275848,0,0.765648722648621,-0.643258929252625,0,0.765648722648621,-0.643258929252625,0,0.765648543834686,-0.643259227275848,0,
- 0,0,1,0,0,1,0,0,1,0,0,1,-0.643179535865784,-0.765715420246124,0,-0.643178939819336,-0.765715956687927,0,-0.643178939819336,-0.765715956687927,0,-0.643179535865784,-0.765715420246124,0,0.64319521188736,0.765702247619629,0,0.643195569515228,0.76570200920105,0,0.643195569515228,0.76570200920105,0,0.64319521188736,0.765702247619629,0,-0.643276631832123,-0.765633702278137,0,-0.643278300762177,-0.765632390975952,0,-0.643278300762177,-0.765632390975952,0,-0.643276631832123,-0.765633702278137,0,0.765659987926483,-0.64324551820755,0,0.765660107135773,-0.643245398998261,0,0.765660107135773,-0.643245398998261,0,0.765659987926483,-0.64324551820755,0,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0.643341243267059,0.765579640865326,0,0.643341243267059,0.765579640865326,0,0.643340766429901,0.765579879283905,0,0.643340766429901,0.765579879283905,0,0.765627682209015,-0.643283903598785,0,0.765627562999725,-0.643284142017365,0,0.765627562999725,-0.643284142017365,0,0.765627682209015,-0.643283903598785,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.643291294574738,-0.765621483325958,0,-0.643292307853699,-0.765620648860931,0,-0.643292307853699,-0.765620648860931,0,-0.643291294574738,-0.765621483325958,0,0.643203318119049,0.765695452690125,0,0.643204033374786,0.765694797039032,0,0.643204033374786,0.765694797039032,0,0.643203318119049,0.765695452690125,0,0.643258035182953,0.765649437904358,0,0.643258035182953,0.765649437904358,0,0.643258035182953,0.765649437904358,0,0.643258035182953,0.765649437904358,0,0.765637874603271,-0.643271863460541,0,0.765637874603271,-0.643271863460541,0,0.765637874603271,-0.643271863460541,0,0.765637874603271,-0.643271863460541,0,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,-0.643225371837616,-0.76567679643631,0,-0.643225371837616,-0.76567679643631,0,-0.643225371837616,-0.76567679643631,0,-0.643225371837616,-0.76567679643631,0,0.76565021276474,-0.643257021903992,0,0.76565021276474,-0.643257021903992,0,0.76565021276474,-0.643257021903992,0,0.76565021276474,-0.643257021903992,0,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,-0.643278300762177,-0.765632390975952,0,
- -0.643278300762177,-0.765632390975952,0,-0.643278300762177,-0.765632390975952,0,-0.643278300762177,-0.765632390975952,0,0.64323353767395,0.765669941902161,1.12782238659292e-007,0.64323353767395,0.765669941902161,1.12782238659292e-007,0.643233597278595,0.765669941902161,1.12782238659292e-007,0.643233597278595,0.765669941902161,1.12782252870147e-007,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0.643319010734558,0.765598177909851,0,0.643319010734558,0.765598177909851,0,0.643319010734558,0.765598237514496,0,0.643319010734558,0.765598177909851,0,-2.69121246674331e-005,2.1504529286176e-005,1,-2.69121264864225e-005,2.15045311051654e-005,1,-2.69121246674331e-005,2.1504529286176e-005,1,-2.69121228484437e-005,2.1504529286176e-005,1,0,0,1,0,0,1,0,0,1,0,0,1,0.000399746146285906,-0.000335847289534286,0.999999821186066,0.000399746117182076,-0.000335847347741947,0.99999988079071,0.000399746146285906,-0.000335847347741947,0.99999988079071,0.000399746146285906,-0.000335847347741947,0.999999821186066,-0.000815646257251501,-0.000519482942763716,-0.999999582767487,0.000317493133479729,0.000229971657972783,-0.99999988079071,0.00539170764386654,0.00358604011125863,-0.999979019165039,0.00539170717820525,0.00358603987842798,-0.999978959560394,0.000317493133479729,0.000229971657972783,-0.99999988079071,-0.000815646257251501,-0.000519482942763716,-0.999999582767487,-0.00252710725180805,-0.00165143806952983,-0.999995529651642,-0.00252710725180805,-0.00165143795311451,-0.999995470046997,-0.764495849609375,0.644628584384918,1.03283628050121e-006,-0.764499723911285,0.644624054431915,1.02943170077197e-006,-0.765656113624573,0.643250167369843,0,-0.765655994415283,0.643250167369843,0,0.000896400539204478,0.000567816896364093,0.999999403953552,-0.000593602017033845,-0.000417551782447845,0.999999701976776,0.00321463006548584,0.00210090912878513,0.999992609024048,0.00321462983265519,0.00210090912878513,0.999992549419403,0.765233814716339,-0.643752455711365,-7.17494231139426e-007,0.76523232460022,-0.643754243850708,-7.19996194220585e-007,
- 0.765656411647797,-0.643249809741974,0,0.765656352043152,-0.643249690532684,0,0.765612065792084,-0.643302619457245,0,0.765612006187439,-0.6433025598526,0,0.765612006187439,-0.6433025598526,0,0.765612065792084,-0.643302619457245,0,-0.643296003341675,-0.765617609024048,0,-0.643296003341675,-0.765617668628693,0,-0.643295884132385,-0.765617549419403,0,-0.643296003341675,-0.765617668628693,0,-0.643296003341675,-0.765617668628693,0,-0.765659093856812,0.643246531486511,0,-0.765659749507904,0.643245756626129,0,-0.765659749507904,0.643245756626129,0,0.765657901763916,-0.643247902393341,2.77430238782017e-008,0.765657901763916,-0.643247961997986,2.77430238782017e-008,0.765657782554626,-0.643247961997986,0,0.765657782554626,-0.643247961997986,0,-0.643237292766571,-0.765666902065277,5.22962793070292e-008,-0.643237233161926,-0.765666961669922,5.23520640172137e-008,-0.643237054347992,-0.765667080879211,0,-0.643236994743347,-0.765667021274567,0,-0.765638053417206,0.643271684646606,0,-0.765638053417206,0.643271684646606,0,-0.765637934207916,0.643271684646606,0,-0.765637934207916,0.643271684646606,0,0.643247067928314,0.765658617019653,0,0.643247067928314,0.765658676624298,0,0.643247187137604,0.765658617019653,0,0.643247187137604,0.765658557415009,0,-0.642570436000824,-0.766226589679718,-3.02275005026331e-008,-0.642570436000824,-0.766226589679718,-3.02274969499194e-008,-0.642569899559021,-0.766227006912231,0,-0.642569839954376,-0.766227066516876,0,-0.765646755695343,0.643261134624481,2.56397250097962e-008,-0.765646815299988,0.643261253833771,2.5639726786153e-008,-0.765646874904633,0.643261015415192,0,-0.765646874904633,0.643261015415192,0,0.642555832862854,0.766238868236542,0,0.642555832862854,0.766238868236542,0,0.642555892467499,0.766238749027252,0,0.642555892467499,0.766238808631897,0,0.796313941478729,-0.60488349199295,0,0.796314001083374,-0.604883551597595,0,0.796314001083374,-0.604883551597595,0,0.796313941478729,-0.60488349199295,0,0.00165405822917819,-0.00117134302854538,0.999998033046722,-3.05173557535454e-008,0,1,-3.05173557535454e-008,0,1,
- 0.000789779413025826,-0.000559303909540176,0.999999523162842,-0.763160765171051,0.646208763122559,0,-0.765637278556824,0.643272459506989,0,-0.765637278556824,0.643272459506989,0,-0.763160765171051,0.646208643913269,0,-0.00078980706166476,0.000559303909540176,-0.999999523162842,3.05173557535454e-008,0,-1,3.05173557535454e-008,0,-1,-0.00165411632042378,0.00117134302854538,-0.999998033046722,0.768290579319,-0.640101194381714,0,0.765636265277863,-0.643273591995239,0,0.765636265277863,-0.643273591995239,0,0.768292248249054,-0.640099227428436,0,0.00165405822917819,-0.00117134302854538,0.999998033046722,0.000789779413025826,-0.000559303909540176,0.999999523162842,0.00372897111810744,-0.00264069228433073,0.999989569187164,0.00372897111810744,-0.00264069228433073,0.999989569187164,-0.763160765171051,0.646208763122559,0,-0.763160765171051,0.646208643913269,0,-0.758573532104492,0.651587426662445,0,-0.758573532104492,0.651587426662445,0,-0.00078980706166476,0.000559303909540176,-0.999999523162842,-0.00165411632042378,0.00117134302854538,-0.999998033046722,-0.00372910173609853,0.00264069228433073,-0.999989569187164,-0.00372910173609853,0.00264069228433073,-0.999989569187164,0.768290579319,-0.640101194381714,0,0.768292248249054,-0.640099227428436,0,0.773372352123261,-0.633952140808105,0,0.773372352123261,-0.633952140808105,0,-0.765752911567688,0.643134891986847,5.87838599130919e-007,-0.765750706195831,0.643137395381927,1.02864748896536e-006,-0.765752196311951,0.643135666847229,9.8568887096917e-007,-0.765753865242004,0.643133759498596,5.31228636191372e-007,0.765748739242554,-0.643139839172363,-1.81992504622031e-006,0.765750527381897,-0.643137812614441,-1.04046841897798e-006,0.765751838684082,-0.643136084079742,-7.14834868631442e-007,0.765751123428345,-0.643137037754059,-1.32637273964065e-006,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,-0.643138110637665,-0.765750169754028,1.37898325647257e-006,-0.64313817024231,-0.765750169754028,1.37898211960419e-006,-0.643139839172363,-0.765748679637909,1.04414630186511e-006,-0.643139839172363,-0.765748620033264,1.04414618817827e-006,
- 0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0.765756011009216,-0.643131196498871,1.53398332258803e-007,0.765752196311951,-0.643135666847229,3.52643581891243e-007,0.765753388404846,-0.643134295940399,2.57613038456839e-007,0.765754103660584,-0.643133401870728,1.95568816252489e-007,0.765755653381348,-0.643131494522095,1.77065743400817e-007,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,-0.765756189823151,0.643130898475647,9.09481343569496e-008,-0.765757262706757,0.643129825592041,-2.54268357480214e-008,-0.765757441520691,0.643129646778107,0,-0.765755832195282,0.64313131570816,1.06010737965789e-007,0.765757203102112,-0.643129765987396,0,0.765756011009216,-0.643131196498871,1.53398332258803e-007,0.765755653381348,-0.643131494522095,1.77065743400817e-007,0.765757322311401,-0.643129646778107,0,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,-0.765757262706757,0.643129825592041,-2.54268357480214e-008,-0.765755593776703,0.643131792545319,-2.18955626962725e-008,-0.765755474567413,0.643131732940674,0,-0.765757441520691,0.643129646778107,0,0.765754103660584,-0.643133521080017,0,0.765757203102112,-0.643129765987396,0,0.765757322311401,-0.643129646778107,0,0.765754163265228,-0.643133401870728,0,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,-0.765755593776703,0.643131792545319,-2.18955626962725e-008,-0.765752911567688,0.643134891986847,5.87838599130919e-007,-0.765753865242004,0.643133759498596,5.31228636191372e-007,-0.765755474567413,0.643131732940674,0,0.765750527381897,-0.643137812614441,-1.04046841897798e-006,0.765754103660584,-0.643133521080017,0,0.765754163265228,-0.643133401870728,0,0.765751838684082,-0.643136084079742,-7.14834868631442e-007,-0.761942625045776,0.647644639015198,3.29808676724497e-006,-0.761942565441132,0.647644519805908,3.29808653987129e-006,-0.761942625045776,0.647644519805908,3.29808653987129e-006,-0.764499723911285,0.644624054431915,1.02943170077197e-006,-0.764495849609375,0.644628584384918,1.03283628050121e-006,
- -0.00686135934665799,-0.00456254556775093,0.999966144561768,-0.0068613588809967,-0.00456254510208964,0.999966084957123,-0.000593602017033845,-0.000417551782447845,0.999999701976776,0.000896400539204478,0.000567816896364093,0.999999403953552,0.76523232460022,-0.643754243850708,-7.19996194220585e-007,0.765233814716339,-0.643752455711365,-7.17494231139426e-007,0.764140367507935,-0.645049929618835,-2.57130886893719e-006,0.764140367507935,-0.64504998922348,-2.57130909631087e-006,0.764140427112579,-0.645050048828125,-2.57130932368455e-006,-0.00477749994024634,0.00369007070548832,0.999981760978699,-0.00477749947458506,0.00369007070548832,0.999981760978699,-0.00477749994024634,0.00369007093831897,0.999981760978699,-0.00477749994024634,0.00369007070548832,0.999981760978699,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0.765794456005096,-0.643085360527039,0,0.7657790184021,-0.643103897571564,0,0.765851855278015,-0.643017172813416,0,0.765851736068726,-0.643017172813416,0,1,0,0,1,0,0,1,0,0,1,0,0,0.00245103752240539,-0.999996960163116,0,0.00245103752240539,-0.999996960163116,0,0.00245103752240539,-0.999997019767761,0,0.00245103752240539,-0.999997019767761,0,-0.999996781349182,-0.00255729816854,0,-0.999996781349182,-0.00255729816854,0,-0.999996781349182,-0.00255709979683161,0,-0.999996781349182,-0.00255709979683161,0,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.162449136376381,-0.98671692609787,0,-0.159541100263596,-0.987191259860992,0,-0.880873203277588,-0.47335210442543,0,-0.881693482398987,-0.471822679042816,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,-0.159541100263596,-0.987191259860992,0,-0.162449136376381,-0.98671692609787,0,-1,0,2.44140642280399e-006,-1,0,1.1526570915521e-006,-0.919905602931976,-0.392139822244644,9.22558626825776e-007,-0.919266939163208,-0.393634587526321,1.94954509424861e-006,-0.880317509174347,-0.474384933710098,1.69349263501317e-007,-0.881138026714325,-0.472859144210815,3.55362772097578e-007,-0.919266939163208,-0.393634587526321,1.94954509424861e-006,
- -0.919905602931976,-0.392139822244644,9.22558626825776e-007,-0.881693482398987,-0.471822679042816,0,-0.880873203277588,-0.47335210442543,0,-0.881138026714325,-0.472859144210815,3.55362772097578e-007,-0.880317509174347,-0.474384933710098,1.69349263501317e-007,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,0.765637099742889,-0.643272757530212,0,0.765635311603546,-0.643274903297424,-4.9581636574203e-008,0.765635371208191,-0.643274903297424,-4.93560889935907e-008,-0.643350303173065,-0.76557195186615,0,-0.64335036277771,-0.76557195186615,0,-0.643349289894104,-0.765572786331177,0,-0.643349289894104,-0.765572786331177,0,0.765652298927307,-0.64325475692749,0,0.765652298927307,-0.643254637718201,0,0.765652298927307,-0.643254637718201,0,0.765652298927307,-0.643254637718201,0,-0.643201589584351,-0.765696823596954,0,-0.64320170879364,-0.765696823596954,0,-0.643229842185974,-0.765673100948334,8.13818019196333e-007,-0.643229961395264,-0.765673100948334,8.13818076039752e-007,-0.643233001232147,-0.765670418739319,0,-0.643233060836792,-0.765670478343964,0,-0.64322304725647,-0.765678942203522,-1.19653350338922e-007,-0.64322304725647,-0.765678942203522,-1.19653350338922e-007,0.765645623207092,-0.643262624740601,0,0.765645623207092,-0.643262624740601,0,0.765646040439606,-0.643262207508087,-5.11363040800461e-008,0.765645980834961,-0.643262088298798,-5.11362969746187e-008,-0.64319121837616,-0.765705525875092,0,-0.64319121837616,-0.765705645084381,0,-0.643192708492279,-0.765704214572906,-5.65918618633532e-008,-0.643192708492279,-0.765704214572906,-5.65918618633532e-008,0.64324027299881,0.765664398670197,-3.04654264482451e-007,0.643240332603455,0.765664398670197,-3.04654292904161e-007,0.643241405487061,0.76566344499588,-5.65264315355307e-008,0.643241465091705,0.76566344499588,-5.65264528518128e-008,0.765656709671021,-0.64324939250946,0,0.765656650066376,-0.64324939250946,0,0.765656888484955,-0.643249154090881,0,0.765656888484955,-0.643249154090881,0,-0.643290579319,-0.765622138977051,0,-0.643290519714355,-0.765622079372406,0,
- -0.643290579319,-0.765622138977051,0,-0.643290579319,-0.765622138977051,0,0.765642523765564,-0.643266201019287,1.53627112808863e-007,0.765642523765564,-0.643266201019287,1.53627112808863e-007,0.765642762184143,-0.643266022205353,3.70818398209849e-008,0.765642702579498,-0.643266022205353,3.70818504791259e-008,-0.643353641033173,-0.765569090843201,0,-0.643353641033173,-0.765569031238556,0,-0.643353521823883,-0.76556932926178,0,-0.643353521823883,-0.76556932926178,0,0.765650570392609,-0.643256723880768,0,0.765650510787964,-0.643256783485413,0,0.765651047229767,-0.64325624704361,0,0.765651047229767,-0.64325624704361,0,-0.643185257911682,-0.765710651874542,-1.59076563477356e-007,-0.643185257911682,-0.765710651874542,-1.59076577688211e-007,-0.643186450004578,-0.765709578990936,-4.83186681776715e-008,-0.643186509609222,-0.765709578990936,-4.83186717303852e-008,-0.643196225166321,-0.765701353549957,0,-0.643196225166321,-0.765701413154602,0,-0.643195509910584,-0.76570200920105,0,-0.643195509910584,-0.76570200920105,0,0.765655696392059,-0.643250584602356,5.90503113073737e-008,0.765655636787415,-0.643250644207001,5.90503148600874e-008,0.765656113624573,-0.643250048160553,2.00296650376686e-008,0.765656173229218,-0.643250048160553,2.00296685903822e-008,-0.643228352069855,-0.765674412250519,0,-0.6432284116745,-0.765674471855164,0,-0.643227934837341,-0.765674769878387,0,-0.643227934837341,-0.765674769878387,0,0.643253147602081,0.765653550624847,0,0.643253087997437,0.765653550624847,0,0.64325362443924,0.765653133392334,0,0.64325362443924,0.765653133392334,0,0.765649914741516,-0.643257558345795,0,0.765649914741516,-0.643257617950439,0,0.765649914741516,-0.643257558345795,0,0.765649914741516,-0.643257558345795,0,-0.643170952796936,-0.765722632408142,0,-0.643170893192291,-0.765722632408142,0,-0.643170714378357,-0.765722751617432,0,-0.643170714378357,-0.765722751617432,0,0.765652894973755,-0.643253922462463,0,0.76565283536911,-0.643253982067108,0,0.765652656555176,-0.643254280090332,0,0.765652656555176,-0.643254280090332,0,-0.643351495265961,-0.765570819377899,0,
- -0.643351554870605,-0.765570819377899,0,-0.643352627754211,-0.765569984912872,0,-0.643352627754211,-0.765569984912872,0,0.765648245811462,-0.643259465694427,0,0.765648186206818,-0.643259465694427,0,0.765648543834686,-0.643259227275848,0,0.765648543834686,-0.643259227275848,0,-0.643180251121521,-0.765714764595032,0,-0.643180310726166,-0.765714824199677,0,-0.643179535865784,-0.765715420246124,0,-0.643179535865784,-0.765715420246124,0,-0.643274784088135,-0.765635430812836,0,-0.643274784088135,-0.765635430812836,0,-0.643276631832123,-0.765633702278137,0,-0.643276631832123,-0.765633702278137,0,0.765627861022949,-0.643283843994141,0,0.765627861022949,-0.643283784389496,0,0.765627682209015,-0.643283903598785,0,0.765627682209015,-0.643283903598785,0,-0.643290162086487,-0.76562237739563,0,-0.643290162086487,-0.765622496604919,0,-0.643291294574738,-0.765621483325958,0,-0.643291294574738,-0.765621483325958,0,0.643259346485138,0.765648365020752,0,0.643259346485138,0.765648365020752,0,0.643259346485138,0.765648305416107,0,0.643259346485138,0.765648305416107,0,0.765637457370758,-0.643272280693054,0,0.765637516975403,-0.643272280693054,0,0.765637457370758,-0.643272340297699,0,0.765637457370758,-0.643272340297699,0,-0.643226027488709,-0.765676379203796,0,-0.643226027488709,-0.765676379203796,0,-0.643226087093353,-0.765676379203796,0,-0.643226087093353,-0.765676379203796,0,0.765650391578674,-0.643256843090057,0,0.765650451183319,-0.643256843090057,0,0.765650451183319,-0.643256843090057,0,0.765650451183319,-0.643256843090057,0,-0.643278479576111,-0.765632331371307,0,-0.643278479576111,-0.765632271766663,0,-0.643278479576111,-0.765632271766663,0,-0.643278479576111,-0.765632271766663,0,-0.643296718597412,-0.7656170129776,0,-0.643296003341675,-0.765617668628693,0,-0.643296003341675,-0.765617609024048,0,-0.765659749507904,0.643245756626129,0,-0.765661060810089,0.64324426651001,0,-0.765659749507904,0.643245697021484,0,0.76565808057785,-0.643247842788696,9.51065999288403e-008,0.76565808057785,-0.643247842788696,9.51065928234129e-008,0.765657901763916,-0.643247961997986,2.77430238782017e-008,
- 0.765657901763916,-0.643247902393341,2.77430238782017e-008,-0.64323765039444,-0.765666544437408,1.64281573233893e-007,-0.643237709999084,-0.765666544437408,1.64281587444748e-007,-0.643237233161926,-0.765666961669922,5.23520640172137e-008,-0.643237292766571,-0.765666902065277,5.22962793070292e-008,-0.765638172626495,0.643271446228027,0,-0.765638172626495,0.643271505832672,0,-0.765638053417206,0.643271684646606,0,-0.765638053417206,0.643271684646606,0,0.643246948719025,0.765658855438232,0,0.643246948719025,0.765658736228943,0,0.643247067928314,0.765658676624298,0,0.643247067928314,0.765658617019653,0,-0.642571091651917,-0.76622611284256,-6.3565678942723e-008,-0.642571091651917,-0.766226053237915,-6.3565678942723e-008,-0.642570436000824,-0.766226589679718,-3.02274969499194e-008,-0.642570436000824,-0.766226589679718,-3.02275005026331e-008,-0.765646636486053,0.643261432647705,5.38298543517612e-008,-0.765646636486053,0.643261313438416,5.38298507990476e-008,-0.765646815299988,0.643261253833771,2.5639726786153e-008,-0.765646755695343,0.643261134624481,2.56397250097962e-008,0.642555832862854,0.766238868236542,0,0.642555832862854,0.766238749027252,0,0.642555832862854,0.766238868236542,0,0.642555832862854,0.766238868236542,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.765637874603271,0.643271923065186,-4.17419687437359e-006,-0.765637814998627,0.643271863460541,-4.17419687437359e-006,-0.765637814998627,0.643271803855896,-4.17419687437359e-006,-0.765637814998627,0.643271803855896,-4.17419687437359e-006,1.27331713883905e-006,0,-1,1.27331736621272e-006,0,-1,1.27331725252589e-006,0,-1,1.27331725252589e-006,0,-1,0.765636086463928,-0.643273949623108,-9.16260614758357e-006,0.765636026859283,-0.643273949623108,-9.16260523808887e-006,0.765636086463928,-0.643273949623108,-9.16260614758357e-006,0.765636086463928,-0.643273949623108,-9.16260614758357e-006,-0.765750706195831,0.643137514591217,8.26642860829452e-007,-0.765749216079712,0.64313930273056,1.07337893950898e-006,-0.765750706195831,0.643137395381927,1.02864748896536e-006,-0.765752911567688,0.643134891986847,5.87838599130919e-007,
- 0.765746235847473,-0.643142938613892,-2.34131039178465e-006,0.765747666358948,-0.643141090869904,-1.80514621206385e-006,0.765750527381897,-0.643137812614441,-1.04046841897798e-006,0.765748739242554,-0.643139839172363,-1.81992504622031e-006,-0.643136441707611,-0.765751600265503,1.68792064414447e-006,-0.643136441707611,-0.765751540660858,1.68792064414447e-006,-0.64313817024231,-0.765750169754028,1.37898211960419e-006,-0.643138110637665,-0.765750169754028,1.37898325647257e-006,-0.765752255916595,0.643135607242584,2.10239193165762e-007,-0.765758812427521,0.643127799034119,0,-0.765756189823151,0.643130898475647,9.09481343569496e-008,0.765758454799652,-0.643128275871277,0,0.765752196311951,-0.643135666847229,3.52643581891243e-007,0.765756011009216,-0.643131196498871,1.53398332258803e-007,-0.765758812427521,0.643127799034119,0,-0.765756130218506,0.643131077289581,-1.1310296343936e-007,-0.765757262706757,0.643129825592041,-2.54268357480214e-008,-0.765756189823151,0.643130898475647,9.09481343569496e-008,0.765756249427795,-0.643130838871002,0,0.765758454799652,-0.643128275871277,0,0.765756011009216,-0.643131196498871,1.53398332258803e-007,0.765757203102112,-0.643129765987396,0,-0.765756130218506,0.643131077289581,-1.1310296343936e-007,-0.765755593776703,0.643131673336029,-3.45711086424672e-008,-0.765755593776703,0.643131792545319,-2.18955626962725e-008,-0.765757262706757,0.643129825592041,-2.54268357480214e-008,0.765753388404846,-0.643134236335754,0,0.765756249427795,-0.643130838871002,0,0.765757203102112,-0.643129765987396,0,0.765754103660584,-0.643133521080017,0,-0.765755593776703,0.643131673336029,-3.45711086424672e-008,-0.765750706195831,0.643137514591217,8.26642860829452e-007,-0.765752911567688,0.643134891986847,5.87838599130919e-007,-0.765755593776703,0.643131792545319,-2.18955626962725e-008,0.765747666358948,-0.643141090869904,-1.80514621206385e-006,0.765753388404846,-0.643134236335754,0,0.765754103660584,-0.643133521080017,0,0.765750527381897,-0.643137812614441,-1.04046841897798e-006,-0.944723427295685,-0.327868163585663,0,
- -0.307057499885559,-0.951690912246704,0,-0.162449136376381,-0.98671692609787,0,-0.881693482398987,-0.471822679042816,0,-0.307057499885559,-0.951690912246704,0,0,-1,0,0,-1,0,-0.162449136376381,-0.98671692609787,0,-0.966664373874664,-0.256046742200851,0,-0.826127529144287,-0.56348317861557,0,-0.880317509174347,-0.474384933710098,1.69349263501317e-007,-0.919905602931976,-0.392139822244644,9.22558626825776e-007,-0.826127529144287,-0.56348317861557,0,-0.944723427295685,-0.327868163585663,0,-0.881693482398987,-0.471822679042816,0,-0.880317509174347,-0.474384933710098,1.69349263501317e-007,1,0,0,1,0,0,1,0,0,1,0,0,0.765649795532227,-0.64325749874115,0,0.765649795532227,-0.643257558345795,0,0.765649855136871,-0.643257617950439,0,0.765649855136871,-0.643257617950439,0,-0.643278062343597,-0.765632688999176,0,-0.643278062343597,-0.765632629394531,0,-0.643278002738953,-0.765632688999176,0,-0.643278002738953,-0.765632688999176,0,-0.643325209617615,-0.7655930519104,0,-0.643325209617615,-0.7655930519104,0,-0.64332526922226,-0.765593111515045,0,-0.64332526922226,-0.765593111515045,0,0.765640079975128,-0.643269240856171,0,0.765640020370483,-0.643269240856171,0,0.765640079975128,-0.643269300460815,0,0.765640079975128,-0.643269300460815,0,-0.643216073513031,-0.76568478345871,0,-0.643215954303741,-0.765684723854065,0,-0.643216013908386,-0.76568478345871,0,-0.643216013908386,-0.76568478345871,0,0.643199265003204,0.765698909759521,0,0.64319920539856,0.765698850154877,0,0.64319920539856,0.765698909759521,0,0.64319920539856,0.765698909759521,0,0.765666961669922,-0.643237233161926,0,0.765667021274567,-0.643237173557281,0,0.765667021274567,-0.643237233161926,0,0.765667021274567,-0.643237233161926,0,-0.643137633800507,-0.765750646591187,0,-0.643137574195862,-0.765750706195831,0,-0.643137633800507,-0.765750706195831,0,-0.643137633800507,-0.765750706195831,0,0.765635311603546,-0.643274903297424,-4.9581636574203e-008,0.765635371208191,-0.643274903297424,-4.96465375476873e-008,0.765635311603546,-0.64327484369278,-4.964653044226e-008,0.765635311603546,-0.64327484369278,-4.964653044226e-008,
- 0.765635371208191,-0.643274903297424,-4.93560889935907e-008,-0.643334865570068,-0.765584886074066,2.05252745217877e-005,-0.643334865570068,-0.765584945678711,2.05252745217877e-005,-0.643334865570068,-0.765584945678711,2.05252745217877e-005,-0.643334865570068,-0.765584945678711,2.05252745217877e-005,0.643106162548065,0.765777051448822,0,0.643106162548065,0.765777111053467,0,0.64310622215271,0.765777111053467,0,0.64310622215271,0.765777111053467,0,0.765608906745911,-0.643306314945221,0,0.765608906745911,-0.643306374549866,0,0.765608847141266,-0.643306255340576,0,0.765608847141266,-0.643306255340576,0,-0.643278300762177,-0.765632450580597,0,-0.643278300762177,-0.765632450580597,0,-0.643278360366821,-0.765632390975952,0,-0.643278360366821,-0.765632390975952,0,0.765651404857636,-0.643255650997162,0,0.765651404857636,-0.643255650997162,0,0.76565146446228,-0.643255710601807,0,0.76565146446228,-0.643255710601807,0,-0.643302917480469,-0.76561176776886,0,-0.643302917480469,-0.765611827373505,0,-0.643302917480469,-0.76561176776886,0,-0.643302917480469,-0.76561176776886,0,-0.765659749507904,0.643245756626129,0,-0.765659749507904,0.643245756626129,0,-0.765659749507904,0.643245697021484,0,-0.765659749507904,0.643245756626129,0,-0.765659749507904,0.643245756626129,0,0.643250226974487,0.765656054019928,0,0.643250226974487,0.765655994415283,0,0.643250107765198,0.765656113624573,0,0.643250107765198,0.765656113624573,0,0.00522032845765352,-0.00401714071631432,-0.999978244304657,0.0052203293889761,-0.0040171411819756,-0.999978363513947,0.00522032892331481,-0.00401714025065303,-0.999978244304657,0.0052203293889761,-0.0040171411819756,-0.999978363513947,-0.76577889919281,0.643104016780853,0,-0.76575368642807,0.643133938312531,1.53365718347231e-007,-0.765754461288452,0.643133044242859,1.16176103404086e-007,-0.76579350233078,0.643086671829224,0,0.765753388404846,-0.643134295940399,2.57613038456839e-007,0.7657790184021,-0.643103897571564,0,0.765794456005096,-0.643085360527039,0,0.765754103660584,-0.643133401870728,1.95568816252489e-007,-0.76575368642807,0.643133938312531,1.53365718347231e-007,
- -0.765752255916595,0.643135607242584,2.10239193165762e-007,-0.765756189823151,0.643130898475647,9.09481343569496e-008,-0.765755832195282,0.64313131570816,1.06010737965789e-007,-0.765754461288452,0.643133044242859,1.16176103404086e-007,0.768661916255951,-0.639655351638794,-1.58871080202516e-005,0.768661856651306,-0.639655351638794,-1.58871062012622e-005,0.768661856651306,-0.639655351638794,-1.58871080202516e-005,0.768661856651306,-0.639655411243439,-1.58871062012622e-005,0.767368912696838,-0.641205847263336,0,0.767368853092194,-0.641205847263336,0,0.767368912696838,-0.641205966472626,0,0.767368972301483,-0.641205906867981,0,-0.763160407543182,0.646209120750427,-1.03926086012507e-005,-0.763160407543182,0.646209120750427,-1.03926086012507e-005,-0.763160407543182,0.646209120750427,-1.03926086012507e-005,-0.763160407543182,0.646209120750427,-1.03926086012507e-005,-0.765844941139221,0.64302533864975,0,-0.76577889919281,0.643104016780853,0,-0.76579350233078,0.643086671829224,0,-0.765845000743866,0.643025279045105,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-4.88552941533271e-005,-3.35715503751999e-006,1,-4.88552905153483e-005,-3.35715526489366e-006,1,-4.88552941533271e-005,-3.35715526489366e-006,1,-4.88552941533271e-005,-3.35715526489366e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,-2.89802510877735e-008,0,1,-2.89802475350598e-008,0,1,-2.89802493114166e-008,0,1,-2.89802510877735e-008,0,0,0,1,0,0,1,0,0,1,0,0,1,-1,-2.89802493114166e-008,0,-1,-2.89802475350598e-008,0,-1,-2.89802510877735e-008,0,-1,-2.89802510877735e-008,0,0,0.627528607845306,-0.778593480587006,0,0.627528607845306,-0.778593480587006,0,0.627528607845306,-0.778593480587006,0,0.627528607845306,-0.778593480587006,4.82549978642055e-007,-0.643256843090057,0.765650451183319,4.82550035485474e-007,-0.643256902694702,0.765650451183319,4.82550035485474e-007,-0.643256902694702,0.765650451183319,4.82549978642055e-007,-0.643256902694702,0.765650391578674,3.70327910559354e-007,-0.765627562999725,-0.643284261226654,3.70327853715935e-007,-0.765627503395081,-0.643284142017365,3.70327853715935e-007,-0.765627503395081,-0.643284201622009,
- 3.70327853715935e-007,-0.76562762260437,-0.643284142017365,0,-0.765595376491547,-0.643322467803955,0,-0.765595376491547,-0.643322348594666,0,-0.765595436096191,-0.643322348594666,0,-0.765595376491547,-0.643322467803955,0,-0.643269121646881,0.765640079975128,0,-0.643269121646881,0.765640139579773,0,-0.643269121646881,0.765640139579773,0,-0.643269121646881,0.765640079975128,0,-0.765686213970184,-0.643214166164398,0,-0.765686273574829,-0.643214225769043,0,-0.765686273574829,-0.643214225769043,0,-0.765686213970184,-0.643214166164398,0,0.765696704387665,0.643201887607574,0,0.765696704387665,0.64320182800293,0,0.76569664478302,0.64320182800293,0,0.765696704387665,0.643201887607574,0,-0.643237888813019,0.765666425228119,0,-0.643237829208374,0.765666425228119,0,-0.643237829208374,0.765666425228119,0,-0.643237888813019,0.765666425228119,0,-0.765749096870422,-0.64313942193985,0,-0.765749096870422,-0.64313942193985,0,-0.765749096870422,-0.643139481544495,0,-0.765749096870422,-0.64313942193985,0,-0.643275022506714,0.765635192394257,0,-0.643275022506714,0.765635132789612,0,-0.643275082111359,0.765635132789612,0,-0.643275022506714,0.765635192394257,0,-0.765573143959045,-0.643348813056946,0,-0.765573143959045,-0.64334899187088,0,-0.765573143959045,-0.643348872661591,0,-0.765573143959045,-0.643348813056946,0,-0.643254697322845,0.765652298927307,0,-0.64325475692749,0.765652239322662,0,-0.643254697322845,0.765652239322662,0,-0.643254697322845,0.765652298927307,-2.28058212314863e-007,-0.76570063829422,-0.643197119235992,-2.28058226525718e-007,-0.765700578689575,-0.643197119235992,-2.28058212314863e-007,-0.765700578689575,-0.643197178840637,-2.28058226525718e-007,-0.765700578689575,-0.643197238445282,1.05129089433831e-007,-0.765668511390686,-0.643235325813293,1.05129096539258e-007,-0.765668511390686,-0.643235385417938,1.05129096539258e-007,-0.765668511390686,-0.643235325813293,1.05129103644686e-007,-0.765668570995331,-0.643235385417938,8.8426318711754e-008,-0.643263041973114,0.765645205974579,8.84263258171814e-008,-0.643263041973114,0.765645265579224,
- 8.84263116063266e-008,-0.643262982368469,0.765645265579224,8.84263258171814e-008,-0.643263041973114,0.765645325183868,0,-0.765704870223999,-0.643192172050476,0,-0.765704870223999,-0.643192052841187,0,-0.765704810619354,-0.643192052841187,0,-0.765704870223999,-0.643192172050476,-1.14415240659582e-006,0.765688121318817,0.643211960792542,-1.14415240659582e-006,0.765688180923462,0.643211960792542,-1.14415240659582e-006,0.765688121318817,0.643211960792542,-1.14415240659582e-006,0.765688180923462,0.643212020397186,0,-0.643248856067657,0.765657246112823,0,-0.643248796463013,0.765657246112823,0,-0.643248796463013,0.765657186508179,0,-0.643248856067657,0.765657246112823,0,-0.765620470046997,-0.643292427062988,0,-0.765620589256287,-0.643292546272278,0,-0.765620529651642,-0.643292486667633,0,-0.765620470046997,-0.643292427062988,0,-0.643265902996063,0.765642821788788,0,-0.643265962600708,0.765642821788788,0,-0.643266022205353,0.765642821788788,0,-0.643265902996063,0.765642821788788,0,-0.765570044517517,-0.643352627754211,0,-0.765570044517517,-0.643352627754211,0,-0.765569984912872,-0.643352568149567,0,-0.765570044517517,-0.643352627754211,0,-0.643256068229675,0.765651166439056,0,-0.64325612783432,0.765651106834412,0,-0.643256068229675,0.765651106834412,0,-0.643256068229675,0.765651166439056,0,-0.765708684921265,-0.643187522888184,0,-0.765708744525909,-0.643187522888184,0,-0.765708684921265,-0.643187522888184,0,-0.765708684921265,-0.643187522888184,7.02396434348884e-008,-0.765704154968262,-0.643192887306213,7.02396505403158e-008,-0.765704154968262,-0.643192887306213,7.02396505403158e-008,-0.765704214572906,-0.643192887306213,7.02396434348884e-008,-0.765704214572906,-0.643192827701569,0,-0.64324963092804,0.765656530857086,0,-0.643249571323395,0.765656590461731,0,-0.643249571323395,0.765656530857086,0,-0.64324963092804,0.765656530857086,0,-0.765673995018005,-0.643228888511658,0,-0.765673935413361,-0.643228828907013,0,-0.76567405462265,-0.643228888511658,0,-0.765673995018005,-0.643228888511658,0,0.765652000904083,0.643255054950714,
- 0,0.765652060508728,0.643255114555359,0,0.765652000904083,0.643255054950714,0,0.765652000904083,0.643255054950714,0,-0.643257617950439,0.765649855136871,0,-0.643257558345795,0.765649855136871,0,-0.643257558345795,0.765649795532227,0,-0.643257617950439,0.765649855136871,0,-0.76572322845459,-0.643170237541199,0,-0.765723288059235,-0.643170237541199,0,-0.76572322845459,-0.643170237541199,0,-0.76572322845459,-0.643170237541199,-8.53138004686116e-008,-0.643253684043884,0.765653133392334,-8.53137933631842e-008,-0.64325362443924,0.765653073787689,-8.53138004686116e-008,-0.643253684043884,0.765653133392334,-8.53138004686116e-008,-0.643253684043884,0.765653133392334,5.81047210346242e-008,-0.765567302703857,-0.643355906009674,5.81047139291968e-008,-0.765567183494568,-0.643355906009674,5.81047245873378e-008,-0.765567243099213,-0.643355906009674,5.81047210346242e-008,-0.765567302703857,-0.643355906009674,0,-0.64325886964798,0.765648782253265,0,-0.64325886964798,0.765648722648621,0,-0.64325886964798,0.765648663043976,0,-0.64325886964798,0.765648782253265,0,-0.765716433525085,-0.643178284168243,0,-0.76571649312973,-0.643178343772888,0,-0.76571649312973,-0.643178284168243,0,-0.765716433525085,-0.643178284168243,0,-0.765632271766663,-0.643278539180756,0,-0.765632271766663,-0.643278479576111,0,-0.765632331371307,-0.643278539180756,0,-0.765632271766663,-0.643278539180756,0,-0.64328408241272,0.765627562999725,0,-0.643284022808075,0.765627562999725,0,-0.643284022808075,0.765627562999725,0,-0.64328408241272,0.765627562999725,0,-0.765620529651642,-0.643292546272278,0,-0.765620470046997,-0.643292546272278,0,-0.765620410442352,-0.643292546272278,0,-0.765620529651642,-0.643292546272278,0,0.765649497509003,0.643258035182953,0,0.765649437904358,0.643258035182953,0,0.765649497509003,0.643258035182953,0,0.765649497509003,0.643258035182953,0,-0.643271803855896,0.765637814998627,0,-0.643271803855896,0.765637874603271,0,-0.643271863460541,0.765637934207916,0,-0.643271803855896,0.765637814998627,5.77969672121981e-007,-0.765699803829193,-0.643198192119598,
- 5.77969615278562e-007,-0.765699803829193,-0.643198192119598,5.77969615278562e-007,-0.765699684619904,-0.643198072910309,5.77969615278562e-007,-0.765699803829193,-0.643198072910309,0,-0.643257021903992,0.76565021276474,0,-0.643257081508636,0.76565033197403,0,-0.643257021903992,0.765650272369385,0,-0.643257021903992,0.76565021276474,0,-0.765632331371307,-0.643278360366821,0,-0.765632390975952,-0.643278360366821,0,-0.765632390975952,-0.643278360366821,0,-0.765632331371307,-0.643278360366821,0,0.765776932239532,0.643106281757355,0,0.765776932239532,0.643106281757355,0,0.765776932239532,0.643106281757355,0,0.765776932239532,0.643106281757355,0,-0.643305480480194,0.765609622001648,0,-0.643305540084839,0.765609622001648,0,-0.643305480480194,0.765609622001648,0,-0.643305480480194,0.765609622001648,0,-0.765632092952728,-0.64327871799469,0,-0.765632092952728,-0.64327871799469,0,-0.765632092952728,-0.64327871799469,0,-0.765632092952728,-0.64327871799469,0,-0.643255293369293,0.765651702880859,0,-0.643255352973938,0.765651762485504,0,-0.643255352973938,0.765651762485504,0,-0.643255293369293,0.765651702880859,0,-0.765611290931702,-0.643303632736206,0,-0.765611171722412,-0.643303573131561,0,-0.765611231327057,-0.643303573131561,0,-0.765611290931702,-0.643303632736206,-1.72862399949736e-007,-0.765616834163666,-0.643296837806702,-1.72862399949736e-007,-0.765616834163666,-0.643296837806702,-1.72862385738881e-007,-0.765616834163666,-0.643296897411346,-1.72862385738881e-007,-0.765616834163666,-0.643296837806702,1.51608219312038e-007,0.643246531486511,-0.765659093856812,1.51608219312038e-007,0.643246471881866,-0.765659093856812,1.51608205101184e-007,0.643246531486511,-0.765659093856812,1.51608233522893e-007,0.643246591091156,-0.765659153461456,-1.67465123013244e-006,0.765662670135498,0.643242359161377,-1.67465123013244e-006,0.765662610530853,0.643242418766022,-1.67465123013244e-006,0.765662610530853,0.643242359161377,-1.6746511164456e-006,0.765662610530853,0.643242359161377,0,-0.643248558044434,0.765657365322113,0,-0.643248558044434,0.765657365322113,
- 0,-0.643248617649078,0.765657365322113,0,-0.643248617649078,0.765657424926758,0,-0.765666902065277,-0.643237352371216,0,-0.765666842460632,-0.643237292766571,0,-0.765666902065277,-0.643237292766571,0,-0.765666902065277,-0.643237292766571,0,0.643271386623383,-0.765638291835785,0,0.643271386623383,-0.765638291835785,0,0.643271386623383,-0.765638172626495,0,0.643271386623383,-0.765638291835785,0,0.765658378601074,0.643247246742249,0,0.765658497810364,0.643247306346893,0,0.765658497810364,0.643247306346893,0,0.765658497810364,0.643247306346893,0,-0.766226828098297,-0.642570078372955,0,-0.766226828098297,-0.642570078372955,0,-0.766226947307587,-0.6425701379776,0,-0.766226887702942,-0.642570078372955,0,0.643261134624481,-0.765646874904633,0,0.643261134624481,-0.765646874904633,0,0.643261075019836,-0.765646815299988,0,0.643261134624481,-0.765646874904633,0,0.766238629817963,0.642556130886078,0,0.766238629817963,0.642556130886078,0,0.766238689422607,0.642556130886078,0,0.766238629817963,0.642556071281433,-4.19384633687514e-007,0.64313405752182,-0.765753626823425,-7.18711419267493e-007,0.643135845661163,-0.765752017498016,-7.18711476110911e-007,0.643135845661163,-0.765752017498016,-5.39204563665407e-007,0.643134772777557,-0.765752971172333,1.37841732339439e-006,-0.643138587474823,0.765749752521515,8.04968578904663e-007,-0.643137037754059,0.7657510638237,1.03462821243738e-006,-0.643137693405151,0.765750467777252,1.37841709602071e-006,-0.643138647079468,0.765749752521515,-3.1325494092016e-006,-0.765748083591461,-0.643140554428101,-3.13254918182793e-006,-0.765748023986816,-0.643140614032745,-3.1325494092016e-006,-0.765748143196106,-0.643140614032745,-3.13254895445425e-006,-0.765748083591461,-0.643140554428101,0,0.643104910850525,-0.765778064727783,0,0.643133521080017,-0.765754044055939,0,0.643134415149689,-0.765753269195557,0,0.643116593360901,-0.76576828956604,-1.0018274565482e-007,-0.643122673034668,0.765763163566589,0,-0.643105208873749,0.765777766704559,0,-0.643105268478394,0.765777826309204,0,-0.643105208873749,0.765777766704559,
- -1.29923634517581e-007,-0.643127858638763,0.765758812427521,0,0.643133521080017,-0.765754044055939,0,0.643130779266357,-0.76575642824173,0,0.643129348754883,-0.76575756072998,0,0.643134415149689,-0.765753269195557,-1.81381096808764e-007,-0.643130719661713,0.765756368637085,-1.0018274565482e-007,-0.643122673034668,0.765763163566589,-1.29923634517581e-007,-0.643127858638763,0.765758812427521,-1.8305885873815e-007,-0.643129289150238,0.76575756072998,0,0.643130779266357,-0.76575642824173,0,0.643129885196686,-0.765757083892822,0,0.643130719661713,-0.765756487846375,0,0.643129348754883,-0.76575756072998,-1.1957013157371e-007,-0.643129765987396,0.765757203102112,-1.81381096808764e-007,-0.643130719661713,0.765756368637085,-1.8305885873815e-007,-0.643129289150238,0.76575756072998,-9.9572311285101e-008,-0.643130660057068,0.765756547451019,0,0.643129885196686,-0.765757083892822,0,0.643131792545319,-0.765755534172058,0,0.643131732940674,-0.765755593776703,0,0.643130719661713,-0.765756487846375,-3.07909431285225e-008,-0.643133461475372,0.765753984451294,-1.1957013157371e-007,-0.643129765987396,0.765757203102112,-9.9572311285101e-008,-0.643130660057068,0.765756547451019,-1.8886231245574e-008,-0.64313405752182,0.76575368642807,0,0.643131792545319,-0.765755534172058,-4.19384633687514e-007,0.64313405752182,-0.765753626823425,-5.39204563665407e-007,0.643134772777557,-0.765752971172333,0,0.643131732940674,-0.765755593776703,8.04968578904663e-007,-0.643137037754059,0.7657510638237,-3.07909431285225e-008,-0.643133461475372,0.765753984451294,-1.8886231245574e-008,-0.64313405752182,0.76575368642807,1.03462821243738e-006,-0.643137693405151,0.765750467777252,-0.999977350234985,0.00413471274077892,-0.00530506437644362,-0.999977290630341,0.00413471180945635,-0.00530506391078234,-0.999977350234985,0.00413471227511764,-0.00530506484210491,-0.99997740983963,0.00413471227511764,-0.00530506484210491,1.90268441002672e-008,-0.986561298370361,-0.163391053676605,3.55078704217249e-008,-0.952377915382385,-0.304920136928558,2.41647235554865e-008,-0.328745096921921,-0.944418668746948,
- 3.46462343259191e-008,-0.471339166164398,-0.881952047348022,0,-0.999999940395355,0,0,-0.999999940395355,0,3.55078704217249e-008,-0.952377915382385,-0.304920136928558,1.90268441002672e-008,-0.986561298370361,-0.163391053676605,-2.0923732790834e-007,-0.474849283695221,-0.880067110061646,-2.47919899720728e-007,-0.56263667345047,-0.826704323291779,-7.29398038856743e-007,-0.256782531738281,-0.966469168663025,-6.9032955707371e-007,-0.39168193936348,-0.920100748538971,3.46462343259191e-008,-0.471339166164398,-0.881952047348022,2.41647235554865e-008,-0.328745096921921,-0.944418668746948,-2.47919899720728e-007,-0.56263667345047,-0.826704323291779,-2.0923732790834e-007,-0.474849283695221,-0.880067110061646,0,0,1,0,0,1,0,0,1,0,0,1,0,0.765613555908203,0.643300712108612,0,0.765613555908203,0.643300712108612,0,0.765613555908203,0.643300712108612,0,0.765613555908203,0.643300712108612,0,-0.64323365688324,0.765670001506805,0,-0.643233597278595,0.765670001506805,0,-0.64323365688324,0.765670001506805,0,-0.64323365688324,0.765670001506805,0,0.765596747398376,0.643320918083191,0,0.765596687793732,0.643320858478546,0,0.765596628189087,0.643320798873901,0,0.765596628189087,0.643320798873901,0,0.765671074390411,0.64323228597641,0,0.765671014785767,0.643232345581055,0,0.765671074390411,0.643232405185699,0,0.765671074390411,0.643232405185699,0,0.765625774860382,0.643286168575287,0,0.765625774860382,0.643286168575287,0,0.765625834465027,0.643286228179932,0,0.765625834465027,0.643286228179932,0,0.765659272670746,0.643246293067932,0,0.765659332275391,0.643246352672577,0,0.765659272670746,0.643246352672577,0,0.765659272670746,0.643246352672577,-3.64481252290716e-007,-0.643268287181854,0.765640795230865,-3.64481252290716e-007,-0.643268287181854,0.76564085483551,-3.64481309134135e-007,-0.643268287181854,0.765640914440155,-3.64481252290716e-007,-0.643268287181854,0.76564085483551,2.27721855594609e-007,0.765720009803772,0.64317399263382,2.27721869805464e-007,0.765720009803772,0.643174052238464,2.27721855594609e-007,0.765720009803772,0.64317399263382,
- 2.27721855594609e-007,0.765720069408417,0.643174052238464,-1.04892478702823e-007,0.765686333179474,0.643214106559753,-1.04892478702823e-007,0.765686333179474,0.643214106559753,-1.0489248580825e-007,0.765686392784119,0.643214106559753,-1.0489248580825e-007,0.765686392784119,0.643214106559753,0,0.765619695186615,0.643293559551239,0,0.76561963558197,0.643293499946594,0,0.76561963558197,0.643293499946594,0,0.76561963558197,0.643293499946594,0,0.765709698200226,0.643186330795288,0,0.765709698200226,0.643186330795288,0,0.765709698200226,0.643186271190643,0,0.765709698200226,0.643186271190643,0,-0.643244624137878,0.76566070318222,0,-0.643244683742523,0.765660762786865,0,-0.643244624137878,0.76566070318222,0,-0.643244624137878,0.76566070318222,-4.16530312463692e-008,0.765652000904083,0.643254995346069,-4.16530347990829e-008,0.765652060508728,0.643254935741425,-4.16530419045102e-008,0.765652060508728,0.643254995346069,-4.16530383517966e-008,0.765652000904083,0.643254995346069,0,0.765622496604919,0.643290162086487,0,0.765622437000275,0.643290162086487,0,0.765622496604919,0.643290162086487,0,0.765622496604919,0.643290162086487,-1.58318478327146e-008,0.765563368797302,0.643360435962677,-1.58318478327146e-008,0.765563368797302,0.643360495567322,-1.58318496090715e-008,0.765563488006592,0.643360495567322,-1.58318496090715e-008,0.765563488006592,0.643360495567322,0,0.765702605247498,0.643194735050201,0,0.765702664852142,0.643194794654846,0,0.765702605247498,0.643194735050201,0,0.765702605247498,0.643194735050201,0,-0.64324551820755,0.765659987926483,0,-0.643245577812195,0.765659987926483,0,-0.643245458602905,0.765659987926483,0,-0.643245458602905,0.765659987926483,0,0.765579998493195,0.643340826034546,0,0.765579998493195,0.643340826034546,0,0.76557993888855,0.643340766429901,0,0.76557993888855,0.643340766429901,0,0.765695571899414,0.643203258514404,0,0.765695512294769,0.64320319890976,0,0.765695512294769,0.643203139305115,0,0.765695512294769,0.643203139305115,-1.52515497120476e-007,0.765668272972107,0.643235623836517,-1.52515497120476e-007,0.765668272972107,0.643235623836517,
- -1.52515497120476e-007,0.765668213367462,0.643235623836517,-1.52515497120476e-007,0.765668272972107,0.643235623836517,0,0.765601277351379,0.643315434455872,0,0.765601217746735,0.643315434455872,0,0.765601217746735,0.643315434455872,0,0.765601217746735,0.643315434455872,0.999995410442352,-0.00164882850367576,-0.00253114942461252,0.999995470046997,-0.00164882850367576,-0.00253114919178188,0.999995410442352,-0.00164882862009108,-0.00253114942461252,0.999995470046997,-0.00164882850367576,-0.00253114919178188,-3.12138990921085e-006,0.643249750137329,-0.765656411647797,-3.12138990921085e-006,0.643249809741974,-0.765656411647797,-3.1213894544635e-006,0.643249690532684,-0.765656352043152,-3.12138968183717e-006,0.643249750137329,-0.765656352043152,-0.999992609024048,0.0020963775459677,0.00321901123970747,-0.999992668628693,0.0020963775459677,0.0032190119381994,-0.999992609024048,0.00209637731313705,0.00321901123970747,-0.999992609024048,0.0020963775459677,0.00321901147253811,0,-0.643249809741974,0.765656292438507,0,-0.643249809741974,0.765656292438507,0,-0.643249869346619,0.765656292438507,0,-0.643249869346619,0.765656292438507,-2.04583557206206e-006,-0.643311262130737,0.765604794025421,-2.04583534468838e-006,-0.643311262130737,0.765604734420776,-2.04583557206206e-006,-0.643311321735382,0.765604794025421,-2.04583534468838e-006,-0.643311262130737,0.765604734420776,0,-0.604883670806885,0.79631382226944,0,-0.60488373041153,0.796313881874084,0,-0.60488373041153,0.79631382226944,0,-0.60488373041153,0.79631382226944,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,4.31535681855166e-006,0.643272995948792,-0.76563686132431,4.31535681855166e-006,0.643273055553436,-0.765636801719666,4.31535772804637e-006,0.643273115158081,-0.76563686132431,4.31535772804637e-006,0.643273115158081,-0.76563686132431,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,6.85675513523165e-006,-0.643274486064911,0.76563572883606,6.85675422573695e-006,-0.643274486064911,0.765635669231415,6.8567546804843e-006,-0.643274426460266,0.76563572883606,6.8567546804843e-006,-0.643274426460266,0.76563572883606,
- 0.999967277050018,-0.00498601701110601,0.00637369137257338,0.999967277050018,-0.00498601701110601,0.00637369137257338,0.999967217445374,-0.00498601701110601,0.00637369090691209,0.999967336654663,-0.00498601794242859,0.00637369183823466,1.01762734630029e-005,-0.641206085681915,0.767368793487549,1.01762734630029e-005,-0.641206026077271,0.767368733882904,1.01762743724976e-005,-0.641206085681915,0.767368733882904,1.01762734630029e-005,-0.641206026077271,0.767368793487549,3.99662076233653e-006,0.646208465099335,-0.76316100358963,3.99662030758918e-006,0.64620840549469,-0.763160943984985,3.99662076233653e-006,0.646208465099335,-0.76316100358963,3.99662076233653e-006,0.646208465099335,-0.763160943984985,0,-0.999996960163116,0.00245103775523603,0,-0.999997019767761,0.00245103775523603,0,-0.999997019767761,0.00245103775523603,0,-0.999997019767761,0.00245103775523603,0,-0.00255729863420129,-0.999996781349182,0,-0.00255729816854,-0.999996721744537,0,-0.00255729840137064,-0.999996721744537,0,-0.00255729840137064,-0.999996721744537,0,1,9.29873849031537e-008,0,1,9.29873777977264e-008,0,1,9.29873849031537e-008,0,1,9.29873849031537e-008,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,-7.29398038856743e-007,-0.256782531738281,-0.966469168663025,-7.62055492486979e-007,-2.74024914688198e-005,-0.999999940395355,-7.62055492486979e-007,-2.74024914688198e-005,-1,-6.9032955707371e-007,-0.39168193936348,-0.920100748538971,0,0.643025755882263,-0.765844643115997,0,0.643104910850525,-0.765778064727783,0,0.643116593360901,-0.76576828956604,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,
- 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999701976776,0.000395115290302783,-0.000470290367957205,0.999999761581421,0.000395115261198953,-0.000470290367957205,0.999999761581421,0.000395115290302783,-0.000470290338853374,0.999999701976776,0.000395115261198953,-0.000470290309749544,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1.05994768091477e-005,-1.63620848070423e-006,0.999999940395355,1.06000597952516e-005,-1.63629806593235e-006,1,2.20062665903242e-005,-3.39703842655581e-006,1,2.20062647713348e-005,-3.39703842655581e-006,1,0,0,1,0,0,0.999999940395355,1.06000597952516e-005,-1.63629806593235e-006,1,1.05994768091477e-005,-1.63620848070423e-006,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.00017683238547761,-0.765634596347809,-0.643275618553162,-0.00017683238547761,-0.765634655952454,-0.643275678157806,-0.00017683238547761,-0.765634655952454,-0.643275618553162,-0.000176832400029525,-0.765634655952454,-0.643275618553162,1,4.59308103017975e-005,-1.26928862300701e-005,1,4.59308103017975e-005,-1.26928871395648e-005,1,4.59308103017975e-005,-1.26928862300701e-005,1,4.59308103017975e-005,-1.26928871395648e-005,0.000234058985370211,-0.639701426029205,0.768623411655426,0.000234058985370211,-0.639701426029205,0.768623471260071,0.000234058985370211,-0.639701426029205,0.768623471260071,0.72517192363739,0.0054381936788559,-0.688546299934387,0.724768280982971,0.00324196042492986,-0.688984990119934,0.724181115627289,8.25526440166868e-005,-0.68960976600647,0.724181056022644,8.25526440166868e-005,-0.689609825611115,0.694174945354462,-0.00812356825917959,-0.719760417938232,0.702576816082001,-0.00304127647541463,-0.711601495742798,0.724768280982971,0.00324196042492986,-0.688984990119934,0.72517192363739,0.0054381936788559,-0.688546299934387,
- -0.463889718055725,0.759799063205719,-0.455534607172012,-0.461390972137451,0.757781624794006,-0.461394995450974,-0.46119087934494,0.758025228977203,-0.461194932460785,-0.463446110486984,0.76043176651001,-0.454930067062378,-0.722089111804962,-0.00250753527507186,0.691795647144318,-0.723674952983856,-0.00142361701000482,0.690139472484589,-0.700186848640442,0.00441307155415416,0.713945925235748,-0.694285809993744,0.00799217447638512,0.71965503692627,0.446652889251709,-0.775242507457733,0.446654558181763,0.446015894412994,-0.775975704193115,0.446017473936081,0.455557823181152,-0.764807462692261,0.455561757087708,0.455699443817139,-0.764638721942902,0.455703347921371,0.437771141529083,-0.785308420658112,0.437775254249573,0.437696933746338,-0.78539103269577,0.437701106071472,0.426776707172394,-0.797320306301117,0.42678102850914,0.426776677370071,-0.797320246696472,0.426780998706818,-0.694263637065887,0.00754626793786883,0.719681203365326,-0.721048712730408,-0.0102332085371017,0.692808747291565,-0.721048772335052,-0.0102332066744566,0.692808747291565,-0.700105249881744,0.00373798841610551,0.714029908180237,-0.450964510440826,0.770232558250427,-0.450968831777573,-0.460438430309296,0.758938908576965,-0.460443258285522,-0.460438430309296,0.758938908576965,-0.460443288087845,-0.451036155223846,0.770148515701294,-0.45104044675827,0.721047461032867,0.0102325296029449,-0.69281017780304,0.721047520637512,0.0102325296029449,-0.69281017780304,0.690995991230011,-0.00953197944909334,-0.72279566526413,0.697561204433441,-0.00529972976073623,-0.716505467891693,0.697561204433441,-0.00529972976073623,-0.716505467891693,0.690995991230011,-0.00953197944909334,-0.72279566526413,0.702576816082001,-0.00304127647541463,-0.711601495742798,0.694174945354462,-0.00812356825917959,-0.719760417938232,-0.450964510440826,0.770232558250427,-0.450968831777573,-0.451036155223846,0.770148515701294,-0.45104044675827,-0.46119087934494,0.758025228977203,-0.461194932460785,-0.461390972137451,0.757781624794006,-0.461394995450974,-0.694263637065887,0.00754626793786883,0.719681203365326,
- -0.700105249881744,0.00373798841610551,0.714029908180237,-0.694285809993744,0.00799217447638512,0.71965503692627,-0.700186848640442,0.00441307155415416,0.713945925235748,0.455557823181152,-0.764807462692261,0.455561757087708,0.437696933746338,-0.78539103269577,0.437701106071472,0.437771141529083,-0.785308420658112,0.437775254249573,0.455699443817139,-0.764638721942902,0.455703347921371,-0.449130028486252,0.780137717723846,-0.435508131980896,-0.449130088090897,0.780137717723846,-0.435508102178574,-0.463889718055725,0.759799063205719,-0.455534607172012,-0.463446110486984,0.76043176651001,-0.454930067062378,-0.72580486536026,3.72245631297119e-005,0.687900602817535,-0.725804805755615,3.72245631297119e-005,0.687900602817535,-0.723674952983856,-0.00142361701000482,0.690139472484589,-0.722089111804962,-0.00250753527507186,0.691795647144318,0.426919311285019,-0.797169923782349,0.426919490098953,0.446015894412994,-0.775975704193115,0.446017473936081,0.446652889251709,-0.775242507457733,0.446654558181763,0.426919281482697,-0.797169864177704,0.426919460296631,1,0,0,1,0,0,1,0,0,1,0,0,0.0104175508022308,-0.00315536977723241,0.999940812587738,0.0104175498709083,-0.00315536931157112,0.999940752983093,0.0104175508022308,-0.00315536931157112,0.999940752983093,0.0104175517335534,-0.00315536954440176,0.999940752983093,-0.766456305980682,0.642271816730499,0.00563582964241505,-0.766456305980682,0.642271757125854,0.00563582964241505,-0.766456305980682,0.642271757125854,0.00563582964241505,-0.766456305980682,0.642271757125854,0.00563582964241505,-0.0165194999426603,0.00212602969259024,-0.999861180782318,-0.0165194999426603,0.00212602992542088,-0.999861299991608,-0.0165195018053055,0.00212602992542088,-0.999861240386963,-0.0165194999426603,0.00212602992542088,-0.999861180782318,0.76670777797699,-0.641968607902527,-0.00595276150852442,0.766707837581635,-0.641968607902527,-0.00595276197418571,0.76670777797699,-0.641968667507172,-0.00595276243984699,0.766707837581635,-0.641968607902527,-0.00595276290550828,-0.758587300777435,0.46650555729866,0.454882234334946,
- -0.308255583047867,-0.292562156915665,0.905199408531189,0.144555032253265,0.220898866653442,0.964524447917938,-0.159914374351501,0.733929932117462,0.660131871700287,-0.377027302980423,0.846000075340271,-0.377007097005844,-0.758587300777435,0.46650555729866,0.454882234334946,-0.159914374351501,0.733929932117462,0.660131871700287,0.0977838262915611,0.990420877933502,0.097492054104805,-0.377027302980423,0.846000075340271,-0.377007097005844,0.0977838262915611,0.990420877933502,0.097492054104805,0.66018146276474,0.733716607093811,-0.160686880350113,0.454878628253937,0.466495722532272,-0.758595645427704,0.90520042181015,-0.292513191699982,-0.308298826217651,0.454878628253937,0.466495722532272,-0.758595645427704,0.66018146276474,0.733716607093811,-0.160686880350113,0.964690327644348,0.22051814198494,0.144028931856155,0.52362048625946,-0.672054290771484,0.52360737323761,0.90520042181015,-0.292513191699982,-0.308298826217651,0.964690327644348,0.22051814198494,0.144028931856155,0.706663250923157,-0.035810399800539,0.706643164157867,-0.308255583047867,-0.292562156915665,0.905199408531189,0.52362048625946,-0.672054290771484,0.52360737323761,0.706663250923157,-0.035810399800539,0.706643164157867,0.144555032253265,0.220898866653442,0.964524447917938,0.541649878025055,0.642755508422852,0.54173868894577,0.541649878025055,0.642755568027496,0.54173868894577,0.541649878025055,0.642755568027496,0.54173868894577,0.541649878025055,0.642755568027496,0.54173868894577,0.541649878025055,0.642755568027496,0.54173868894577,0.54164981842041,0.642755568027496,0.54173868894577,-0.704613208770752,0.085216224193573,-0.704456031322479,-0.445802062749863,0.776207149028778,-0.445828408002853,0.393722176551819,0.393243670463562,-0.830868363380432,-0.111945182085037,-0.184996083378792,-0.976342499256134,-0.976304054260254,-0.185155600309372,-0.11201699078083,-0.830899238586426,0.393194407224655,0.393706262111664,-0.445802062749863,0.776207149028778,-0.445828408002853,-0.704613208770752,0.085216224193573,-0.704456031322479,-0.65556788444519,-0.725716114044189,0.208726644515991,
- -0.376440793275833,-0.372799903154373,0.848122954368591,-0.830899238586426,0.393194407224655,0.393706262111664,-0.976304054260254,-0.185155600309372,-0.11201699078083,-0.0630022957921028,-0.996025145053864,-0.0629655793309212,0.46306386590004,-0.755741775035858,0.463061690330505,-0.376440793275833,-0.372799903154373,0.848122954368591,-0.65556788444519,-0.725716114044189,0.208726644515991,0.208934247493744,-0.725628733634949,-0.655598521232605,0.848158776760101,-0.372709304094315,-0.376449853181839,0.46306386590004,-0.755741775035858,0.463061690330505,-0.0630022957921028,-0.996025145053864,-0.0629655793309212,-0.111945182085037,-0.184996083378792,-0.976342499256134,0.393722176551819,0.393243670463562,-0.830868363380432,0.848158776760101,-0.372709304094315,-0.376449853181839,0.208934247493744,-0.725628733634949,-0.655598521232605,0.393722176551819,0.393243670463562,-0.830868363380432,-0.445802062749863,0.776207149028778,-0.445828408002853,-0.377027302980423,0.846000075340271,-0.377007097005844,0.454878628253937,0.466495722532272,-0.758595645427704,-0.445802062749863,0.776207149028778,-0.445828408002853,-0.830899238586426,0.393194407224655,0.393706262111664,-0.758587300777435,0.46650555729866,0.454882234334946,-0.377027302980423,0.846000075340271,-0.377007097005844,-0.830899238586426,0.393194407224655,0.393706262111664,-0.376440793275833,-0.372799903154373,0.848122954368591,-0.308255583047867,-0.292562156915665,0.905199408531189,-0.758587300777435,0.46650555729866,0.454882234334946,-0.376440793275833,-0.372799903154373,0.848122954368591,0.46306386590004,-0.755741775035858,0.463061690330505,0.52362048625946,-0.672054290771484,0.52360737323761,-0.308255583047867,-0.292562156915665,0.905199408531189,0.46306386590004,-0.755741775035858,0.463061690330505,0.848158776760101,-0.372709304094315,-0.376449853181839,0.90520042181015,-0.292513191699982,-0.308298826217651,0.52362048625946,-0.672054290771484,0.52360737323761,0.848158776760101,-0.372709304094315,-0.376449853181839,0.393722176551819,0.393243670463562,-0.830868363380432,
- 0.454878628253937,0.466495722532272,-0.758595645427704,0.90520042181015,-0.292513191699982,-0.308298826217651,-0.83663022518158,0.386539965867996,0.388119548559189,-0.382125079631805,-0.379525810480118,0.842579782009125,-0.341534405946732,-0.331641286611557,0.879413723945618,-0.794682443141937,0.432133942842484,0.426309823989868,-0.451504111289978,0.76957893371582,-0.451544225215912,-0.83663022518158,0.386539965867996,0.388119548559189,-0.794682443141937,0.432133942842484,0.426309823989868,-0.410763144493103,0.813983500003815,-0.410736382007599,-0.451504111289978,0.76957893371582,-0.451544225215912,-0.410763144493103,0.813983500003815,-0.410736382007599,0.426260769367218,0.43213877081871,-0.794706046581268,0.388047605752945,0.38657084107399,-0.836649239063263,0.842567563056946,-0.379524320363998,-0.382153391838074,0.388047605752945,0.38657084107399,-0.836649239063263,0.426260769367218,0.43213877081871,-0.794706046581268,0.879390180110931,-0.331628084182739,-0.341607660055161,0.457451164722443,-0.76254540681839,0.457452744245529,0.842567563056946,-0.379524320363998,-0.382153391838074,0.879390180110931,-0.331628084182739,-0.341607660055161,0.495456755161285,-0.713481426239014,0.495445996522903,-0.382125079631805,-0.379525810480118,0.842579782009125,0.457451164722443,-0.76254540681839,0.457452744245529,0.495456755161285,-0.713481426239014,0.495445996522903,-0.341534405946732,-0.331641286611557,0.879413723945618,-0.706983864307404,-0.0224821474403143,-0.706872224807739,-0.451504111289978,0.76957893371582,-0.451544225215912,0.388047605752945,0.38657084107399,-0.836649239063263,-0.181752562522888,-0.261955857276917,-0.947810649871826,-0.947727501392365,-0.262085199356079,-0.18199959397316,-0.83663022518158,0.386539965867996,0.388119548559189,-0.451504111289978,0.76957893371582,-0.451544225215912,-0.706983864307404,-0.0224821474403143,-0.706872224807739,-0.663522124290466,-0.74113941192627,0.102228879928589,-0.382125079631805,-0.379525810480118,0.842579782009125,-0.83663022518158,0.386539965867996,0.388119548559189,-0.947727501392365,-0.262085199356079,-0.18199959397316,
- -0.138496980071068,-0.98062390089035,-0.138547226786613,0.457451164722443,-0.76254540681839,0.457452744245529,-0.382125079631805,-0.379525810480118,0.842579782009125,-0.663522124290466,-0.74113941192627,0.102228879928589,0.102518439292908,-0.741081178188324,-0.663542449474335,0.842567563056946,-0.379524320363998,-0.382153391838074,0.457451164722443,-0.76254540681839,0.457452744245529,-0.138496980071068,-0.98062390089035,-0.138547226786613,-0.181752562522888,-0.261955857276917,-0.947810649871826,0.388047605752945,0.38657084107399,-0.836649239063263,0.842567563056946,-0.379524320363998,-0.382153391838074,0.102518439292908,-0.741081178188324,-0.663542449474335,-0.810254096984863,0.410256952047348,0.418542265892029,-0.33568400144577,-0.337135761976242,0.879577040672302,-0.261971086263657,-0.227203041315079,0.937949895858765,-0.72044974565506,0.504192531108856,0.476174384355545,-0.433569699525833,0.789971113204956,-0.433546811342239,-0.810254096984863,0.410256952047348,0.418542265892029,-0.72044974565506,0.504192531108856,0.476174384355545,-0.351116985082626,0.868022263050079,-0.351075619459152,-0.433569699525833,0.789971113204956,-0.433546811342239,-0.351116985082626,0.868022263050079,-0.351075619459152,0.476094096899033,0.504215240478516,-0.720486879348755,0.418495088815689,0.410332262516022,-0.81024032831192,0.879589378833771,-0.337163299322128,-0.335623890161514,0.418495088815689,0.410332262516022,-0.81024032831192,0.476094096899033,0.504215240478516,-0.720486879348755,0.937930285930634,-0.227262020111084,-0.261990129947662,0.501847743988037,-0.70447838306427,0.501855373382568,0.879589378833771,-0.337163299322128,-0.335623890161514,0.937930285930634,-0.227262020111084,-0.261990129947662,0.568758249282837,-0.59414005279541,0.568780839443207,-0.33568400144577,-0.337135761976242,0.879577040672302,0.501847743988037,-0.70447838306427,0.501855373382568,0.568758249282837,-0.59414005279541,0.568780839443207,-0.261971086263657,-0.227203041315079,0.937949895858765,-0.699295341968536,-0.148441985249519,-0.699250400066376,-0.433569699525833,0.789971113204956,-0.433546811342239,
- 0.418495088815689,0.410332262516022,-0.81024032831192,-0.26098108291626,-0.348262071609497,-0.900334537029266,-0.900248944759369,-0.34842249751091,-0.261062383651733,-0.810254096984863,0.410256952047348,0.418542265892029,-0.433569699525833,0.789971113204956,-0.433546811342239,-0.699295341968536,-0.148441985249519,-0.699250400066376,-0.663065016269684,-0.748178839683533,-0.0239381790161133,-0.33568400144577,-0.337135761976242,0.879577040672302,-0.810254096984863,0.410256952047348,0.418542265892029,-0.900248944759369,-0.34842249751091,-0.261062383651733,-0.22486723959446,-0.948094129562378,-0.224838256835938,0.501847743988037,-0.70447838306427,0.501855373382568,-0.33568400144577,-0.337135761976242,0.879577040672302,-0.663065016269684,-0.748178839683533,-0.0239381790161133,-0.0237008891999722,-0.748155355453491,-0.663100183010101,0.879589378833771,-0.337163299322128,-0.335623890161514,0.501847743988037,-0.70447838306427,0.501855373382568,-0.22486723959446,-0.948094129562378,-0.224838256835938,-0.26098108291626,-0.348262071609497,-0.900334537029266,0.418495088815689,0.410332262516022,-0.81024032831192,0.879589378833771,-0.337163299322128,-0.335623890161514,-0.0237008891999722,-0.748155355453491,-0.663100183010101,-0.846576809883118,0.36791780591011,0.384635150432587,-0.366273134946823,-0.379572361707687,0.849569737911224,-0.320108830928802,-0.29656508564949,0.899766385555267,-0.787929534912109,0.445675253868103,0.424900859594345,-0.470536082983017,0.746439158916473,-0.470557361841202,-0.846576809883118,0.36791780591011,0.384635150432587,-0.787929534912109,0.445675253868103,0.424900859594345,-0.414401262998581,0.81028538942337,-0.414378046989441,-0.470536082983017,0.746439158916473,-0.470557361841202,-0.414401262998581,0.81028538942337,-0.414378046989441,0.424801617860794,0.445661336183548,-0.787990808486938,0.384481132030487,0.367958873510361,-0.846628904342651,0.849535822868347,-0.37963005900383,-0.36629194021225,0.384481132030487,0.367958873510361,-0.846628904342651,0.424801617860794,0.445661336183548,-0.787990808486938,
- 0.899725258350372,-0.296613723039627,-0.320179492235184,0.470894128084183,-0.746008455753326,0.470882207155228,0.849535822868347,-0.37963005900383,-0.36629194021225,0.899725258350372,-0.296613723039627,-0.320179492235184,0.524683773517609,-0.670395016670227,0.52466881275177,-0.366273134946823,-0.379572361707687,0.849569737911224,0.470894128084183,-0.746008455753326,0.470882207155228,0.524683773517609,-0.670395016670227,0.52466881275177,-0.320108830928802,-0.29656508564949,0.899766385555267,-0.700734674930573,0.134458601474762,-0.700636804103851,-0.470536082983017,0.746439158916473,-0.470557361841202,0.384481132030487,0.367958873510361,-0.846628904342651,-0.0793760344386101,-0.148880660533905,-0.985664248466492,-0.985655426979065,-0.148905470967293,-0.0794390365481377,-0.846576809883118,0.36791780591011,0.384635150432587,-0.470536082983017,0.746439158916473,-0.470557361841202,-0.700734674930573,0.134458601474762,-0.700636804103851,-0.645973443984985,-0.715259611606598,0.26668718457222,-0.366273134946823,-0.379572361707687,0.849569737911224,-0.846576809883118,0.36791780591011,0.384635150432587,-0.985655426979065,-0.148905470967293,-0.0794390365481377,-0.00960183516144753,-0.999908030033112,-0.0095730060711503,0.470894128084183,-0.746008455753326,0.470882207155228,-0.366273134946823,-0.379572361707687,0.849569737911224,-0.645973443984985,-0.715259611606598,0.26668718457222,0.266730457544327,-0.71525377035141,-0.645961940288544,0.849535822868347,-0.37963005900383,-0.36629194021225,0.470894128084183,-0.746008455753326,0.470882207155228,-0.00960183516144753,-0.999908030033112,-0.0095730060711503,-0.0793760344386101,-0.148880660533905,-0.985664248466492,0.384481132030487,0.367958873510361,-0.846628904342651,0.849535822868347,-0.37963005900383,-0.36629194021225,0.266730457544327,-0.71525377035141,-0.645961940288544,-0.806251227855682,0.429732978343964,0.406556934118271,-0.38793933391571,-0.365449070930481,0.84613835811615,-0.326576054096222,-0.334968626499176,0.88382363319397,-0.757002472877502,0.458533316850662,0.465504497289658,
- -0.408453226089478,0.816294848918915,-0.408446788787842,-0.806251227855682,0.429732978343964,0.406556934118271,-0.757002472877502,0.458533316850662,0.465504497289658,-0.360628068447113,0.860170185565948,-0.360630720853806,-0.408453226089478,0.816294848918915,-0.408446788787842,-0.360628068447113,0.860170185565948,-0.360630720853806,0.465454310178757,0.458593010902405,-0.756997168064117,0.406522423028946,0.429797381162643,-0.806234359741211,0.846152484416962,-0.3654944896698,-0.387865632772446,0.406522423028946,0.429797381162643,-0.806234359741211,0.465454310178757,0.458593010902405,-0.756997168064117,0.883826971054077,-0.335005521774292,-0.326529145240784,0.448737472295761,-0.772825956344604,0.448747754096985,0.846152484416962,-0.3654944896698,-0.387865632772446,0.883826971054077,-0.335005521774292,-0.326529145240784,0.48707127571106,-0.724912524223328,0.487097024917603,-0.38793933391571,-0.365449070930481,0.84613835811615,0.448737472295761,-0.772825956344604,0.448747754096985,0.48707127571106,-0.724912524223328,0.487097024917603,-0.326576054096222,-0.334968626499176,0.88382363319397,-0.704497158527374,0.0854011401534081,-0.704549789428711,-0.408453226089478,0.816294848918915,-0.408446788787842,0.406522423028946,0.429797381162643,-0.806234359741211,-0.111970946192741,-0.185019284486771,-0.976335227489471,-0.97632372379303,-0.185058519244194,-0.112005934119225,-0.806251227855682,0.429732978343964,0.406556934118271,-0.408453226089478,0.816294848918915,-0.408446788787842,-0.704497158527374,0.0854011401534081,-0.704549789428711,-0.655557692050934,-0.725718438625336,0.208750694990158,-0.38793933391571,-0.365449070930481,0.84613835811615,-0.806251227855682,0.429732978343964,0.406556934118271,-0.97632372379303,-0.185058519244194,-0.112005934119225,-0.0629735365509987,-0.996029794216156,-0.0629223361611366,0.448737472295761,-0.772825956344604,0.448747754096985,-0.38793933391571,-0.365449070930481,0.84613835811615,-0.655557692050934,-0.725718438625336,0.208750694990158,0.208770006895065,-0.725755035877228,-0.65551096200943,
- 0.846152484416962,-0.3654944896698,-0.387865632772446,0.448737472295761,-0.772825956344604,0.448747754096985,-0.0629735365509987,-0.996029794216156,-0.0629223361611366,-0.111970946192741,-0.185019284486771,-0.976335227489471,0.406522423028946,0.429797381162643,-0.806234359741211,0.846152484416962,-0.3654944896698,-0.387865632772446,0.208770006895065,-0.725755035877228,-0.65551096200943,-0.819406270980835,0.406065493822098,0.404578983783722,-0.365195125341415,-0.359458535909653,0.85873281955719,-0.279070109128952,-0.258501201868057,0.924822747707367,-0.725846409797668,0.494596242904663,0.478039264678955,-0.43453061580658,0.788888931274414,-0.4345543384552,-0.819406270980835,0.406065493822098,0.404578983783722,-0.725846409797668,0.494596242904663,0.478039264678955,-0.347294926643372,0.871068596839905,-0.347312033176422,-0.43453061580658,0.788888931274414,-0.4345543384552,-0.347294926643372,0.871068596839905,-0.347312033176422,0.478056132793427,0.494509339332581,-0.725894570350647,0.404522687196732,0.406096905469894,-0.819418430328369,0.858717441558838,-0.359456449747086,-0.365233212709427,0.404522687196732,0.406096905469894,-0.819418430328369,0.478056132793427,0.494509339332581,-0.725894570350647,0.924804031848907,-0.258508592844009,-0.279125034809113,0.473891913890839,-0.742232620716095,0.473832368850708,0.858717441558838,-0.359456449747086,-0.365233212709427,0.924804031848907,-0.258508592844009,-0.279125034809113,0.546236276626587,-0.635031580924988,0.546224117279053,-0.365195125341415,-0.359458535909653,0.85873281955719,0.473891913890839,-0.742232620716095,0.473832368850708,0.546236276626587,-0.635031580924988,0.546224117279053,-0.279070109128952,-0.258501201868057,0.924822747707367,-0.706131935119629,-0.0532941780984402,-0.706071794033051,-0.43453061580658,0.788888931274414,-0.4345543384552,0.404522687196732,0.406096905469894,-0.819418430328369,-0.201530665159225,-0.283526748418808,-0.937548935413361,-0.937555909156799,-0.283487796783447,-0.201553076505661,-0.819406270980835,0.406065493822098,0.404578983783722,-0.43453061580658,0.788888931274414,-0.4345543384552,
- -0.706131935119629,-0.0532941780984402,-0.706071794033051,-0.664414823055267,-0.743910253047943,0.0717673972249031,-0.365195125341415,-0.359458535909653,0.85873281955719,-0.819406270980835,0.406065493822098,0.404578983783722,-0.937555909156799,-0.283487796783447,-0.201553076505661,-0.159776657819748,-0.974163174629211,-0.159616902470589,0.473891913890839,-0.742232620716095,0.473832368850708,-0.365195125341415,-0.359458535909653,0.85873281955719,-0.664414823055267,-0.743910253047943,0.0717673972249031,0.0716439858078957,-0.743939101696014,-0.664395809173584,0.858717441558838,-0.359456449747086,-0.365233212709427,0.473891913890839,-0.742232620716095,0.473832368850708,-0.159776657819748,-0.974163174629211,-0.159616902470589,-0.201530665159225,-0.283526748418808,-0.937548935413361,0.404522687196732,0.406096905469894,-0.819418430328369,0.858717441558838,-0.359456449747086,-0.365233212709427,0.0716439858078957,-0.743939101696014,-0.664395809173584,-0.826799750328064,0.412148535251617,0.382799834012985,-0.411304742097855,-0.354540824890137,0.839719712734222,-0.355565011501312,-0.338465511798859,0.87121444940567,-0.780391216278076,0.436630934476852,0.447596997022629,-0.43328869342804,0.790249526500702,-0.433320462703705,-0.826799750328064,0.412148535251617,0.382799834012985,-0.780391216278076,0.436630934476852,0.447596997022629,-0.382554143667221,0.840998470783234,-0.382588505744934,-0.43328869342804,0.790249526500702,-0.433320462703705,-0.382554143667221,0.840998470783234,-0.382588505744934,0.447633653879166,0.436575204133987,-0.780401289463043,0.38282173871994,0.412122875452042,-0.826802432537079,0.839737176895142,-0.354563117027283,-0.411249965429306,0.38282173871994,0.412122875452042,-0.826802432537079,0.447633653879166,0.436575204133987,-0.780401289463043,0.871209561824799,-0.338485270738602,-0.355558156967163,0.457076698541641,-0.762986838817596,0.457090556621552,0.839737176895142,-0.354563117027283,-0.411249965429306,0.871209561824799,-0.338485270738602,-0.355558156967163,0.482427179813385,-0.731109619140625,0.482434213161469,
- -0.411304742097855,-0.354540824890137,0.839719712734222,0.457076698541641,-0.762986838817596,0.457090556621552,0.482427179813385,-0.731109619140625,0.482434213161469,-0.355565011501312,-0.338465511798859,0.87121444940567,-0.702574968338013,-0.113218612968922,-0.702545285224915,-0.43328869342804,0.790249526500702,-0.433320462703705,0.38282173871994,0.412122875452042,-0.826802432537079,-0.141227245330811,-0.286223828792572,-0.947697579860687,-0.947640717029572,-0.286317139863968,-0.141419500112534,-0.826799750328064,0.412148535251617,0.382799834012985,-0.43328869342804,0.790249526500702,-0.433320462703705,-0.702574968338013,-0.113218612968922,-0.702545285224915,-0.608873546123505,-0.74651712179184,0.268300592899323,-0.411304742097855,-0.354540824890137,0.839719712734222,-0.826799750328064,0.412148535251617,0.382799834012985,-0.947640717029572,-0.286317139863968,-0.141419500112534,-0.0127090392634273,-0.999837219715118,-0.0128064071759582,0.457076698541641,-0.762986838817596,0.457090556621552,-0.411304742097855,-0.354540824890137,0.839719712734222,-0.608873546123505,-0.74651712179184,0.268300592899323,0.268594801425934,-0.746409773826599,-0.608875513076782,0.839737176895142,-0.354563117027283,-0.411249965429306,0.457076698541641,-0.762986838817596,0.457090556621552,-0.0127090392634273,-0.999837219715118,-0.0128064071759582,-0.141227245330811,-0.286223828792572,-0.947697579860687,0.38282173871994,0.412122875452042,-0.826802432537079,0.839737176895142,-0.354563117027283,-0.411249965429306,0.268594801425934,-0.746409773826599,-0.608875513076782,-0.849238514900208,0.375811040401459,0.370890736579895,-0.379018694162369,-0.363668769598007,0.850934624671936,-0.305085092782974,-0.28589454293251,0.908398270606995,-0.758353650569916,0.468079388141632,0.453653395175934,-0.47284984588623,0.743504822254181,-0.472877949476242,-0.849238514900208,0.375811040401459,0.370890736579895,-0.758353650569916,0.468079388141632,0.453653395175934,-0.378909170627594,0.844309568405151,-0.378905385732651,-0.47284984588623,0.743504822254181,-0.472877949476242,
- -0.378909170627594,0.844309568405151,-0.378905385732651,0.453684061765671,0.468022137880325,-0.758370637893677,0.370916068553925,0.375787228345871,-0.849237978458405,0.850916147232056,-0.36371922492981,-0.379011690616608,0.370916068553925,0.375787228345871,-0.849237978458405,0.453684061765671,0.468022137880325,-0.758370637893677,0.908368766307831,-0.285938203334808,-0.305132031440735,0.4788558781147,-0.735760271549225,0.478909105062485,0.850916147232056,-0.36371922492981,-0.379011690616608,0.908368766307831,-0.285938203334808,-0.305132031440735,0.529050290584564,-0.663532018661499,0.528990507125854,-0.379018694162369,-0.363668769598007,0.850934624671936,0.4788558781147,-0.735760271549225,0.478909105062485,0.529050290584564,-0.663532018661499,0.528990507125854,-0.305085092782974,-0.28589454293251,0.908398270606995,-0.691233575344086,-0.210704937577248,-0.691230475902557,-0.47284984588623,0.743504822254181,-0.472877949476242,0.370916068553925,0.375787228345871,-0.849237978458405,-0.241815164685249,-0.369200766086578,-0.897338390350342,-0.897305011749268,-0.369195014238358,-0.241947948932648,-0.849238514900208,0.375811040401459,0.370890736579895,-0.47284984588623,0.743504822254181,-0.472877949476242,-0.691233575344086,-0.210704937577248,-0.691230475902557,-0.629699409008026,-0.766396999359131,0.12694239616394,-0.379018694162369,-0.363668769598007,0.850934624671936,-0.849238514900208,0.375811040401459,0.370890736579895,-0.897305011749268,-0.369195014238358,-0.241947948932648,-0.0583617724478245,-0.996588885784149,-0.0583492144942284,0.4788558781147,-0.735760271549225,0.478909105062485,-0.379018694162369,-0.363668769598007,0.850934624671936,-0.629699409008026,-0.766396999359131,0.12694239616394,0.127026453614235,-0.766439974308014,-0.629630088806152,0.850916147232056,-0.36371922492981,-0.379011690616608,0.4788558781147,-0.735760271549225,0.478909105062485,-0.0583617724478245,-0.996588885784149,-0.0583492144942284,-0.241815164685249,-0.369200766086578,-0.897338390350342,0.370916068553925,0.375787228345871,-0.849237978458405,
- 0.850916147232056,-0.36371922492981,-0.379011690616608,0.127026453614235,-0.766439974308014,-0.629630088806152,-0.81847870349884,0.407149702310562,0.405366033315659,-0.364312887191772,-0.358411222696304,0.859544932842255,-0.325305491685867,-0.312495708465576,0.892481327056885,-0.777222156524658,0.449280440807343,0.440536975860596,-0.43365141749382,0.789882183074951,-0.433627247810364,-0.81847870349884,0.407149702310562,0.405366033315659,-0.777222156524658,0.449280440807343,0.440536975860596,-0.394294887781143,0.830093741416931,-0.394304215908051,-0.43365141749382,0.789882183074951,-0.433627247810364,-0.394294887781143,0.830093741416931,-0.394304215908051,0.440582245588303,0.449168354272842,-0.777261257171631,0.405385941267014,0.407098591327667,-0.818494319915771,0.859546899795532,-0.358446538448334,-0.364273548126221,0.405385941267014,0.407098591327667,-0.818494319915771,0.440582245588303,0.449168354272842,-0.777261257171631,0.892462253570557,-0.312543570995331,-0.325311481952667,0.47470885515213,-0.741148173809052,0.4747114777565,0.859546899795532,-0.358446538448334,-0.364273548126221,0.892462253570557,-0.312543570995331,-0.325311481952667,0.509521007537842,-0.693360328674316,0.509548544883728,-0.364312887191772,-0.358411222696304,0.859544932842255,0.47470885515213,-0.741148173809052,0.4747114777565,0.509521007537842,-0.693360328674316,0.509548544883728,-0.325305491685867,-0.312495708465576,0.892481327056885,-0.704559803009033,0.0853553339838982,-0.704492747783661,-0.43365141749382,0.789882183074951,-0.433627247810364,0.405385941267014,0.407098591327667,-0.818494319915771,-0.111859239637852,-0.184930607676506,-0.97636479139328,-0.976323783397675,-0.185042500495911,-0.112032510340214,-0.81847870349884,0.407149702310562,0.405366033315659,-0.43365141749382,0.789882183074951,-0.433627247810364,-0.704559803009033,0.0853553339838982,-0.704492747783661,-0.655538856983185,-0.725731015205383,0.208766013383865,-0.364312887191772,-0.358411222696304,0.859544932842255,-0.81847870349884,0.407149702310562,0.405366033315659,-0.976323783397675,-0.185042500495911,-0.112032510340214,
- -0.0629318654537201,-0.99603408575058,-0.0628947243094444,0.47470885515213,-0.741148173809052,0.4747114777565,-0.364312887191772,-0.358411222696304,0.859544932842255,-0.655538856983185,-0.725731015205383,0.208766013383865,0.208976835012436,-0.725633203983307,-0.655580103397369,0.859546899795532,-0.358446538448334,-0.364273548126221,0.47470885515213,-0.741148173809052,0.4747114777565,-0.0629318654537201,-0.99603408575058,-0.0628947243094444,-0.111859239637852,-0.184930607676506,-0.97636479139328,0.405385941267014,0.407098591327667,-0.818494319915771,0.859546899795532,-0.358446538448334,-0.364273548126221,0.208976835012436,-0.725633203983307,-0.655580103397369,-0.823489665985107,0.403412818908691,0.398902237415314,-0.375895172357559,-0.368015319108963,0.850451409816742,-0.322570532560349,-0.313139289617538,0.893248021602631,-0.770181000232697,0.454112768173218,0.447886914014816,-0.435997575521469,0.787281572818756,-0.435997426509857,-0.823489665985107,0.403412818908691,0.398902237415314,-0.770181000232697,0.454112768173218,0.447886914014816,-0.384989619255066,0.83877968788147,-0.385008722543716,-0.435997575521469,0.787281572818756,-0.435997426509857,-0.384989619255066,0.83877968788147,-0.385008722543716,0.447892814874649,0.454106628894806,-0.770181238651276,0.398920923471451,0.403429687023163,-0.823472261428833,0.850471794605255,-0.368069171905518,-0.375795990228653,0.398920923471451,0.403429687023163,-0.823472261428833,0.447892814874649,0.454106628894806,-0.770181238651276,0.893242597579956,-0.313192754983902,-0.322533935308456,0.463148593902588,-0.75560188293457,0.463205337524414,0.850471794605255,-0.368069171905518,-0.375795990228653,0.893242597579956,-0.313192754983902,-0.322533935308456,0.507957458496094,-0.695690333843231,0.507931113243103,-0.375895172357559,-0.368015319108963,0.850451409816742,0.463148593902588,-0.75560188293457,0.463205337524414,0.507957458496094,-0.695690333843231,0.507931113243103,-0.322570532560349,-0.313139289617538,0.893248021602631,-0.70609974861145,-0.0532346069812775,-0.706108570098877,
- -0.435997575521469,0.787281572818756,-0.435997426509857,0.398920923471451,0.403429687023163,-0.823472261428833,-0.201413094997406,-0.283420205116272,-0.937606334686279,-0.937560796737671,-0.283522695302963,-0.201481506228447,-0.823489665985107,0.403412818908691,0.398902237415314,-0.435997575521469,0.787281572818756,-0.435997426509857,-0.70609974861145,-0.0532346069812775,-0.706108570098877,-0.664387047290802,-0.743950188159943,0.0716095268726349,-0.375895172357559,-0.368015319108963,0.850451409816742,-0.823489665985107,0.403412818908691,0.398902237415314,-0.937560796737671,-0.283522695302963,-0.201481506228447,-0.159673601388931,-0.974151015281677,-0.159793734550476,0.463148593902588,-0.75560188293457,0.463205337524414,-0.375895172357559,-0.368015319108963,0.850451409816742,-0.664387047290802,-0.743950188159943,0.0716095268726349,0.0718720704317093,-0.743909955024719,-0.664403736591339,0.850471794605255,-0.368069171905518,-0.375795990228653,0.463148593902588,-0.75560188293457,0.463205337524414,-0.159673601388931,-0.974151015281677,-0.159793734550476,-0.201413094997406,-0.283420205116272,-0.937606334686279,0.398920923471451,0.403429687023163,-0.823472261428833,0.850471794605255,-0.368069171905518,-0.375795990228653,0.0718720704317093,-0.743909955024719,-0.664403736591339,-0.840601563453674,0.381846517324448,0.384164303541183,-0.386105835437775,-0.384193032979965,0.838640570640564,-0.329119682312012,-0.316971391439438,0.889499425888062,-0.78136670589447,0.445277780294418,0.437257140874863,-0.455483019351959,0.764891386032104,-0.455495625734329,-0.840601563453674,0.381846517324448,0.384164303541183,-0.78136670589447,0.445277780294418,0.437257140874863,-0.398166656494141,0.826383829116821,-0.398187279701233,-0.455483019351959,0.764891386032104,-0.455495625734329,-0.398166656494141,0.826383829116821,-0.398187279701233,0.437232047319412,0.445269614458084,-0.78138542175293,0.384122461080551,0.381867229938507,-0.840611338615417,0.838619589805603,-0.384259909391403,-0.386084944009781,0.384122461080551,0.381867229938507,-0.840611338615417,
- 0.437232047319412,0.445269614458084,-0.78138542175293,0.889470994472504,-0.317011743783951,-0.32915785908699,0.4534912109375,-0.767242729663849,0.453524440526962,0.838619589805603,-0.384259909391403,-0.386084944009781,0.889470994472504,-0.317011743783951,-0.32915785908699,0.506299316883087,-0.698106050491333,0.506269574165344,-0.386105835437775,-0.384193032979965,0.838640570640564,0.4534912109375,-0.767242729663849,0.453524440526962,0.506299316883087,-0.698106050491333,0.506269574165344,-0.329119682312012,-0.316971391439438,0.889499425888062,-0.704806804656982,-0.0814756602048874,-0.704704940319061,-0.455483019351959,0.764891386032104,-0.455495625734329,0.384122461080551,0.381867229938507,-0.840611338615417,-0.219375252723694,-0.302951276302338,-0.927413165569305,-0.927478611469269,-0.302877724170685,-0.219199612736702,-0.840601563453674,0.381846517324448,0.384164303541183,-0.455483019351959,0.764891386032104,-0.455495625734329,-0.704806804656982,-0.0814756602048874,-0.704704940319061,-0.664659321308136,-0.745875000953674,0.0435723774135113,-0.386105835437775,-0.384193032979965,0.838640570640564,-0.840601563453674,0.381846517324448,0.384164303541183,-0.927478611469269,-0.302877724170685,-0.219199612736702,-0.179136544466019,-0.967381298542023,-0.179118603467941,0.4534912109375,-0.767242729663849,0.453524440526962,-0.386105835437775,-0.384193032979965,0.838640570640564,-0.664659321308136,-0.745875000953674,0.0435723774135113,0.0435490608215332,-0.745871245861053,-0.664665102958679,0.838619589805603,-0.384259909391403,-0.386084944009781,0.4534912109375,-0.767242729663849,0.453524440526962,-0.179136544466019,-0.967381298542023,-0.179118603467941,-0.219375252723694,-0.302951276302338,-0.927413165569305,0.384122461080551,0.381867229938507,-0.840611338615417,0.838619589805603,-0.384259909391403,-0.386084944009781,0.0435490608215332,-0.745871245861053,-0.664665102958679,-0.782721400260925,0.457257509231567,0.422211855649948,-0.380344897508621,-0.347618371248245,0.85702919960022,-0.287646323442459,-0.297928750514984,0.910218715667725,
- -0.701550662517548,0.500852048397064,0.506925821304321,-0.380923628807068,0.842499494552612,-0.38090917468071,-0.782721400260925,0.457257509231567,0.422211855649948,-0.701550662517548,0.500852048397064,0.506925821304321,-0.303433358669281,0.903232455253601,-0.3034787774086,-0.380923628807068,0.842499494552612,-0.38090917468071,-0.303433358669281,0.903232455253601,-0.3034787774086,0.506817638874054,0.500900864601135,-0.701594054698944,0.422120898962021,0.457382261753082,-0.78269749879837,0.857032597064972,-0.34769332408905,-0.380269050598145,0.422120898962021,0.457382261753082,-0.78269749879837,0.506817638874054,0.500900864601135,-0.701594054698944,0.910190284252167,-0.297978818416595,-0.287684410810471,0.455188572406769,-0.765244722366333,0.455196678638458,0.857032597064972,-0.34769332408905,-0.380269050598145,0.910190284252167,-0.297978818416595,-0.287684410810471,0.511676788330078,-0.690241515636444,0.511618435382843,-0.380344897508621,-0.347618371248245,0.85702919960022,0.455188572406769,-0.765244722366333,0.455196678638458,0.511676788330078,-0.690241515636444,0.511618435382843,-0.287646323442459,-0.297928750514984,0.910218715667725,-0.704514026641846,0.0853480771183968,-0.704539358615875,-0.380923628807068,0.842499494552612,-0.38090917468071,0.422120898962021,0.457382261753082,-0.78269749879837,-0.111894205212593,-0.184882953763008,-0.976369857788086,-0.976311862468719,-0.185093834996223,-0.112050525844097,-0.782721400260925,0.457257509231567,0.422211855649948,-0.380923628807068,0.842499494552612,-0.38090917468071,-0.704514026641846,0.0853480771183968,-0.704539358615875,-0.655606985092163,-0.725670754909515,0.208761751651764,-0.380344897508621,-0.347618371248245,0.85702919960022,-0.782721400260925,0.457257509231567,0.422211855649948,-0.976311862468719,-0.185093834996223,-0.112050525844097,-0.0629387050867081,-0.996034920215607,-0.0628747642040253,0.455188572406769,-0.765244722366333,0.455196678638458,-0.380344897508621,-0.347618371248245,0.85702919960022,-0.655606985092163,-0.725670754909515,0.208761751651764,
- 0.208958134055138,-0.725675404071808,-0.655539214611053,0.857032597064972,-0.34769332408905,-0.380269050598145,0.455188572406769,-0.765244722366333,0.455196678638458,-0.0629387050867081,-0.996034920215607,-0.0628747642040253,-0.111894205212593,-0.184882953763008,-0.976369857788086,0.422120898962021,0.457382261753082,-0.78269749879837,0.857032597064972,-0.34769332408905,-0.380269050598145,0.208958134055138,-0.725675404071808,-0.655539214611053,-0.824966073036194,0.395388871431351,0.403854668140411,-0.353955864906311,-0.355949074029922,0.86487889289856,-0.324627578258514,-0.30204826593399,0.896316826343536,-0.786354064941406,0.444848388433456,0.42866912484169,-0.446380108594894,0.775554299354553,-0.446385741233826,-0.824966073036194,0.395388871431351,0.403854668140411,-0.786354064941406,0.444848388433456,0.42866912484169,-0.409375131130219,0.815341114997864,-0.409427434206009,-0.446380108594894,0.775554299354553,-0.446385741233826,-0.409375131130219,0.815341114997864,-0.409427434206009,0.428625077009201,0.444815635681152,-0.786396682262421,0.403798669576645,0.395403504371643,-0.824986517429352,0.864869236946106,-0.356044560670853,-0.35388320684433,0.403798669576645,0.395403504371643,-0.824986517429352,0.428625077009201,0.444815635681152,-0.786396682262421,0.896297693252563,-0.302116125822067,-0.324617117643356,0.485554575920105,-0.726960897445679,0.48555588722229,0.864869236946106,-0.356044560670853,-0.35388320684433,0.896297693252563,-0.302116125822067,-0.324617117643356,0.519725203514099,-0.678050637245178,0.5197434425354,-0.353955864906311,-0.355949074029922,0.86487889289856,0.485554575920105,-0.726960897445679,0.48555588722229,0.519725203514099,-0.678050637245178,0.5197434425354,-0.324627578258514,-0.30204826593399,0.896316826343536,-0.707029163837433,0.0105695612728596,-0.707105338573456,-0.446380108594894,0.775554299354553,-0.446385741233826,0.403798669576645,0.395403504371643,-0.824986517429352,-0.160659924149513,-0.23871947824955,-0.957706332206726,-0.957651734352112,-0.23883293569088,-0.160816937685013,-0.824966073036194,0.395388871431351,0.403854668140411,
- -0.446380108594894,0.775554299354553,-0.446385741233826,-0.707029163837433,0.0105695612728596,-0.707105338573456,-0.661908745765686,-0.737330377101898,0.134984493255615,-0.353955864906311,-0.355949074029922,0.86487889289856,-0.824966073036194,0.395388871431351,0.403854668140411,-0.957651734352112,-0.23883293569088,-0.160816937685013,-0.115544348955154,-0.986566781997681,-0.115478947758675,0.485554575920105,-0.726960897445679,0.48555588722229,-0.353955864906311,-0.355949074029922,0.86487889289856,-0.661908745765686,-0.737330377101898,0.134984493255615,0.135042026638985,-0.737312614917755,-0.661916673183441,0.864869236946106,-0.356044560670853,-0.35388320684433,0.485554575920105,-0.726960897445679,0.48555588722229,-0.115544348955154,-0.986566781997681,-0.115478947758675,-0.160659924149513,-0.23871947824955,-0.957706332206726,0.403798669576645,0.395403504371643,-0.824986517429352,0.864869236946106,-0.356044560670853,-0.35388320684433,0.135042026638985,-0.737312614917755,-0.661916673183441,-0.84721702337265,0.373878329992294,0.377409875392914,-0.39282101392746,-0.392065405845642,0.831851124763489,-0.322564363479614,-0.309258729219437,0.894601166248322,-0.774245321750641,0.452097177505493,0.44289094209671,-0.46216607093811,0.756855189800262,-0.462139248847961,-0.84721702337265,0.373878329992294,0.377409875392914,-0.774245321750641,0.452097177505493,0.44289094209671,-0.39151793718338,0.832692205905914,-0.391583263874054,-0.46216607093811,0.756855189800262,-0.462139248847961,-0.39151793718338,0.832692205905914,-0.391583263874054,0.442895233631134,0.452013045549393,-0.774291932582855,0.37740957736969,0.373865485191345,-0.847222924232483,0.83187210559845,-0.39209395647049,-0.392748087644577,0.37740957736969,0.373865485191345,-0.847222924232483,0.442895233631134,0.452013045549393,-0.774291932582855,0.894583702087402,-0.309313833713531,-0.322559714317322,0.446754574775696,-0.775118350982666,0.446768343448639,0.83187210559845,-0.39209395647049,-0.392748087644577,0.894583702087402,-0.309313833713531,-0.322559714317322,0.511844277381897,-0.689965963363647,0.511822640895844,
- -0.39282101392746,-0.392065405845642,0.831851124763489,0.446754574775696,-0.775118350982666,0.446768343448639,0.511844277381897,-0.689965963363647,0.511822640895844,-0.322564363479614,-0.309258729219437,0.894601166248322,-0.70452743768692,0.0855059027671814,-0.704506874084473,-0.46216607093811,0.756855189800262,-0.462139248847961,0.37740957736969,0.373865485191345,-0.847222924232483,-0.111747108399868,-0.184823110699654,-0.976397931575775,-0.976349890232086,-0.18497397005558,-0.111917361617088,-0.84721702337265,0.373878329992294,0.377409875392914,-0.46216607093811,0.756855189800262,-0.462139248847961,-0.70452743768692,0.0855059027671814,-0.704506874084473,-0.655596375465393,-0.725668966770172,0.208801448345184,-0.39282101392746,-0.392065405845642,0.831851124763489,-0.84721702337265,0.373878329992294,0.377409875392914,-0.976349890232086,-0.18497397005558,-0.111917361617088,-0.0629697293043137,-0.996026694774628,-0.0629748553037643,0.446754574775696,-0.775118350982666,0.446768343448639,-0.39282101392746,-0.392065405845642,0.831851124763489,-0.655596375465393,-0.725668966770172,0.208801448345184,0.208976373076439,-0.72567480802536,-0.655534029006958,0.83187210559845,-0.39209395647049,-0.392748087644577,0.446754574775696,-0.775118350982666,0.446768343448639,-0.0629697293043137,-0.996026694774628,-0.0629748553037643,-0.111747108399868,-0.184823110699654,-0.976397931575775,0.37740957736969,0.373865485191345,-0.847222924232483,0.83187210559845,-0.39209395647049,-0.392748087644577,0.208976373076439,-0.72567480802536,-0.655534029006958,-0.8301962018013,0.3940050303936,0.394378513097763,-0.375765681266785,-0.371923178434372,0.848806977272034,-0.335997641086578,-0.325092732906342,0.883979797363281,-0.788769900798798,0.438053071498871,0.431221097707748,-0.445154935121536,0.776984453201294,-0.445120424032211,-0.8301962018013,0.3940050303936,0.394378513097763,-0.788769900798798,0.438053071498871,0.431221097707748,-0.405152916908264,0.819563925266266,-0.405174255371094,-0.445154935121536,0.776984453201294,-0.445120424032211,-0.405152916908264,0.819563925266266,-0.405174255371094,
- 0.431194484233856,0.438009560108185,-0.788808524608612,0.394338011741638,0.39401975274086,-0.830208361148834,0.848790287971497,-0.371994614601135,-0.375732630491257,0.394338011741638,0.39401975274086,-0.830208361148834,0.431194484233856,0.438009560108185,-0.788808524608612,0.883948862552643,-0.325161427259445,-0.336012780666351,0.463748931884766,-0.754912495613098,0.463728487491608,0.848790287971497,-0.371994614601135,-0.375732630491257,0.883948862552643,-0.325161427259445,-0.336012780666351,0.500340461730957,-0.706649422645569,0.500305831432343,-0.375765681266785,-0.371923178434372,0.848806977272034,0.463748931884766,-0.754912495613098,0.463728487491608,0.500340461730957,-0.706649422645569,0.500305831432343,-0.335997641086578,-0.325092732906342,0.883979797363281,-0.112177789211273,-0.185136258602142,-0.976289331912994,-0.704534888267517,0.0852031409740448,-0.704536020755768,-0.445154935121536,0.776984453201294,-0.445120424032211,0.394338011741638,0.39401975274086,-0.830208361148834,-0.704534888267517,0.0852031409740448,-0.704536020755768,-0.976293563842773,-0.185159116983414,-0.112102627754211,-0.8301962018013,0.3940050303936,0.394378513097763,-0.445154935121536,0.776984453201294,-0.445120424032211,-0.976293563842773,-0.185159116983414,-0.112102627754211,-0.655616760253906,-0.725706100463867,0.208608344197273,-0.375765681266785,-0.371923178434372,0.848806977272034,-0.8301962018013,0.3940050303936,0.394378513097763,-0.655616760253906,-0.725706100463867,0.208608344197273,-0.0631450191140175,-0.99601823091507,-0.0629312545061111,0.463748931884766,-0.754912495613098,0.463728487491608,-0.375765681266785,-0.371923178434372,0.848806977272034,-0.0631450191140175,-0.99601823091507,-0.0629312545061111,0.208612844347954,-0.725733757019043,-0.655584514141083,0.848790287971497,-0.371994614601135,-0.375732630491257,0.463748931884766,-0.754912495613098,0.463728487491608,0.208612844347954,-0.725733757019043,-0.655584514141083,-0.112177789211273,-0.185136258602142,-0.976289331912994,0.394338011741638,0.39401975274086,-0.830208361148834,
- 0.848790287971497,-0.371994614601135,-0.375732630491257,-0.541639685630798,-0.642759144306183,-0.541744589805603,-0.541639685630798,-0.642759203910828,-0.541744589805603,-0.541639626026154,-0.642759203910828,-0.541744530200958,-0.541639626026154,-0.642759084701538,-0.541744530200958,-0.541639626026154,-0.642759144306183,-0.541744530200958,-0.541639626026154,-0.642759144306183,-0.541744530200958,-0.75860720872879,0.466510653495789,0.454843819141388,-0.308274567127228,-0.292545318603516,0.905198335647583,0.144316524267197,0.220704138278961,0.96460485458374,-0.160235658288002,0.733827888965607,0.660167634487152,-0.377015590667725,0.845991790294647,-0.377037227153778,-0.75860720872879,0.466510653495789,0.454843819141388,-0.160235658288002,0.733827888965607,0.660167634487152,0.0976901724934578,0.990405917167664,0.097738578915596,-0.377015590667725,0.845991790294647,-0.377037227153778,0.0976901724934578,0.990405917167664,0.097738578915596,0.660182416439056,0.733834087848663,-0.160146042704582,0.454872995615005,0.466501355171204,-0.758595407009125,0.905211567878723,-0.292520642280579,-0.308259278535843,0.454872995615005,0.466501355171204,-0.758595407009125,0.660182416439056,0.733834087848663,-0.160146042704582,0.964612424373627,0.220728889107704,0.144228041172028,0.523613512516022,-0.672035157680511,0.523638844490051,0.905211567878723,-0.292520642280579,-0.308259278535843,0.964612424373627,0.220728889107704,0.144228041172028,0.706754148006439,-0.0358292423188686,0.706551373004913,-0.308274567127228,-0.292545318603516,0.905198335647583,0.523613512516022,-0.672035157680511,0.523638844490051,0.706754148006439,-0.0358292423188686,0.706551373004913,0.144316524267197,0.220704138278961,0.96460485458374,0.541661262512207,0.642751693725586,0.541731894016266,0.541661202907562,0.642751693725586,0.541731894016266,0.541661202907562,0.642751693725586,0.541731834411621,0.541661262512207,0.642751753330231,0.541731834411621,0.541661143302917,0.642751693725586,0.541731774806976,0.541661202907562,0.642751693725586,0.541731834411621,-0.704529047012329,0.0853993520140648,-0.70451807975769,
- -0.445827603340149,0.77620130777359,-0.445813119411469,0.393680363893509,0.393223792314529,-0.830897629261017,-0.111970625817776,-0.184963777661324,-0.976345777511597,-0.976345181465149,-0.185016199946404,-0.111889205873013,-0.830893933773041,0.393241047859192,0.393670976161957,-0.445827603340149,0.77620130777359,-0.445813119411469,-0.704529047012329,0.0853993520140648,-0.70451807975769,-0.655543267726898,-0.725708186626434,0.208831936120987,-0.376457095146179,-0.372750699520111,0.848137378692627,-0.830893933773041,0.393241047859192,0.393670976161957,-0.976345181465149,-0.185016199946404,-0.111889205873013,-0.0630626976490021,-0.996020555496216,-0.0629779994487762,0.463055372238159,-0.755738139152527,0.463076174259186,-0.376457095146179,-0.372750699520111,0.848137378692627,-0.655543267726898,-0.725708186626434,0.208831936120987,0.208692565560341,-0.725715279579163,-0.655579686164856,0.848139345645905,-0.372750908136368,-0.37645223736763,0.463055372238159,-0.755738139152527,0.463076174259186,-0.0630626976490021,-0.996020555496216,-0.0629779994487762,-0.111970625817776,-0.184963777661324,-0.976345777511597,0.393680363893509,0.393223792314529,-0.830897629261017,0.848139345645905,-0.372750908136368,-0.37645223736763,0.208692565560341,-0.725715279579163,-0.655579686164856,0.393680363893509,0.393223792314529,-0.830897629261017,-0.445827603340149,0.77620130777359,-0.445813119411469,-0.377015590667725,0.845991790294647,-0.377037227153778,0.454872995615005,0.466501355171204,-0.758595407009125,-0.445827603340149,0.77620130777359,-0.445813119411469,-0.830893933773041,0.393241047859192,0.393670976161957,-0.75860720872879,0.466510653495789,0.454843819141388,-0.377015590667725,0.845991790294647,-0.377037227153778,-0.830893933773041,0.393241047859192,0.393670976161957,-0.376457095146179,-0.372750699520111,0.848137378692627,-0.308274567127228,-0.292545318603516,0.905198335647583,-0.75860720872879,0.466510653495789,0.454843819141388,-0.376457095146179,-0.372750699520111,0.848137378692627,0.463055372238159,-0.755738139152527,0.463076174259186,
- 0.523613512516022,-0.672035157680511,0.523638844490051,-0.308274567127228,-0.292545318603516,0.905198335647583,0.463055372238159,-0.755738139152527,0.463076174259186,0.848139345645905,-0.372750908136368,-0.37645223736763,0.905211567878723,-0.292520642280579,-0.308259278535843,0.523613512516022,-0.672035157680511,0.523638844490051,0.848139345645905,-0.372750908136368,-0.37645223736763,0.393680363893509,0.393223792314529,-0.830897629261017,0.454872995615005,0.466501355171204,-0.758595407009125,0.905211567878723,-0.292520642280579,-0.308259278535843,-0.836642384529114,0.386557936668396,0.3880755007267,-0.382123649120331,-0.379543244838715,0.842572569847107,-0.341553747653961,-0.33165168762207,0.879402220249176,-0.794692993164063,0.432128548622131,0.426295608282089,-0.4515380859375,0.769572913646698,-0.451520711183548,-0.836642384529114,0.386557936668396,0.3880755007267,-0.794692993164063,0.432128548622131,0.426295608282089,-0.4107685983181,0.813981831073761,-0.410734385251999,-0.4515380859375,0.769572913646698,-0.451520711183548,-0.4107685983181,0.813981831073761,-0.410734385251999,0.426279604434967,0.432143986225128,-0.794693171977997,0.388059049844742,0.386574417352676,-0.836642324924469,0.842584252357483,-0.379478335380554,-0.382162094116211,0.388059049844742,0.386574417352676,-0.836642324924469,0.426279604434967,0.432143986225128,-0.794693171977997,0.879417717456818,-0.331570148468018,-0.341593086719513,0.457472085952759,-0.762545645236969,0.457431375980377,0.842584252357483,-0.379478335380554,-0.382162094116211,0.879417717456818,-0.331570148468018,-0.341593086719513,0.495438754558563,-0.713470816612244,0.495479464530945,-0.382123649120331,-0.379543244838715,0.842572569847107,0.457472085952759,-0.762545645236969,0.457431375980377,0.495438754558563,-0.713470816612244,0.495479464530945,-0.341553747653961,-0.33165168762207,0.879402220249176,-0.706937551498413,-0.0225904807448387,-0.706915140151978,-0.4515380859375,0.769572913646698,-0.451520711183548,0.388059049844742,0.386574417352676,-0.836642324924469,-0.181763172149658,-0.2619688808918,-0.947805047035217,
- -0.947725772857666,-0.262111097574234,-0.181971698999405,-0.836642384529114,0.386557936668396,0.3880755007267,-0.4515380859375,0.769572913646698,-0.451520711183548,-0.706937551498413,-0.0225904807448387,-0.706915140151978,-0.663559198379517,-0.7411048412323,0.102239489555359,-0.382123649120331,-0.379543244838715,0.842572569847107,-0.836642384529114,0.386557936668396,0.3880755007267,-0.947725772857666,-0.262111097574234,-0.181971698999405,-0.138603240251541,-0.980618119239807,-0.138481602072716,0.457472085952759,-0.762545645236969,0.457431375980377,-0.382123649120331,-0.379543244838715,0.842572569847107,-0.663559198379517,-0.7411048412323,0.102239489555359,0.102380558848381,-0.74106377363205,-0.663583219051361,0.842584252357483,-0.379478335380554,-0.382162094116211,0.457472085952759,-0.762545645236969,0.457431375980377,-0.138603240251541,-0.980618119239807,-0.138481602072716,-0.181763172149658,-0.2619688808918,-0.947805047035217,0.388059049844742,0.386574417352676,-0.836642324924469,0.842584252357483,-0.379478335380554,-0.382162094116211,0.102380558848381,-0.74106377363205,-0.663583219051361,-0.810234904289246,0.410254657268524,0.418581575155258,-0.335698664188385,-0.337135523557663,0.879571437835693,-0.262047499418259,-0.227186486124992,0.93793249130249,-0.720443606376648,0.504199326038361,0.476176381111145,-0.433542728424072,0.789994060993195,-0.433531939983368,-0.810234904289246,0.410254657268524,0.418581575155258,-0.720443606376648,0.504199326038361,0.476176381111145,-0.35108757019043,0.868041634559631,-0.351057142019272,-0.433542728424072,0.789994060993195,-0.433531939983368,-0.35108757019043,0.868041634559631,-0.351057142019272,0.476079642772675,0.50422865152359,-0.720487177371979,0.418490797281265,0.41032287478447,-0.810247242450714,0.87958288192749,-0.337191522121429,-0.335612565279007,0.418490797281265,0.41032287478447,-0.810247242450714,0.476079642772675,0.50422865152359,-0.720487177371979,0.937934160232544,-0.227248698472977,-0.261987954378128,0.501852333545685,-0.704476177692413,0.501854121685028,0.87958288192749,-0.337191522121429,-0.335612565279007,
- 0.937934160232544,-0.227248698472977,-0.261987954378128,0.56873220205307,-0.594146966934204,0.568799734115601,-0.335698664188385,-0.337135523557663,0.879571437835693,0.501852333545685,-0.704476177692413,0.501854121685028,0.56873220205307,-0.594146966934204,0.568799734115601,-0.262047499418259,-0.227186486124992,0.93793249130249,-0.699277758598328,-0.148432165384293,-0.699269890785217,-0.433542728424072,0.789994060993195,-0.433531939983368,0.418490797281265,0.41032287478447,-0.810247242450714,-0.261069297790527,-0.348288744688034,-0.900298714637756,-0.900259733200073,-0.348396956920624,-0.261058926582336,-0.810234904289246,0.410254657268524,0.418581575155258,-0.433542728424072,0.789994060993195,-0.433531939983368,-0.699277758598328,-0.148432165384293,-0.699269890785217,-0.663051724433899,-0.748194932937622,-0.023808877915144,-0.335698664188385,-0.337135523557663,0.879571437835693,-0.810234904289246,0.410254657268524,0.418581575155258,-0.900259733200073,-0.348396956920624,-0.261058926582336,-0.224870726466179,-0.948097169399261,-0.224821999669075,0.501852333545685,-0.704476177692413,0.501854121685028,-0.335698664188385,-0.337135523557663,0.879571437835693,-0.663051724433899,-0.748194932937622,-0.023808877915144,-0.0238432977348566,-0.748171806335449,-0.663076460361481,0.87958288192749,-0.337191522121429,-0.335612565279007,0.501852333545685,-0.704476177692413,0.501854121685028,-0.224870726466179,-0.948097169399261,-0.224821999669075,-0.261069297790527,-0.348288744688034,-0.900298714637756,0.418490797281265,0.41032287478447,-0.810247242450714,0.87958288192749,-0.337191522121429,-0.335612565279007,-0.0238432977348566,-0.748171806335449,-0.663076460361481,-0.846601068973541,0.36790806055069,0.384591192007065,-0.366311997175217,-0.379555135965347,0.849560797214508,-0.320145905017853,-0.296556949615479,0.899755835533142,-0.787958085536957,0.445639282464981,0.424885511398315,-0.470552265644073,0.746430516242981,-0.470554888248444,-0.846601068973541,0.36790806055069,0.384591192007065,-0.787958085536957,0.445639282464981,0.424885511398315,
- -0.414401531219482,0.810271859169006,-0.414404213428497,-0.470552265644073,0.746430516242981,-0.470554888248444,-0.414401531219482,0.810271859169006,-0.414404213428497,0.424810647964478,0.445682942867279,-0.787973701953888,0.384500503540039,0.367969959974289,-0.846615314483643,0.849558711051941,-0.379605174064636,-0.366264879703522,0.384500503540039,0.367969959974289,-0.846615314483643,0.424810647964478,0.445682942867279,-0.787973701953888,0.899750411510468,-0.296593755483627,-0.320127159357071,0.470898628234863,-0.746009588241577,0.470875918865204,0.849558711051941,-0.379605174064636,-0.366264879703522,0.899750411510468,-0.296593755483627,-0.320127159357071,0.524702548980713,-0.670387864112854,0.524659335613251,-0.366311997175217,-0.379555135965347,0.849560797214508,0.470898628234863,-0.746009588241577,0.470875918865204,0.524702548980713,-0.670387864112854,0.524659335613251,-0.320145905017853,-0.296556949615479,0.899755835533142,-0.700680017471313,0.134547621011734,-0.70067435503006,-0.470552265644073,0.746430516242981,-0.470554888248444,0.384500503540039,0.367969959974289,-0.846615314483643,-0.0793614983558655,-0.148848325014114,-0.985670268535614,-0.985665082931519,-0.148859456181526,-0.0794054791331291,-0.846601068973541,0.36790806055069,0.384591192007065,-0.470552265644073,0.746430516242981,-0.470554888248444,-0.700680017471313,0.134547621011734,-0.70067435503006,-0.646041333675385,-0.715215086936951,0.266642093658447,-0.366311997175217,-0.379555135965347,0.849560797214508,-0.846601068973541,0.36790806055069,0.384591192007065,-0.985665082931519,-0.148859456181526,-0.0794054791331291,-0.00961002521216869,-0.999907553195953,-0.00962159503251314,0.470898628234863,-0.746009588241577,0.470875918865204,-0.366311997175217,-0.379555135965347,0.849560797214508,-0.646041333675385,-0.715215086936951,0.266642093658447,0.266628563404083,-0.715292751789093,-0.645960867404938,0.849558711051941,-0.379605174064636,-0.366264879703522,0.470898628234863,-0.746009588241577,0.470875918865204,-0.00961002521216869,-0.999907553195953,-0.00962159503251314,
- -0.0793614983558655,-0.148848325014114,-0.985670268535614,0.384500503540039,0.367969959974289,-0.846615314483643,0.849558711051941,-0.379605174064636,-0.366264879703522,0.266628563404083,-0.715292751789093,-0.645960867404938,-0.806230187416077,0.42971658706665,0.406616002321243,-0.387895256280899,-0.365504711866379,0.84613448381424,-0.326582759618759,-0.334987848997116,0.883813858032227,-0.757000386714935,0.458530932664871,0.465510219335556,-0.408446669578552,0.816291987895966,-0.408458888530731,-0.806230187416077,0.42971658706665,0.406616002321243,-0.757000386714935,0.458530932664871,0.465510219335556,-0.360649257898331,0.860166013240814,-0.360619604587555,-0.408446669578552,0.816291987895966,-0.408458888530731,-0.360649257898331,0.860166013240814,-0.360619604587555,0.465518742799759,0.458502024412155,-0.757012665271759,0.406575471162796,0.429750561714172,-0.806232511997223,0.846158444881439,-0.365475833415985,-0.387870103120804,0.406575471162796,0.429750561714172,-0.806232511997223,0.465518742799759,0.458502024412155,-0.757012665271759,0.883815944194794,-0.335001945495605,-0.326562732458115,0.448749721050262,-0.772819519042969,0.448746591806412,0.846158444881439,-0.365475833415985,-0.387870103120804,0.883815944194794,-0.335001945495605,-0.326562732458115,0.487069576978683,-0.72492378950119,0.487081736326218,-0.387895256280899,-0.365504711866379,0.84613448381424,0.448749721050262,-0.772819519042969,0.448746591806412,0.487069576978683,-0.72492378950119,0.487081736326218,-0.326582759618759,-0.334987848997116,0.883813858032227,-0.70468670129776,0.0855272263288498,-0.704344987869263,-0.408446669578552,0.816291987895966,-0.408458888530731,0.406575471162796,0.429750561714172,-0.806232511997223,-0.111968889832497,-0.184965088963509,-0.976345717906952,-0.976424694061279,-0.184700608253479,-0.111715957522392,-0.806230187416077,0.42971658706665,0.406616002321243,-0.408446669578552,0.816291987895966,-0.408458888530731,-0.70468670129776,0.0855272263288498,-0.704344987869263,-0.655617117881775,-0.725557923316956,0.209121987223625,
- -0.387895256280899,-0.365504711866379,0.84613448381424,-0.806230187416077,0.42971658706665,0.406616002321243,-0.976424694061279,-0.184700608253479,-0.111715957522392,-0.0629492998123169,-0.996038794517517,-0.0628024339675903,0.448749721050262,-0.772819519042969,0.448746591806412,-0.387895256280899,-0.365504711866379,0.84613448381424,-0.655617117881775,-0.725557923316956,0.209121987223625,0.20892097055912,-0.725690007209778,-0.65553492307663,0.846158444881439,-0.365475833415985,-0.387870103120804,0.448749721050262,-0.772819519042969,0.448746591806412,-0.0629492998123169,-0.996038794517517,-0.0628024339675903,-0.111968889832497,-0.184965088963509,-0.976345717906952,0.406575471162796,0.429750561714172,-0.806232511997223,0.846158444881439,-0.365475833415985,-0.387870103120804,0.20892097055912,-0.725690007209778,-0.65553492307663,-0.819431960582733,0.406064242124558,0.404528260231018,-0.365228921175003,-0.359447121620178,0.858723223209381,-0.279068678617477,-0.25852444767952,0.9248166680336,-0.725883364677429,0.49454590678215,0.478035241365433,-0.434550106525421,0.788875639438629,-0.434558928012848,-0.819431960582733,0.406064242124558,0.404528260231018,-0.725883364677429,0.49454590678215,0.478035241365433,-0.347287595272064,0.871047735214233,-0.347372055053711,-0.434550106525421,0.788875639438629,-0.434558928012848,-0.347287595272064,0.871047735214233,-0.347372055053711,0.477983385324478,0.494521498680115,-0.725934088230133,0.40445750951767,0.406121075153351,-0.819438815116882,0.858702957630157,-0.359480559825897,-0.36524373292923,0.40445750951767,0.406121075153351,-0.819438815116882,0.477983385324478,0.494521498680115,-0.725934088230133,0.924781799316406,-0.258531719446182,-0.279177367687225,0.473850846290588,-0.742237746715546,0.473865538835526,0.858702957630157,-0.359480559825897,-0.36524373292923,0.924781799316406,-0.258531719446182,-0.279177367687225,0.546226859092712,-0.635038495063782,0.546225488185883,-0.365228921175003,-0.359447121620178,0.858723223209381,0.473850846290588,-0.742237746715546,0.473865538835526,
- 0.546226859092712,-0.635038495063782,0.546225488185883,-0.279068678617477,-0.25852444767952,0.9248166680336,-0.706085860729218,-0.0530330911278725,-0.706137537956238,-0.434550106525421,0.788875639438629,-0.434558928012848,0.40445750951767,0.406121075153351,-0.819438815116882,-0.201377049088478,-0.283411741256714,-0.937616765499115,-0.93759697675705,-0.283383667469025,-0.201508060097694,-0.819431960582733,0.406064242124558,0.404528260231018,-0.434550106525421,0.788875639438629,-0.434558928012848,-0.706085860729218,-0.0530330911278725,-0.706137537956238,-0.664372503757477,-0.74395364522934,0.0717092826962471,-0.365228921175003,-0.359447121620178,0.858723223209381,-0.819431960582733,0.406064242124558,0.404528260231018,-0.93759697675705,-0.283383667469025,-0.201508060097694,-0.159699559211731,-0.974156200885773,-0.159736439585686,0.473850846290588,-0.742237746715546,0.473865538835526,-0.365228921175003,-0.359447121620178,0.858723223209381,-0.664372503757477,-0.74395364522934,0.0717092826962471,0.0717445835471153,-0.743957996368408,-0.66436380147934,0.858702957630157,-0.359480559825897,-0.36524373292923,0.473850846290588,-0.742237746715546,0.473865538835526,-0.159699559211731,-0.974156200885773,-0.159736439585686,-0.201377049088478,-0.283411741256714,-0.937616765499115,0.40445750951767,0.406121075153351,-0.819438815116882,0.858702957630157,-0.359480559825897,-0.36524373292923,0.0717445835471153,-0.743957996368408,-0.66436380147934,-0.826805651187897,0.412122428417206,0.382815331220627,-0.411272495985031,-0.354568779468536,0.839723706245422,-0.355562061071396,-0.338508427143097,0.871199011802673,-0.780406057834625,0.436569839715958,0.447630494832993,-0.433317959308624,0.790246427059174,-0.433296710252762,-0.826805651187897,0.412122428417206,0.382815331220627,-0.780406057834625,0.436569839715958,0.447630494832993,-0.382567256689072,0.840994894504547,-0.38258308172226,-0.433317959308624,0.790246427059174,-0.433296710252762,-0.382567256689072,0.840994894504547,-0.38258308172226,0.447677433490753,0.436507374048233,-0.780414044857025,
- 0.382824659347534,0.412099987268448,-0.826812446117401,0.839727163314819,-0.354559987783432,-0.411272913217545,0.382824659347534,0.412099987268448,-0.826812446117401,0.447677433490753,0.436507374048233,-0.780414044857025,0.871194303035736,-0.338493227958679,-0.355588018894196,0.457093745470047,-0.762990057468414,0.457068413496017,0.839727163314819,-0.354559987783432,-0.411272913217545,0.871194303035736,-0.338493227958679,-0.355588018894196,0.482437461614609,-0.731121957302094,0.482405185699463,-0.411272495985031,-0.354568779468536,0.839723706245422,0.457093745470047,-0.762990057468414,0.457068413496017,0.482437461614609,-0.731121957302094,0.482405185699463,-0.355562061071396,-0.338508427143097,0.871199011802673,-0.702585816383362,-0.113214954733849,-0.702535033226013,-0.433317959308624,0.790246427059174,-0.433296710252762,0.382824659347534,0.412099987268448,-0.826812446117401,-0.141156360507011,-0.286131411790848,-0.947736024856567,-0.947705805301666,-0.286207795143127,-0.141205191612244,-0.826805651187897,0.412122428417206,0.382815331220627,-0.433317959308624,0.790246427059174,-0.433296710252762,-0.702585816383362,-0.113214954733849,-0.702535033226013,-0.60885363817215,-0.746418476104736,0.268620073795319,-0.411272495985031,-0.354568779468536,0.839723706245422,-0.826805651187897,0.412122428417206,0.382815331220627,-0.947705805301666,-0.286207795143127,-0.141205191612244,-0.012611816637218,-0.999841034412384,-0.0126013625413179,0.457093745470047,-0.762990057468414,0.457068413496017,-0.411272495985031,-0.354568779468536,0.839723706245422,-0.60885363817215,-0.746418476104736,0.268620073795319,0.268744617700577,-0.746345698833466,-0.608887851238251,0.839727163314819,-0.354559987783432,-0.411272913217545,0.457093745470047,-0.762990057468414,0.457068413496017,-0.012611816637218,-0.999841034412384,-0.0126013625413179,-0.141156360507011,-0.286131411790848,-0.947736024856567,0.382824659347534,0.412099987268448,-0.826812446117401,0.839727163314819,-0.354559987783432,-0.411272913217545,0.268744617700577,-0.746345698833466,-0.608887851238251,
- -0.849262654781342,0.375769346952438,0.370877683162689,-0.379045456647873,-0.363690167665482,0.850913524627686,-0.305121511220932,-0.28590926527977,0.908381342887878,-0.758377194404602,0.468017727136612,0.45367756485939,-0.472847700119019,0.743499517440796,-0.472888588905334,-0.849262654781342,0.375769346952438,0.370877683162689,-0.758377194404602,0.468017727136612,0.45367756485939,-0.378912687301636,0.844306468963623,-0.378908306360245,-0.472847700119019,0.743499517440796,-0.472888588905334,-0.378912687301636,0.844306468963623,-0.378908306360245,0.453616827726364,0.468097299337387,-0.75836443901062,0.370845794677734,0.375853091478348,-0.849239528179169,0.850934863090515,-0.363694071769714,-0.378993988037109,0.370845794677734,0.375853091478348,-0.849239528179169,0.453616827726364,0.468097299337387,-0.75836443901062,0.908388495445251,-0.285883337259293,-0.305124640464783,0.478911250829697,-0.735764026641846,0.4788478910923,0.850934863090515,-0.363694071769714,-0.378993988037109,0.908388495445251,-0.285883337259293,-0.305124640464783,0.529025793075562,-0.66352641582489,0.529022216796875,-0.379045456647873,-0.363690167665482,0.850913524627686,0.478911250829697,-0.735764026641846,0.4788478910923,0.529025793075562,-0.66352641582489,0.529022216796875,-0.305121511220932,-0.28590926527977,0.908381342887878,-0.691237211227417,-0.210675492882729,-0.691235780715942,-0.472847700119019,0.743499517440796,-0.472888588905334,0.370845794677734,0.375853091478348,-0.849239528179169,-0.241841703653336,-0.369110137224197,-0.897368490695953,-0.897319257259369,-0.369212001562119,-0.241868853569031,-0.849262654781342,0.375769346952438,0.370877683162689,-0.472847700119019,0.743499517440796,-0.472888588905334,-0.691237211227417,-0.210675492882729,-0.691235780715942,-0.629684269428253,-0.766411066055298,0.126932099461555,-0.379045456647873,-0.363690167665482,0.850913524627686,-0.849262654781342,0.375769346952438,0.370877683162689,-0.897319257259369,-0.369212001562119,-0.241868853569031,-0.0584356896579266,-0.996587514877319,-0.0582967288792133,
- 0.478911250829697,-0.735764026641846,0.4788478910923,-0.379045456647873,-0.363690167665482,0.850913524627686,-0.629684269428253,-0.766411066055298,0.126932099461555,0.127018466591835,-0.766401052474976,-0.629679024219513,0.850934863090515,-0.363694071769714,-0.378993988037109,0.478911250829697,-0.735764026641846,0.4788478910923,-0.0584356896579266,-0.996587514877319,-0.0582967288792133,-0.241841703653336,-0.369110137224197,-0.897368490695953,0.370845794677734,0.375853091478348,-0.849239528179169,0.850934863090515,-0.363694071769714,-0.378993988037109,0.127018466591835,-0.766401052474976,-0.629679024219513,-0.818467259407043,0.40715366601944,0.405385196208954,-0.364278882741928,-0.358421564102173,0.859555006027222,-0.325297474861145,-0.312537789344788,0.89246940612793,-0.777228176593781,0.44924595952034,0.440561354160309,-0.433614164590836,0.789891123771667,-0.43364804983139,-0.818467259407043,0.40715366601944,0.405385196208954,-0.777228176593781,0.44924595952034,0.440561354160309,-0.394300431013107,0.830103874206543,-0.394277453422546,-0.433614164590836,0.789891123771667,-0.43364804983139,-0.394300431013107,0.830103874206543,-0.394277453422546,0.440534740686417,0.44923323392868,-0.777250647544861,0.405339807271957,0.407132744789124,-0.818500161170959,0.859539866447449,-0.358431786298752,-0.364304661750793,0.405339807271957,0.407132744789124,-0.818500161170959,0.440534740686417,0.44923323392868,-0.777250647544861,0.892467617988586,-0.312508404254913,-0.32533073425293,0.474731266498566,-0.741146564483643,0.4746915102005,0.859539866447449,-0.358431786298752,-0.364304661750793,0.892467617988586,-0.312508404254913,-0.32533073425293,0.509497940540314,-0.693363189697266,0.50956779718399,-0.364278882741928,-0.358421564102173,0.859555006027222,0.474731266498566,-0.741146564483643,0.4746915102005,0.509497940540314,-0.693363189697266,0.50956779718399,-0.325297474861145,-0.312537789344788,0.89246940612793,-0.704646587371826,0.0851214006543159,-0.704434216022491,-0.433614164590836,0.789891123771667,-0.43364804983139,0.405339807271957,0.407132744789124,-0.818500161170959,
- -0.112073466181755,-0.185214504599571,-0.976286470890045,-0.97633284330368,-0.185061395168304,-0.111922390758991,-0.818467259407043,0.40715366601944,0.405385196208954,-0.433614164590836,0.789891123771667,-0.43364804983139,-0.704646587371826,0.0851214006543159,-0.704434216022491,-0.655493319034576,-0.725690364837646,0.209049805998802,-0.364278882741928,-0.358421564102173,0.859555006027222,-0.818467259407043,0.40715366601944,0.405385196208954,-0.97633284330368,-0.185061395168304,-0.111922390758991,-0.063031017780304,-0.996035814285278,-0.0627669543027878,0.474731266498566,-0.741146564483643,0.4746915102005,-0.364278882741928,-0.358421564102173,0.859555006027222,-0.655493319034576,-0.725690364837646,0.209049805998802,0.208672374486923,-0.725757896900177,-0.65553891658783,0.859539866447449,-0.358431786298752,-0.364304661750793,0.474731266498566,-0.741146564483643,0.4746915102005,-0.063031017780304,-0.996035814285278,-0.0627669543027878,-0.112073466181755,-0.185214504599571,-0.976286470890045,0.405339807271957,0.407132744789124,-0.818500161170959,0.859539866447449,-0.358431786298752,-0.364304661750793,0.208672374486923,-0.725757896900177,-0.65553891658783,-0.823490858078003,0.403394550085068,0.398918062448502,-0.375862747430801,-0.368070006370544,0.850442051887512,-0.322581648826599,-0.313193380832672,0.893225073814392,-0.770191073417664,0.454081505537033,0.447901457548141,-0.436004668474197,0.787287771701813,-0.435979247093201,-0.823490858078003,0.403394550085068,0.398918062448502,-0.770191073417664,0.454081505537033,0.447901457548141,-0.385005325078964,0.838782548904419,-0.384986758232117,-0.436004668474197,0.787287771701813,-0.435979247093201,-0.385005325078964,0.838782548904419,-0.384986758232117,0.447902262210846,0.454086571931839,-0.770187616348267,0.39892840385437,0.403431177139282,-0.823467969894409,0.850475668907166,-0.368052810430527,-0.375803560018539,0.39892840385437,0.403431177139282,-0.823467969894409,0.447902262210846,0.454086571931839,-0.770187616348267,0.893239319324493,-0.313178956508636,-0.322556138038635,
- 0.463153958320618,-0.755603671073914,0.463197082281113,0.850475668907166,-0.368052810430527,-0.375803560018539,0.893239319324493,-0.313178956508636,-0.322556138038635,0.507916450500488,-0.695708751678467,0.507946968078613,-0.375862747430801,-0.368070006370544,0.850442051887512,0.463153958320618,-0.755603671073914,0.463197082281113,0.507916450500488,-0.695708751678467,0.507946968078613,-0.322581648826599,-0.313193380832672,0.893225073814392,-0.706075072288513,-0.0532378740608692,-0.706133008003235,-0.436004668474197,0.787287771701813,-0.435979247093201,0.39892840385437,0.403431177139282,-0.823467969894409,-0.20129981637001,-0.283423721790314,-0.937629640102386,-0.937575995922089,-0.283461630344391,-0.201496198773384,-0.823490858078003,0.403394550085068,0.398918062448502,-0.436004668474197,0.787287771701813,-0.435979247093201,-0.706075072288513,-0.0532378740608692,-0.706133008003235,-0.664435803890228,-0.743896007537842,0.0717204883694649,-0.375862747430801,-0.368070006370544,0.850442051887512,-0.823490858078003,0.403394550085068,0.398918062448502,-0.937575995922089,-0.283461630344391,-0.201496198773384,-0.159714788198471,-0.974147319793701,-0.15977580845356,0.463153958320618,-0.755603671073914,0.463197082281113,-0.375862747430801,-0.368070006370544,0.850442051887512,-0.664435803890228,-0.743896007537842,0.0717204883694649,0.0718380287289619,-0.74388176202774,-0.664439141750336,0.850475668907166,-0.368052810430527,-0.375803560018539,0.463153958320618,-0.755603671073914,0.463197082281113,-0.159714788198471,-0.974147319793701,-0.15977580845356,-0.20129981637001,-0.283423721790314,-0.937629640102386,0.39892840385437,0.403431177139282,-0.823467969894409,0.850475668907166,-0.368052810430527,-0.375803560018539,0.0718380287289619,-0.74388176202774,-0.664439141750336,-0.840591132640839,0.381887018680573,0.384146988391876,-0.386102467775345,-0.38418635725975,0.838645160198212,-0.329123735427856,-0.316971659660339,0.889497995376587,-0.781364023685455,0.445304542779922,0.43723464012146,-0.455510079860687,0.764882743358612,-0.455483287572861,
- -0.840591132640839,0.381887018680573,0.384146988391876,-0.781364023685455,0.445304542779922,0.43723464012146,-0.398154675960541,0.826372981071472,-0.39822182059288,-0.455510079860687,0.764882743358612,-0.455483287572861,-0.398154675960541,0.826372981071472,-0.39822182059288,0.437238693237305,0.445247739553452,-0.781394124031067,0.38412144780159,0.38184255361557,-0.840622961521149,0.838625967502594,-0.384244203567505,-0.38608655333519,0.38412144780159,0.38184255361557,-0.840622961521149,0.437238693237305,0.445247739553452,-0.781394124031067,0.889484167098999,-0.317009270191193,-0.329124420881271,0.453505247831345,-0.767239987850189,0.453514844179153,0.838625967502594,-0.384244203567505,-0.38608655333519,0.889484167098999,-0.317009270191193,-0.329124420881271,0.506303250789642,-0.698102712631226,0.506270349025726,-0.386102467775345,-0.38418635725975,0.838645160198212,0.453505247831345,-0.767239987850189,0.453514844179153,0.506303250789642,-0.698102712631226,0.506270349025726,-0.329123735427856,-0.316971659660339,0.889497995376587,-0.704801797866821,-0.0814793780446053,-0.704709589481354,-0.455510079860687,0.764882743358612,-0.455483287572861,0.38412144780159,0.38184255361557,-0.840622961521149,-0.219418257474899,-0.30294468998909,-0.927404999732971,-0.927503049373627,-0.30281999707222,-0.219176203012466,-0.840591132640839,0.381887018680573,0.384146988391876,-0.455510079860687,0.764882743358612,-0.455483287572861,-0.704801797866821,-0.0814793780446053,-0.704709589481354,-0.664675891399384,-0.745856046676636,0.0436422489583492,-0.386102467775345,-0.38418635725975,0.838645160198212,-0.840591132640839,0.381887018680573,0.384146988391876,-0.927503049373627,-0.30281999707222,-0.219176203012466,-0.179109737277031,-0.967388570308685,-0.179106444120407,0.453505247831345,-0.767239987850189,0.453514844179153,-0.386102467775345,-0.38418635725975,0.838645160198212,-0.664675891399384,-0.745856046676636,0.0436422489583492,0.0434457845985889,-0.745894372463226,-0.664645791053772,0.838625967502594,-0.384244203567505,-0.38608655333519,
- 0.453505247831345,-0.767239987850189,0.453514844179153,-0.179109737277031,-0.967388570308685,-0.179106444120407,-0.219418257474899,-0.30294468998909,-0.927404999732971,0.38412144780159,0.38184255361557,-0.840622961521149,0.838625967502594,-0.384244203567505,-0.38608655333519,0.0434457845985889,-0.745894372463226,-0.664645791053772,-0.782723307609558,0.457243770360947,0.422223180532455,-0.380308836698532,-0.3477403819561,0.856995761394501,-0.287666082382202,-0.298031181097031,0.910178959369659,-0.70157915353775,0.500834167003632,0.506904125213623,-0.380901783704758,0.842505812644959,-0.380917131900787,-0.782723307609558,0.457243770360947,0.422223180532455,-0.70157915353775,0.500834167003632,0.506904125213623,-0.303424209356308,0.903234779834747,-0.303481012582779,-0.380901783704758,0.842505812644959,-0.380917131900787,-0.303424209356308,0.903234779834747,-0.303481012582779,0.506808638572693,0.500909924507141,-0.701594054698944,0.422121495008469,0.457374393939972,-0.782701849937439,0.857037603855133,-0.34766098856926,-0.380287289619446,0.422121495008469,0.457374393939972,-0.782701849937439,0.506808638572693,0.500909924507141,-0.701594054698944,0.910195767879486,-0.297933012247086,-0.287714332342148,0.455179810523987,-0.765255272388458,0.455187648534775,0.857037603855133,-0.34766098856926,-0.380287289619446,0.910195767879486,-0.297933012247086,-0.287714332342148,0.511618375778198,-0.690266251564026,0.511643588542938,-0.380308836698532,-0.3477403819561,0.856995761394501,0.455179810523987,-0.765255272388458,0.455187648534775,0.511618375778198,-0.690266251564026,0.511643588542938,-0.287666082382202,-0.298031181097031,0.910178959369659,-0.704614996910095,0.0852937027812004,-0.704445064067841,-0.380901783704758,0.842505812644959,-0.380917131900787,0.422121495008469,0.457374393939972,-0.782701849937439,-0.112008288502693,-0.185015425086021,-0.97633159160614,-0.976349353790283,-0.185002818703651,-0.111875228583813,-0.782723307609558,0.457243770360947,0.422223180532455,-0.380901783704758,0.842505812644959,-0.380917131900787,
- -0.704614996910095,0.0852937027812004,-0.704445064067841,-0.655577540397644,-0.725634217262268,0.208981081843376,-0.380308836698532,-0.3477403819561,0.856995761394501,-0.782723307609558,0.457243770360947,0.422223180532455,-0.976349353790283,-0.185002818703651,-0.111875228583813,-0.0629676952958107,-0.996033310890198,-0.0628711804747581,0.455179810523987,-0.765255272388458,0.455187648534775,-0.380308836698532,-0.3477403819561,0.856995761394501,-0.655577540397644,-0.725634217262268,0.208981081843376,0.208857983350754,-0.725670039653778,-0.655577123165131,0.857037603855133,-0.34766098856926,-0.380287289619446,0.455179810523987,-0.765255272388458,0.455187648534775,-0.0629676952958107,-0.996033310890198,-0.0628711804747581,-0.112008288502693,-0.185015425086021,-0.97633159160614,0.422121495008469,0.457374393939972,-0.782701849937439,0.857037603855133,-0.34766098856926,-0.380287289619446,0.208857983350754,-0.725670039653778,-0.655577123165131,-0.824972927570343,0.395401000976563,0.403828799724579,-0.353905379772186,-0.355989307165146,0.864883005619049,-0.324585467576981,-0.302082180976868,0.896320641040802,-0.786371409893036,0.444850832223892,0.42863467335701,-0.446352958679199,0.775557816028595,-0.446406781673431,-0.824972927570343,0.395401000976563,0.403828799724579,-0.786371409893036,0.444850832223892,0.42863467335701,-0.409394919872284,0.815340459346771,-0.409409016370773,-0.446352958679199,0.775557816028595,-0.446406781673431,-0.409394919872284,0.815340459346771,-0.409409016370773,0.428653419017792,0.444812923669815,-0.786382615566254,0.403822928667068,0.395405828952789,-0.824973464012146,0.864874958992004,-0.356008797883987,-0.353905588388443,0.403822928667068,0.395405828952789,-0.824973464012146,0.428653419017792,0.444812923669815,-0.786382615566254,0.896293759346008,-0.302093088626862,-0.324649482965469,0.485545963048935,-0.726955652236938,0.48557236790657,0.864874958992004,-0.356008797883987,-0.353905588388443,0.896293759346008,-0.302093088626862,-0.324649482965469,0.519756078720093,-0.678043127059937,0.519722104072571,
- -0.353905379772186,-0.355989307165146,0.864883005619049,0.485545963048935,-0.726955652236938,0.48557236790657,0.519756078720093,-0.678043127059937,0.519722104072571,-0.324585467576981,-0.302082180976868,0.896320641040802,-0.707131564617157,0.0105782840400934,-0.707002818584442,-0.446352958679199,0.775557816028595,-0.446406781673431,0.403822928667068,0.395405828952789,-0.824973464012146,-0.160480141639709,-0.238728195428848,-0.957734286785126,-0.957705318927765,-0.238746285438538,-0.160626202821732,-0.824972927570343,0.395401000976563,0.403828799724579,-0.446352958679199,0.775557816028595,-0.446406781673431,-0.707131564617157,0.0105782840400934,-0.707002818584442,-0.661927938461304,-0.737283289432526,0.135146364569664,-0.353905379772186,-0.355989307165146,0.864883005619049,-0.824972927570343,0.395401000976563,0.403828799724579,-0.957705318927765,-0.238746285438538,-0.160626202821732,-0.115449286997318,-0.986579775810242,-0.115463279187679,0.485545963048935,-0.726955652236938,0.48557236790657,-0.353905379772186,-0.355989307165146,0.864883005619049,-0.661927938461304,-0.737283289432526,0.135146364569664,0.13530558347702,-0.737277030944824,-0.661902606487274,0.864874958992004,-0.356008797883987,-0.353905588388443,0.485545963048935,-0.726955652236938,0.48557236790657,-0.115449286997318,-0.986579775810242,-0.115463279187679,-0.160480141639709,-0.238728195428848,-0.957734286785126,0.403822928667068,0.395405828952789,-0.824973464012146,0.864874958992004,-0.356008797883987,-0.353905588388443,0.13530558347702,-0.737277030944824,-0.661902606487274,-0.847223520278931,0.373887568712235,0.377386391162872,-0.392809212207794,-0.392070442438126,0.831854343414307,-0.322543054819107,-0.309266209602356,0.894606292247772,-0.774262547492981,0.452121406793594,0.442836046218872,-0.462129980325699,0.756845891475677,-0.462190628051758,-0.847223520278931,0.373887568712235,0.377386391162872,-0.774262547492981,0.452121406793594,0.442836046218872,-0.391585409641266,0.832681357860565,-0.391538769006729,-0.462129980325699,0.756845891475677,-0.462190628051758,
- -0.391585409641266,0.832681357860565,-0.391538769006729,0.442907452583313,0.451977133750916,-0.774305939674377,0.377406895160675,0.373843669891357,-0.847233712673187,0.831845283508301,-0.392141819000244,-0.39275735616684,0.377406895160675,0.373843669891357,-0.847233712673187,0.442907452583313,0.451977133750916,-0.774305939674377,0.894558250904083,-0.309370785951614,-0.322575986385345,0.446734517812729,-0.775126338005066,0.446774423122406,0.831845283508301,-0.392141819000244,-0.39275735616684,0.894558250904083,-0.309370785951614,-0.322575986385345,0.511860489845276,-0.689974069595337,0.511795401573181,-0.392809212207794,-0.392070442438126,0.831854343414307,0.446734517812729,-0.775126338005066,0.446774423122406,0.511860489845276,-0.689974069595337,0.511795401573181,-0.322543054819107,-0.309266209602356,0.894606292247772,-0.704645991325378,0.0853685289621353,-0.704404950141907,-0.462129980325699,0.756845891475677,-0.462190628051758,0.377406895160675,0.373843669891357,-0.847233712673187,-0.111826226115227,-0.184957578778267,-0.97636353969574,-0.976357579231262,-0.184922695159912,-0.111935473978519,-0.847223520278931,0.373887568712235,0.377386391162872,-0.462129980325699,0.756845891475677,-0.462190628051758,-0.704645991325378,0.0853685289621353,-0.704404950141907,-0.655605018138886,-0.725654304027557,0.208824843168259,-0.392809212207794,-0.392070442438126,0.831854343414307,-0.847223520278931,0.373887568712235,0.377386391162872,-0.976357579231262,-0.184922695159912,-0.111935473978519,-0.0629433393478394,-0.996034264564514,-0.0628808066248894,0.446734517812729,-0.775126338005066,0.446774423122406,-0.392809212207794,-0.392070442438126,0.831854343414307,-0.655605018138886,-0.725654304027557,0.208824843168259,0.209017366170883,-0.725687742233276,-0.655506670475006,0.831845283508301,-0.392141819000244,-0.39275735616684,0.446734517812729,-0.775126338005066,0.446774423122406,-0.0629433393478394,-0.996034264564514,-0.0628808066248894,-0.111826226115227,-0.184957578778267,-0.97636353969574,0.377406895160675,0.373843669891357,-0.847233712673187,
- 0.831845283508301,-0.392141819000244,-0.39275735616684,0.209017366170883,-0.725687742233276,-0.655506670475006,-0.830184876918793,0.393957197666168,0.394449949264526,-0.375765085220337,-0.371961325407028,0.84879058599472,-0.336041659116745,-0.325106084346771,0.883958160877228,-0.788777232170105,0.438013851642609,0.431247383356094,-0.445135325193405,0.776988804340363,-0.445132315158844,-0.830184876918793,0.393957197666168,0.394449949264526,-0.788777232170105,0.438013851642609,0.431247383356094,-0.405132830142975,0.819562792778015,-0.40519654750824,-0.445135325193405,0.776988804340363,-0.445132315158844,-0.405132830142975,0.819562792778015,-0.40519654750824,0.431153446435928,0.438032180070877,-0.78881847858429,0.394296258687973,0.39404034614563,-0.830218315124512,0.848796129226685,-0.371994495391846,-0.375719875097275,0.394296258687973,0.39404034614563,-0.830218315124512,0.431153446435928,0.438032180070877,-0.78881847858429,0.883949160575867,-0.325149059295654,-0.336023986339569,0.463720798492432,-0.754920125007629,0.463744193315506,0.848796129226685,-0.371994495391846,-0.375719875097275,0.883949160575867,-0.325149059295654,-0.336023986339569,0.50030779838562,-0.706662893295288,0.50031965970993,-0.375765085220337,-0.371961325407028,0.84879058599472,0.463720798492432,-0.754920125007629,0.463744193315506,0.50030779838562,-0.706662893295288,0.50031965970993,-0.336041659116745,-0.325106084346771,0.883958160877228,-0.111998982727528,-0.185042828321457,-0.976327538490295,-0.704568922519684,0.0854467824101448,-0.704472541809082,-0.445135325193405,0.776988804340363,-0.445132315158844,0.394296258687973,0.39404034614563,-0.830218315124512,-0.704568922519684,0.0854467824101448,-0.704472541809082,-0.97634744644165,-0.184974908828735,-0.11193809658289,-0.830184876918793,0.393957197666168,0.394449949264526,-0.445135325193405,0.776988804340363,-0.445132315158844,-0.97634744644165,-0.184974908828735,-0.11193809658289,-0.65560781955719,-0.725638508796692,0.208870932459831,-0.375765085220337,-0.371961325407028,0.84879058599472,-0.830184876918793,0.393957197666168,0.394449949264526,
- -0.65560781955719,-0.725638508796692,0.208870932459831,-0.0629497468471527,-0.996029078960419,-0.0629569068551064,0.463720798492432,-0.754920125007629,0.463744193315506,-0.375765085220337,-0.371961325407028,0.84879058599472,-0.0629497468471527,-0.996029078960419,-0.0629569068551064,0.208740472793579,-0.725754380226135,-0.655521214008331,0.848796129226685,-0.371994495391846,-0.375719875097275,0.463720798492432,-0.754920125007629,0.463744193315506,0.208740472793579,-0.725754380226135,-0.655521214008331,-0.111998982727528,-0.185042828321457,-0.976327538490295,0.394296258687973,0.39404034614563,-0.830218315124512,0.848796129226685,-0.371994495391846,-0.375719875097275,-0.541641175746918,-0.642767131328583,-0.54173356294632,-0.541641235351563,-0.642767131328583,-0.541733622550964,-0.541641175746918,-0.642767131328583,-0.541733622550964,-0.541641235351563,-0.642767131328583,-0.541733622550964,-0.541641175746918,-0.642767071723938,-0.54173356294632,-0.541641175746918,-0.642767190933228,-0.541733622550964,-0.758591890335083,0.466510862112045,0.454869031906128,-0.308262020349503,-0.292545765638351,0.905202507972717,0.144430622458458,0.220885634422302,0.964546144008636,-0.160136982798576,0.733856379985809,0.660159766674042,-0.376982301473618,0.846004843711853,-0.377041310071945,-0.758591890335083,0.466510862112045,0.454869031906128,-0.160136982798576,0.733856379985809,0.660159766674042,0.0975176990032196,0.990415811538696,0.097809374332428,-0.376982301473618,0.846004843711853,-0.377041310071945,0.0975176990032196,0.990415811538696,0.097809374332428,0.660163104534149,0.733833730220795,-0.160227164626122,0.454902738332748,0.466486513614655,-0.758586704730988,0.905198633670807,-0.29254561662674,-0.308273196220398,0.454902738332748,0.466486513614655,-0.758586704730988,0.660163104534149,0.733833730220795,-0.160227164626122,0.964588642120361,0.220810934901237,0.144261002540588,0.523627698421478,-0.672049820423126,0.523605763912201,0.905198633670807,-0.29254561662674,-0.308273196220398,0.964588642120361,0.220810934901237,0.144261002540588,
- 0.706617653369904,-0.0356231778860092,0.70669823884964,-0.308262020349503,-0.292545765638351,0.905202507972717,0.523627698421478,-0.672049820423126,0.523605763912201,0.706617653369904,-0.0356231778860092,0.70669823884964,0.144430622458458,0.220885634422302,0.964546144008636,0.541666328907013,0.642733335494995,0.541748523712158,0.541666328907013,0.642733335494995,0.541748523712158,0.541666388511658,0.642733335494995,0.541748583316803,0.541666269302368,0.642733335494995,0.541748464107513,0.541666328907013,0.642733335494995,0.541748464107513,0.541666328907013,0.64273339509964,0.541748523712158,-0.70454740524292,0.0852051228284836,-0.704523265361786,-0.445842653512955,0.776203155517578,-0.445794999599457,0.393722921609879,0.393197119235992,-0.830890119075775,-0.112020276486874,-0.185134187340736,-0.97630774974823,-0.976324260234833,-0.185047805309296,-0.112018428742886,-0.830898702144623,0.393218159675598,0.393683731555939,-0.445842653512955,0.776203155517578,-0.445794999599457,-0.70454740524292,0.0852051228284836,-0.704523265361786,-0.655671775341034,-0.725603520870209,0.208791494369507,-0.376461803913116,-0.372767210006714,0.848128020763397,-0.830898702144623,0.393218159675598,0.393683731555939,-0.976324260234833,-0.185047805309296,-0.112018428742886,-0.0630122795701027,-0.996025860309601,-0.0629452094435692,0.463046371936798,-0.755746483802795,0.463071644306183,-0.376461803913116,-0.372767210006714,0.848128020763397,-0.655671775341034,-0.725603520870209,0.208791494369507,0.208788141608238,-0.72567754983902,-0.655591011047363,0.848129212856293,-0.372785687446594,-0.3764408826828,0.463046371936798,-0.755746483802795,0.463071644306183,-0.0630122795701027,-0.996025860309601,-0.0629452094435692,-0.112020276486874,-0.185134187340736,-0.97630774974823,0.393722921609879,0.393197119235992,-0.830890119075775,0.848129212856293,-0.372785687446594,-0.3764408826828,0.208788141608238,-0.72567754983902,-0.655591011047363,0.393722921609879,0.393197119235992,-0.830890119075775,-0.445842653512955,0.776203155517578,-0.445794999599457,
- -0.376982301473618,0.846004843711853,-0.377041310071945,0.454902738332748,0.466486513614655,-0.758586704730988,-0.445842653512955,0.776203155517578,-0.445794999599457,-0.830898702144623,0.393218159675598,0.393683731555939,-0.758591890335083,0.466510862112045,0.454869031906128,-0.376982301473618,0.846004843711853,-0.377041310071945,-0.830898702144623,0.393218159675598,0.393683731555939,-0.376461803913116,-0.372767210006714,0.848128020763397,-0.308262020349503,-0.292545765638351,0.905202507972717,-0.758591890335083,0.466510862112045,0.454869031906128,-0.376461803913116,-0.372767210006714,0.848128020763397,0.463046371936798,-0.755746483802795,0.463071644306183,0.523627698421478,-0.672049820423126,0.523605763912201,-0.308262020349503,-0.292545765638351,0.905202507972717,0.463046371936798,-0.755746483802795,0.463071644306183,0.848129212856293,-0.372785687446594,-0.3764408826828,0.905198633670807,-0.29254561662674,-0.308273196220398,0.523627698421478,-0.672049820423126,0.523605763912201,0.848129212856293,-0.372785687446594,-0.3764408826828,0.393722921609879,0.393197119235992,-0.830890119075775,0.454902738332748,0.466486513614655,-0.758586704730988,0.905198633670807,-0.29254561662674,-0.308273196220398,-0.836630344390869,0.386576443910599,0.388082772493362,-0.382191002368927,-0.379449605941772,0.842584192752838,-0.341610580682755,-0.331563115119934,0.879413485527039,-0.794683516025543,0.432177007198334,0.42626416683197,-0.451515972614288,0.769580245018005,-0.451530307531357,-0.836630344390869,0.386576443910599,0.388082772493362,-0.794683516025543,0.432177007198334,0.42626416683197,-0.410727292299271,0.813987851142883,-0.410763800144196,-0.451515972614288,0.769580245018005,-0.451530307531357,-0.410727292299271,0.813987851142883,-0.410763800144196,0.426316529512405,0.43211555480957,-0.794688880443573,0.388114422559738,0.386542171239853,-0.83663147687912,0.842580020427704,-0.37953782081604,-0.38211265206337,0.388114422559738,0.386542171239853,-0.83663147687912,0.426316529512405,0.43211555480957,-0.794688880443573,0.879404842853546,-0.331639736890793,-0.341558635234833,
- 0.457453370094299,-0.762538969516754,0.457461178302765,0.842580020427704,-0.37953782081604,-0.38211265206337,0.879404842853546,-0.331639736890793,-0.341558635234833,0.495464861392975,-0.71347177028656,0.495451927185059,-0.382191002368927,-0.379449605941772,0.842584192752838,0.457453370094299,-0.762538969516754,0.457461178302765,0.495464861392975,-0.71347177028656,0.495451927185059,-0.341610580682755,-0.331563115119934,0.879413485527039,-0.706892490386963,-0.0224842727184296,-0.706963539123535,-0.451515972614288,0.769580245018005,-0.451530307531357,0.388114422559738,0.386542171239853,-0.83663147687912,-0.181731030344963,-0.261930137872696,-0.947821974754334,-0.947748482227325,-0.2620669901371,-0.181916639208794,-0.836630344390869,0.386576443910599,0.388082772493362,-0.451515972614288,0.769580245018005,-0.451530307531357,-0.706892490386963,-0.0224842727184296,-0.706963539123535,-0.663508534431458,-0.74114727973938,0.102260395884514,-0.382191002368927,-0.379449605941772,0.842584192752838,-0.836630344390869,0.386576443910599,0.388082772493362,-0.947748482227325,-0.2620669901371,-0.181916639208794,-0.138424292206764,-0.980639219284058,-0.138511538505554,0.457453370094299,-0.762538969516754,0.457461178302765,-0.382191002368927,-0.379449605941772,0.842584192752838,-0.663508534431458,-0.74114727973938,0.102260395884514,0.102622717618942,-0.741063952445984,-0.663545668125153,0.842580020427704,-0.37953782081604,-0.38211265206337,0.457453370094299,-0.762538969516754,0.457461178302765,-0.138424292206764,-0.980639219284058,-0.138511538505554,-0.181731030344963,-0.261930137872696,-0.947821974754334,0.388114422559738,0.386542171239853,-0.83663147687912,0.842580020427704,-0.37953782081604,-0.38211265206337,0.102622717618942,-0.741063952445984,-0.663545668125153,-0.810263812541962,0.410306572914124,0.418474674224854,-0.335674732923508,-0.337141364812851,0.879578351974487,-0.261957675218582,-0.227203711867332,0.937953472137451,-0.720453083515167,0.504237353801727,0.476121932268143,-0.433557957410812,0.789978802204132,-0.433544635772705,
- -0.810263812541962,0.410306572914124,0.418474674224854,-0.720453083515167,0.504237353801727,0.476121932268143,-0.351100146770477,0.868034482002258,-0.3510622382164,-0.433557957410812,0.789978802204132,-0.433544635772705,-0.351100146770477,0.868034482002258,-0.3510622382164,0.476126283407211,0.504172265529633,-0.720495700836182,0.418504178524017,0.410262107849121,-0.810271203517914,0.879563748836517,-0.337199747562408,-0.335654377937317,0.418504178524017,0.410262107849121,-0.810271203517914,0.476126283407211,0.504172265529633,-0.720495700836182,0.937921166419983,-0.227274939417839,-0.262011647224426,0.50184154510498,-0.704486489295959,0.501850247383118,0.879563748836517,-0.337199747562408,-0.335654377937317,0.937921166419983,-0.227274939417839,-0.262011647224426,0.568747401237488,-0.594146609306335,0.568784892559052,-0.335674732923508,-0.337141364812851,0.879578351974487,0.50184154510498,-0.704486489295959,0.501850247383118,0.568747401237488,-0.594146609306335,0.568784892559052,-0.261957675218582,-0.227203711867332,0.937953472137451,-0.699280440807343,-0.148448243737221,-0.69926393032074,-0.433557957410812,0.789978802204132,-0.433544635772705,0.418504178524017,0.410262107849121,-0.810271203517914,-0.261027783155441,-0.348374158143997,-0.900277674198151,-0.90025520324707,-0.348391532897949,-0.261082321405411,-0.810263812541962,0.410306572914124,0.418474674224854,-0.433557957410812,0.789978802204132,-0.433544635772705,-0.699280440807343,-0.148448243737221,-0.69926393032074,-0.663068115711212,-0.748176395893097,-0.0239324569702148,-0.335674732923508,-0.337141364812851,0.879578351974487,-0.810263812541962,0.410306572914124,0.418474674224854,-0.90025520324707,-0.348391532897949,-0.261082321405411,-0.22492977976799,-0.948074698448181,-0.224857732653618,0.50184154510498,-0.704486489295959,0.501850247383118,-0.335674732923508,-0.337141364812851,0.879578351974487,-0.663068115711212,-0.748176395893097,-0.0239324569702148,-0.0238866060972214,-0.748182356357574,-0.663062930107117,0.879563748836517,-0.337199747562408,-0.335654377937317,
- 0.50184154510498,-0.704486489295959,0.501850247383118,-0.22492977976799,-0.948074698448181,-0.224857732653618,-0.261027783155441,-0.348374158143997,-0.900277674198151,0.418504178524017,0.410262107849121,-0.810271203517914,0.879563748836517,-0.337199747562408,-0.335654377937317,-0.0238866060972214,-0.748182356357574,-0.663062930107117,-0.846589267253876,0.367955714464188,0.384571552276611,-0.366296947002411,-0.379542291164398,0.849572956562042,-0.32014673948288,-0.296544849872589,0.899759531021118,-0.787943422794342,0.445673942565918,0.424876421689987,-0.470573633909225,0.746439099311829,-0.470520079135895,-0.846589267253876,0.367955714464188,0.384571552276611,-0.787943422794342,0.445673942565918,0.424876421689987,-0.414387971162796,0.810284674167633,-0.414392679929733,-0.470573633909225,0.746439099311829,-0.470520079135895,-0.414387971162796,0.810284674167633,-0.414392679929733,0.424922376871109,0.445623099803925,-0.787947356700897,0.384609580039978,0.36791929602623,-0.846587717533112,0.849569261074066,-0.379581063985825,-0.366265326738358,0.384609580039978,0.36791929602623,-0.846587717533112,0.424922376871109,0.445623099803925,-0.787947356700897,0.899754405021667,-0.296588897705078,-0.320120394229889,0.470885843038559,-0.746002316474915,0.470900118350983,0.849569261074066,-0.379581063985825,-0.366265326738358,0.899754405021667,-0.296588897705078,-0.320120394229889,0.524688720703125,-0.6703861951828,0.524675309658051,-0.366296947002411,-0.379542291164398,0.849572956562042,0.470885843038559,-0.746002316474915,0.470900118350983,0.524688720703125,-0.6703861951828,0.524675309658051,-0.32014673948288,-0.296544849872589,0.899759531021118,-0.700647532939911,0.134546592831612,-0.700706899166107,-0.470573633909225,0.746439099311829,-0.470520079135895,0.384609580039978,0.36791929602623,-0.846587717533112,-0.0792626738548279,-0.148861527442932,-0.985676288604736,-0.985670208930969,-0.148859888315201,-0.0793413445353508,-0.846589267253876,0.367955714464188,0.384571552276611,-0.470573633909225,0.746439099311829,-0.470520079135895,
- -0.700647532939911,0.134546592831612,-0.700706899166107,-0.645968317985535,-0.715240240097046,0.266751140356064,-0.366296947002411,-0.379542291164398,0.849572956562042,-0.846589267253876,0.367955714464188,0.384571552276611,-0.985670208930969,-0.148859888315201,-0.0793413445353508,-0.00955349765717983,-0.99990850687027,-0.00957545638084412,0.470885843038559,-0.746002316474915,0.470900118350983,-0.366296947002411,-0.379542291164398,0.849572956562042,-0.645968317985535,-0.715240240097046,0.266751140356064,0.266833275556564,-0.715246319770813,-0.645927906036377,0.849569261074066,-0.379581063985825,-0.366265326738358,0.470885843038559,-0.746002316474915,0.470900118350983,-0.00955349765717983,-0.99990850687027,-0.00957545638084412,-0.0792626738548279,-0.148861527442932,-0.985676288604736,0.384609580039978,0.36791929602623,-0.846587717533112,0.849569261074066,-0.379581063985825,-0.366265326738358,0.266833275556564,-0.715246319770813,-0.645927906036377,-0.806244611740112,0.429757714271545,0.406543910503387,-0.387922763824463,-0.365494430065155,0.846126317977905,-0.326570689678192,-0.335018157958984,0.883806824684143,-0.757006764411926,0.458535432815552,0.465495496988297,-0.408470183610916,0.816293895244598,-0.408431619405746,-0.806244611740112,0.429757714271545,0.406543910503387,-0.757006764411926,0.458535432815552,0.465495496988297,-0.360642284154892,0.860167145729065,-0.360623896121979,-0.408470183610916,0.816293895244598,-0.408431619405746,-0.360642284154892,0.860167145729065,-0.360623896121979,0.465493589639664,0.458512037992477,-0.757022082805634,0.406521171331406,0.429755955934525,-0.80625706911087,0.846141755580902,-0.365484327077866,-0.387898534536362,0.406521171331406,0.429755955934525,-0.80625706911087,0.465493589639664,0.458512037992477,-0.757022082805634,0.883811831474304,-0.335046082735062,-0.326528400182724,0.448742359876633,-0.772829592227936,0.448736816644669,0.846141755580902,-0.365484327077866,-0.387898534536362,0.883811831474304,-0.335046082735062,-0.326528400182724,0.487077981233597,-0.724927484989166,0.48706790804863,
- -0.387922763824463,-0.365494430065155,0.846126317977905,0.448742359876633,-0.772829592227936,0.448736816644669,0.487077981233597,-0.724927484989166,0.48706790804863,-0.326570689678192,-0.335018157958984,0.883806824684143,-0.704574465751648,0.0853080973029137,-0.704483866691589,-0.408470183610916,0.816293895244598,-0.408431619405746,0.406521171331406,0.429755955934525,-0.80625706911087,-0.112047143280506,-0.185110166668892,-0.976309239864349,-0.976337075233459,-0.18505285680294,-0.111898958683014,-0.806244611740112,0.429757714271545,0.406543910503387,-0.408470183610916,0.816293895244598,-0.408431619405746,-0.704574465751648,0.0853080973029137,-0.704483866691589,-0.65554416179657,-0.725702822208405,0.208847507834435,-0.387922763824463,-0.365494430065155,0.846126317977905,-0.806244611740112,0.429757714271545,0.406543910503387,-0.976337075233459,-0.18505285680294,-0.111898958683014,-0.0630563944578171,-0.996024429798126,-0.0629217848181725,0.448742359876633,-0.772829592227936,0.448736816644669,-0.387922763824463,-0.365494430065155,0.846126317977905,-0.65554416179657,-0.725702822208405,0.208847507834435,0.208654314279556,-0.72581547498703,-0.655480861663818,0.846141755580902,-0.365484327077866,-0.387898534536362,0.448742359876633,-0.772829592227936,0.448736816644669,-0.0630563944578171,-0.996024429798126,-0.0629217848181725,-0.112047143280506,-0.185110166668892,-0.976309239864349,0.406521171331406,0.429755955934525,-0.80625706911087,0.846141755580902,-0.365484327077866,-0.387898534536362,0.208654314279556,-0.72581547498703,-0.655480861663818,-0.81943553686142,0.406048208475113,0.404537051916122,-0.365260124206543,-0.359471052885056,0.858700037002563,-0.279102861881256,-0.258532553911209,0.924804031848907,-0.725893557071686,0.494527488946915,0.478038907051086,-0.434500873088837,0.788892865180969,-0.43457692861557,-0.81943553686142,0.406048208475113,0.404537051916122,-0.725893557071686,0.494527488946915,0.478038907051086,-0.347316920757294,0.871059238910675,-0.347313404083252,-0.434500873088837,0.788892865180969,-0.43457692861557,
- -0.347316920757294,0.871059238910675,-0.347313404083252,0.478084862232208,0.494485974311829,-0.725891530513763,0.404552727937698,0.406099766492844,-0.81940221786499,0.858728647232056,-0.359442174434662,-0.365221202373505,0.404552727937698,0.406099766492844,-0.81940221786499,0.478084862232208,0.494485974311829,-0.725891530513763,0.924797713756561,-0.258526653051376,-0.279129415750504,0.473835557699203,-0.742242336273193,0.473873376846313,0.858728647232056,-0.359442174434662,-0.365221202373505,0.924797713756561,-0.258526653051376,-0.279129415750504,0.546217143535614,-0.63503760099411,0.546236336231232,-0.365260124206543,-0.359471052885056,0.858700037002563,0.473835557699203,-0.742242336273193,0.473873376846313,0.546217143535614,-0.63503760099411,0.546236336231232,-0.279102861881256,-0.258532553911209,0.924804031848907,-0.70611560344696,-0.0531903840601444,-0.706096053123474,-0.434500873088837,0.788892865180969,-0.43457692861557,0.404552727937698,0.406099766492844,-0.81940221786499,-0.201368570327759,-0.283475577831268,-0.937599182128906,-0.937561988830566,-0.283488214015961,-0.201524153351784,-0.81943553686142,0.406048208475113,0.404537051916122,-0.434500873088837,0.788892865180969,-0.43457692861557,-0.70611560344696,-0.0531903840601444,-0.706096053123474,-0.664354145526886,-0.743971347808838,0.0716957375407219,-0.365260124206543,-0.359471052885056,0.858700037002563,-0.81943553686142,0.406048208475113,0.404537051916122,-0.937561988830566,-0.283488214015961,-0.201524153351784,-0.159739643335342,-0.97415030002594,-0.15973262488842,0.473835557699203,-0.742242336273193,0.473873376846313,-0.365260124206543,-0.359471052885056,0.858700037002563,-0.664354145526886,-0.743971347808838,0.0716957375407219,0.0717828273773193,-0.743948042392731,-0.664370834827423,0.858728647232056,-0.359442174434662,-0.365221202373505,0.473835557699203,-0.742242336273193,0.473873376846313,-0.159739643335342,-0.97415030002594,-0.15973262488842,-0.201368570327759,-0.283475577831268,-0.937599182128906,0.404552727937698,0.406099766492844,-0.81940221786499,
- 0.858728647232056,-0.359442174434662,-0.365221202373505,0.0717828273773193,-0.743948042392731,-0.664370834827423,-0.826793789863586,0.412088304758072,0.382877558469772,-0.411261022090912,-0.354567646980286,0.839729785919189,-0.355544716119766,-0.338474780321121,0.871219217777252,-0.780386328697205,0.436570554971695,0.447664320468903,-0.433348774909973,0.790234684944153,-0.433287382125854,-0.826793789863586,0.412088304758072,0.382877558469772,-0.780386328697205,0.436570554971695,0.447664320468903,-0.382566422224045,0.840982615947723,-0.382611036300659,-0.433348774909973,0.790234684944153,-0.433287382125854,-0.382566422224045,0.840982615947723,-0.382611036300659,0.447629421949387,0.436530292034149,-0.780428826808929,0.382806926965714,0.412095904350281,-0.826822698116302,0.839710175991058,-0.354619443416595,-0.411256551742554,0.382806926965714,0.412095904350281,-0.826822698116302,0.447629421949387,0.436530292034149,-0.780428826808929,0.871196985244751,-0.338527649641037,-0.355548650026321,0.45706033706665,-0.762981951236725,0.457115203142166,0.839710175991058,-0.354619443416595,-0.411256551742554,0.871196985244751,-0.338527649641037,-0.355548650026321,0.482467651367188,-0.731101989746094,0.482405334711075,-0.411261022090912,-0.354567646980286,0.839729785919189,0.45706033706665,-0.762981951236725,0.457115203142166,0.482467651367188,-0.731101989746094,0.482405334711075,-0.355544716119766,-0.338474780321121,0.871219217777252,-0.702544450759888,-0.113066986203194,-0.702600240707397,-0.433348774909973,0.790234684944153,-0.433287382125854,0.382806926965714,0.412095904350281,-0.826822698116302,-0.141369834542274,-0.28624239563942,-0.947670817375183,-0.94771409034729,-0.28612494468689,-0.141317188739777,-0.826793789863586,0.412088304758072,0.382877558469772,-0.433348774909973,0.790234684944153,-0.433287382125854,-0.702544450759888,-0.113066986203194,-0.702600240707397,-0.608984231948853,-0.746349096298218,0.268516838550568,-0.411261022090912,-0.354567646980286,0.839729785919189,-0.826793789863586,0.412088304758072,0.382877558469772,
- -0.94771409034729,-0.28612494468689,-0.141317188739777,-0.0127072362229228,-0.999837458133698,-0.0127921337261796,0.45706033706665,-0.762981951236725,0.457115203142166,-0.411261022090912,-0.354567646980286,0.839729785919189,-0.608984231948853,-0.746349096298218,0.268516838550568,0.268329739570618,-0.746473014354706,-0.608914613723755,0.839710175991058,-0.354619443416595,-0.411256551742554,0.45706033706665,-0.762981951236725,0.457115203142166,-0.0127072362229228,-0.999837458133698,-0.0127921337261796,-0.141369834542274,-0.28624239563942,-0.947670817375183,0.382806926965714,0.412095904350281,-0.826822698116302,0.839710175991058,-0.354619443416595,-0.411256551742554,0.268329739570618,-0.746473014354706,-0.608914613723755,-0.849233388900757,0.375788480043411,0.370925664901733,-0.379031926393509,-0.363650113344193,0.850936710834503,-0.305159509181976,-0.285873770713806,0.908379793167114,-0.75836455821991,0.4680235683918,0.453692704439163,-0.472872316837311,0.743503749370575,-0.472857177257538,-0.849233388900757,0.375788480043411,0.370925664901733,-0.75836455821991,0.4680235683918,0.453692704439163,-0.378850609064102,0.844312489032745,-0.378957211971283,-0.472872316837311,0.743503749370575,-0.472857177257538,-0.378850609064102,0.844312489032745,-0.378957211971283,0.453699767589569,0.46806937456131,-0.758332014083862,0.370906233787537,0.375808924436569,-0.849232733249664,0.850952982902527,-0.363614082336426,-0.3790303170681,0.370906233787537,0.375808924436569,-0.849232733249664,0.453699767589569,0.46806937456131,-0.758332014083862,0.908415496349335,-0.285829037427902,-0.305095314979553,0.478913187980652,-0.735755443572998,0.478859037160873,0.850952982902527,-0.363614082336426,-0.3790303170681,0.908415496349335,-0.285829037427902,-0.305095314979553,0.529034674167633,-0.66352504491806,0.529014825820923,-0.379031926393509,-0.363650113344193,0.850936710834503,0.478913187980652,-0.735755443572998,0.478859037160873,0.529034674167633,-0.66352504491806,0.529014825820923,-0.305159509181976,-0.285873770713806,0.908379793167114,-0.691260457038879,-0.210637912154198,-0.691223978996277,
- -0.472872316837311,0.743503749370575,-0.472857177257538,0.370906233787537,0.375808924436569,-0.849232733249664,-0.241949945688248,-0.369196057319641,-0.897304058074951,-0.897412359714508,-0.369093418121338,-0.241704657673836,-0.849233388900757,0.375788480043411,0.370925664901733,-0.472872316837311,0.743503749370575,-0.472857177257538,-0.691260457038879,-0.210637912154198,-0.691223978996277,-0.629685938358307,-0.766371786594391,0.127161592245102,-0.379031926393509,-0.363650113344193,0.850936710834503,-0.849233388900757,0.375788480043411,0.370925664901733,-0.897412359714508,-0.369093418121338,-0.241704657673836,-0.0583399906754494,-0.996591627597809,-0.058323860168457,0.478913187980652,-0.735755443572998,0.478859037160873,-0.379031926393509,-0.363650113344193,0.850936710834503,-0.629685938358307,-0.766371786594391,0.127161592245102,0.126907452940941,-0.766443192958832,-0.629650235176086,0.850952982902527,-0.363614082336426,-0.3790303170681,0.478913187980652,-0.735755443572998,0.478859037160873,-0.0583399906754494,-0.996591627597809,-0.058323860168457,-0.241949945688248,-0.369196057319641,-0.897304058074951,0.370906233787537,0.375808924436569,-0.849232733249664,0.850952982902527,-0.363614082336426,-0.3790303170681,0.126907452940941,-0.766443192958832,-0.629650235176086,-0.818500161170959,0.407089859247208,0.405382812023163,-0.364318639039993,-0.358426451683044,0.859536111354828,-0.325319916009903,-0.312491118907928,0.892477631568909,-0.777246534824371,0.4492107629776,0.44056499004364,-0.433634668588638,0.789886057376862,-0.43363681435585,-0.818500161170959,0.407089859247208,0.405382812023163,-0.777246534824371,0.4492107629776,0.44056499004364,-0.39430570602417,0.830097675323486,-0.394285261631012,-0.433634668588638,0.789886057376862,-0.43363681435585,-0.39430570602417,0.830097675323486,-0.394285261631012,0.440547645092011,0.449253648519516,-0.777231574058533,0.405366659164429,0.407151281833649,-0.818477630615234,0.85954624414444,-0.358440071344376,-0.364281594753265,0.405366659164429,0.407151281833649,-0.818477630615234,
- 0.440547645092011,0.449253648519516,-0.777231574058533,0.892474174499512,-0.312521278858185,-0.325300395488739,0.474679529666901,-0.741154968738556,0.47473007440567,0.85954624414444,-0.358440071344376,-0.364281594753265,0.892474174499512,-0.312521278858185,-0.325300395488739,0.509549856185913,-0.693349182605743,0.50953483581543,-0.364318639039993,-0.358426451683044,0.859536111354828,0.474679529666901,-0.741154968738556,0.47473007440567,0.509549856185913,-0.693349182605743,0.50953483581543,-0.325319916009903,-0.312491118907928,0.892477631568909,-0.704568207263947,0.0853120386600494,-0.704489648342133,-0.433634668588638,0.789886057376862,-0.43363681435585,0.405366659164429,0.407151281833649,-0.818477630615234,-0.112056709825993,-0.185098454356194,-0.976310312747955,-0.976344347000122,-0.184977099299431,-0.111961036920547,-0.818500161170959,0.407089859247208,0.405382812023163,-0.433634668588638,0.789886057376862,-0.43363681435585,-0.704568207263947,0.0853120386600494,-0.704489648342133,-0.655598163604736,-0.725677251815796,0.208766683936119,-0.364318639039993,-0.358426451683044,0.859536111354828,-0.818500161170959,0.407089859247208,0.405382812023163,-0.976344347000122,-0.184977099299431,-0.111961036920547,-0.0628845393657684,-0.996031641960144,-0.0629790872335434,0.474679529666901,-0.741154968738556,0.47473007440567,-0.364318639039993,-0.358426451683044,0.859536111354828,-0.655598163604736,-0.725677251815796,0.208766683936119,0.208836629986763,-0.725714683532715,-0.655534505844116,0.85954624414444,-0.358440071344376,-0.364281594753265,0.474679529666901,-0.741154968738556,0.47473007440567,-0.0628845393657684,-0.996031641960144,-0.0629790872335434,-0.112056709825993,-0.185098454356194,-0.976310312747955,0.405366659164429,0.407151281833649,-0.818477630615234,0.85954624414444,-0.358440071344376,-0.364281594753265,0.208836629986763,-0.725714683532715,-0.655534505844116,-0.823476850986481,0.403391718864441,0.3989497423172,-0.375839471817017,-0.368023365736008,0.850472509860992,-0.32254034280777,-0.313135176897049,0.893260478973389,
- -0.77016681432724,0.454123765230179,0.447900384664536,-0.435989111661911,0.787284910678864,-0.436000049114227,-0.823476850986481,0.403391718864441,0.3989497423172,-0.77016681432724,0.454123765230179,0.447900384664536,-0.384968310594559,0.838780701160431,-0.385027557611465,-0.435989111661911,0.787284910678864,-0.436000049114227,-0.384968310594559,0.838780701160431,-0.385027557611465,0.447882860898972,0.454096734523773,-0.770192861557007,0.398909479379654,0.40342715382576,-0.823479056358337,0.85047048330307,-0.368015319108963,-0.375851958990097,0.398909479379654,0.40342715382576,-0.823479056358337,0.447882860898972,0.454096734523773,-0.770192861557007,0.893238842487335,-0.313126057386398,-0.322608590126038,0.463176190853119,-0.755596458911896,0.46318656206131,0.85047048330307,-0.368015319108963,-0.375851958990097,0.893238842487335,-0.313126057386398,-0.322608590126038,0.50796103477478,-0.695686161518097,0.507933497428894,-0.375839471817017,-0.368023365736008,0.850472509860992,0.463176190853119,-0.755596458911896,0.46318656206131,0.50796103477478,-0.695686161518097,0.507933497428894,-0.32254034280777,-0.313135176897049,0.893260478973389,-0.706128656864166,-0.0531995110213757,-0.706082284450531,-0.435989111661911,0.787284910678864,-0.436000049114227,0.398909479379654,0.40342715382576,-0.823479056358337,-0.201402217149735,-0.28340157866478,-0.937614321708679,-0.93758100271225,-0.28348571062088,-0.201439410448074,-0.823476850986481,0.403391718864441,0.3989497423172,-0.435989111661911,0.787284910678864,-0.436000049114227,-0.706128656864166,-0.0531995110213757,-0.706082284450531,-0.664405226707459,-0.743921279907227,0.07174202054739,-0.375839471817017,-0.368023365736008,0.850472509860992,-0.823476850986481,0.403391718864441,0.3989497423172,-0.93758100271225,-0.28348571062088,-0.201439410448074,-0.159731581807137,-0.974158942699432,-0.159687697887421,0.463176190853119,-0.755596458911896,0.46318656206131,-0.375839471817017,-0.368023365736008,0.850472509860992,-0.664405226707459,-0.743921279907227,0.07174202054739,0.0718512162566185,-0.743898153305054,-0.664419293403625,
- 0.85047048330307,-0.368015319108963,-0.375851958990097,0.463176190853119,-0.755596458911896,0.46318656206131,-0.159731581807137,-0.974158942699432,-0.159687697887421,-0.201402217149735,-0.28340157866478,-0.937614321708679,0.398909479379654,0.40342715382576,-0.823479056358337,0.85047048330307,-0.368015319108963,-0.375851958990097,0.0718512162566185,-0.743898153305054,-0.664419293403625,-0.840608358383179,0.381832182407379,0.384163826704025,-0.386124551296234,-0.384204775094986,0.838626503944397,-0.329126626253128,-0.316973358392715,0.889496266841888,-0.781367242336273,0.445279389619827,0.437254518270493,-0.455479234457016,0.764901161193848,-0.455483227968216,-0.840608358383179,0.381832182407379,0.384163826704025,-0.781367242336273,0.445279389619827,0.437254518270493,-0.398171722888947,0.826384007930756,-0.398181974887848,-0.455479234457016,0.764901161193848,-0.455483227968216,-0.398171722888947,0.826384007930756,-0.398181974887848,0.437195956707001,0.445315897464752,-0.781379163265228,0.384087473154068,0.381899416446686,-0.840612649917603,0.838631749153137,-0.384223908185959,-0.386094123125076,0.384087473154068,0.381899416446686,-0.840612649917603,0.437195956707001,0.445315897464752,-0.781379163265228,0.889482498168945,-0.317012101411819,-0.329126417636871,0.453488856554031,-0.767250239849091,0.453513979911804,0.838631749153137,-0.384223908185959,-0.386094123125076,0.889482498168945,-0.317012101411819,-0.329126417636871,0.506302893161774,-0.6981081366539,0.506263196468353,-0.386124551296234,-0.384204775094986,0.838626503944397,0.453488856554031,-0.767250239849091,0.453513979911804,0.506302893161774,-0.6981081366539,0.506263196468353,-0.329126626253128,-0.316973358392715,0.889496266841888,-0.704773545265198,-0.0814215391874313,-0.704744458198547,-0.455479234457016,0.764901161193848,-0.455483227968216,0.384087473154068,0.381899416446686,-0.840612649917603,-0.219332858920097,-0.302982330322266,-0.927413046360016,-0.927443444728851,-0.302957266569138,-0.219238594174385,-0.840608358383179,0.381832182407379,0.384163826704025,
- -0.455479234457016,0.764901161193848,-0.455483227968216,-0.704773545265198,-0.0814215391874313,-0.704744458198547,-0.664644539356232,-0.745892107486725,0.0435052700340748,-0.386124551296234,-0.384204775094986,0.838626503944397,-0.840608358383179,0.381832182407379,0.384163826704025,-0.927443444728851,-0.302957266569138,-0.219238594174385,-0.179206430912018,-0.96735543012619,-0.179188370704651,0.453488856554031,-0.767250239849091,0.453513979911804,-0.386124551296234,-0.384204775094986,0.838626503944397,-0.664644539356232,-0.745892107486725,0.0435052700340748,0.043465580791235,-0.745945930480957,-0.66458660364151,0.838631749153137,-0.384223908185959,-0.386094123125076,0.453488856554031,-0.767250239849091,0.453513979911804,-0.179206430912018,-0.96735543012619,-0.179188370704651,-0.219332858920097,-0.302982330322266,-0.927413046360016,0.384087473154068,0.381899416446686,-0.840612649917603,0.838631749153137,-0.384223908185959,-0.386094123125076,0.043465580791235,-0.745945930480957,-0.66458660364151,-0.782733976840973,0.457306653261185,0.422135323286057,-0.38031679391861,-0.347633272409439,0.857035756111145,-0.287613570690155,-0.297936618328094,0.910226404666901,-0.701566815376282,0.500887095928192,0.50686901807785,-0.380917191505432,0.842497766017914,-0.380919456481934,-0.782733976840973,0.457306653261185,0.422135323286057,-0.701566815376282,0.500887095928192,0.50686901807785,-0.303477764129639,0.903223872184753,-0.303459882736206,-0.380917191505432,0.842497766017914,-0.380919456481934,-0.303477764129639,0.903223872184753,-0.303459882736206,0.506909728050232,0.500815570354462,-0.701588332653046,0.422176361083984,0.45731183886528,-0.782708704471588,0.857023179531097,-0.34766811132431,-0.380313277244568,0.422176361083984,0.45731183886528,-0.782708704471588,0.506909728050232,0.500815570354462,-0.701588332653046,0.910189747810364,-0.298003226518631,-0.287660837173462,0.455180436372757,-0.765244841575623,0.455204486846924,0.857023179531097,-0.34766811132431,-0.380313277244568,0.910189747810364,-0.298003226518631,-0.287660837173462,
- 0.511689484119415,-0.6902174949646,0.511638164520264,-0.38031679391861,-0.347633272409439,0.857035756111145,0.455180436372757,-0.765244841575623,0.455204486846924,0.511689484119415,-0.6902174949646,0.511638164520264,-0.287613570690155,-0.297936618328094,0.910226404666901,-0.704505622386932,0.0852920562028885,-0.704554617404938,-0.380917191505432,0.842497766017914,-0.380919456481934,0.422176361083984,0.45731183886528,-0.782708704471588,-0.111921899020672,-0.185108527541161,-0.976323783397675,-0.9763063788414,-0.185169190168381,-0.111974775791168,-0.782733976840973,0.457306653261185,0.422135323286057,-0.380917191505432,0.842497766017914,-0.380919456481934,-0.704505622386932,0.0852920562028885,-0.704554617404938,-0.655547499656677,-0.725755751132965,0.20865336060524,-0.38031679391861,-0.347633272409439,0.857035756111145,-0.782733976840973,0.457306653261185,0.422135323286057,-0.9763063788414,-0.185169190168381,-0.111974775791168,-0.0630910843610764,-0.996018052101135,-0.0629881620407104,0.455180436372757,-0.765244841575623,0.455204486846924,-0.38031679391861,-0.347633272409439,0.857035756111145,-0.655547499656677,-0.725755751132965,0.20865336060524,0.208748251199722,-0.725738167762756,-0.655536592006683,0.857023179531097,-0.34766811132431,-0.380313277244568,0.455180436372757,-0.765244841575623,0.455204486846924,-0.0630910843610764,-0.996018052101135,-0.0629881620407104,-0.111921899020672,-0.185108527541161,-0.976323783397675,0.422176361083984,0.45731183886528,-0.782708704471588,0.857023179531097,-0.34766811132431,-0.380313277244568,0.208748251199722,-0.725738167762756,-0.655536592006683,-0.824959456920624,0.395383030176163,0.403874099254608,-0.353905141353607,-0.355961114168167,0.864894688129425,-0.324587047100067,-0.302059561014175,0.896327614784241,-0.78635185956955,0.444832861423492,0.428689330816269,-0.446407586336136,0.775545418262482,-0.446373730897903,-0.824959456920624,0.395383030176163,0.403874099254608,-0.78635185956955,0.444832861423492,0.428689330816269,-0.409382611513138,0.815332651138306,-0.409436911344528,
- -0.446407586336136,0.775545418262482,-0.446373730897903,-0.409382611513138,0.815332651138306,-0.409436911344528,0.428702145814896,0.444755792617798,-0.786388397216797,0.403860211372375,0.395351052284241,-0.824981570243835,0.864872574806213,-0.356010138988495,-0.353910058736801,0.403860211372375,0.395351052284241,-0.824981570243835,0.428702145814896,0.444755792617798,-0.786388397216797,0.896303296089172,-0.302094787359238,-0.324621260166168,0.485554963350296,-0.726950347423553,0.485571295022964,0.864872574806213,-0.356010138988495,-0.353910058736801,0.896303296089172,-0.302094787359238,-0.324621260166168,0.519757032394409,-0.67803418636322,0.519732892513275,-0.353905141353607,-0.355961114168167,0.864894688129425,0.485554963350296,-0.726950347423553,0.485571295022964,0.519757032394409,-0.67803418636322,0.519732892513275,-0.324587047100067,-0.302059561014175,0.896327614784241,-0.707049489021301,0.0105913747102022,-0.707084655761719,-0.446407586336136,0.775545418262482,-0.446373730897903,0.403860211372375,0.395351052284241,-0.824981570243835,-0.160687625408173,-0.238755866885185,-0.957692623138428,-0.957705616950989,-0.238719046115875,-0.160664811730385,-0.824959456920624,0.395383030176163,0.403874099254608,-0.446407586336136,0.775545418262482,-0.446373730897903,-0.707049489021301,0.0105913747102022,-0.707084655761719,-0.661964476108551,-0.737251818180084,0.135139793157578,-0.353905141353607,-0.355961114168167,0.864894688129425,-0.824959456920624,0.395383030176163,0.403874099254608,-0.957705616950989,-0.238719046115875,-0.160664811730385,-0.115566909313202,-0.986568689346313,-0.115440703928471,0.485554963350296,-0.726950347423553,0.485571295022964,-0.353905141353607,-0.355961114168167,0.864894688129425,-0.661964476108551,-0.737251818180084,0.135139793157578,0.135019391775131,-0.737313508987427,-0.661920309066772,0.864872574806213,-0.356010138988495,-0.353910058736801,0.485554963350296,-0.726950347423553,0.485571295022964,-0.115566909313202,-0.986568689346313,-0.115440703928471,-0.160687625408173,-0.238755866885185,-0.957692623138428,
- 0.403860211372375,0.395351052284241,-0.824981570243835,0.864872574806213,-0.356010138988495,-0.353910058736801,0.135019391775131,-0.737313508987427,-0.661920309066772,-0.847235560417175,0.37385618686676,0.377390325069427,-0.39284011721611,-0.392113000154495,0.831819713115692,-0.322554171085358,-0.309303164482117,0.894589483737946,-0.774243652820587,0.452115058898926,0.442875504493713,-0.462121665477753,0.756868183612823,-0.462162643671036,-0.847235560417175,0.37385618686676,0.377390325069427,-0.774243652820587,0.452115058898926,0.442875504493713,-0.391490280628204,0.832731902599335,-0.391526490449905,-0.462121665477753,0.756868183612823,-0.462162643671036,-0.391490280628204,0.832731902599335,-0.391526490449905,0.442948132753372,0.452087372541428,-0.774218201637268,0.377451807260513,0.373864769935608,-0.847204387187958,0.831864953041077,-0.392099738121033,-0.392757624387741,0.377451807260513,0.373864769935608,-0.847204387187958,0.442948132753372,0.452087372541428,-0.774218201637268,0.894608974456787,-0.309280693531036,-0.3225217461586,0.446785807609558,-0.775132417678833,0.446712493896484,0.831864953041077,-0.392099738121033,-0.392757624387741,0.894608974456787,-0.309280693531036,-0.3225217461586,0.511805355548859,-0.689978361129761,0.51184493303299,-0.39284011721611,-0.392113000154495,0.831819713115692,0.446785807609558,-0.775132417678833,0.446712493896484,0.511805355548859,-0.689978361129761,0.51184493303299,-0.322554171085358,-0.309303164482117,0.894589483737946,-0.704639971256256,0.0850887149572372,-0.704444825649261,-0.462121665477753,0.756868183612823,-0.462162643671036,0.377451807260513,0.373864769935608,-0.847204387187958,-0.112219944596291,-0.185305520892143,-0.976252317428589,-0.976296663284302,-0.185166746377945,-0.112062834203243,-0.847235560417175,0.37385618686676,0.377390325069427,-0.462121665477753,0.756868183612823,-0.462162643671036,-0.704639971256256,0.0850887149572372,-0.704444825649261,-0.655610263347626,-0.725707709789276,0.208622738718987,-0.39284011721611,-0.392113000154495,0.831819713115692,
- -0.847235560417175,0.37385618686676,0.377390325069427,-0.976296663284302,-0.185166746377945,-0.112062834203243,-0.0631356462836266,-0.996017873287201,-0.062947541475296,0.446785807609558,-0.775132417678833,0.446712493896484,-0.39284011721611,-0.392113000154495,0.831819713115692,-0.655610263347626,-0.725707709789276,0.208622738718987,0.208555266261101,-0.725762486457825,-0.655571162700653,0.831864953041077,-0.392099738121033,-0.392757624387741,0.446785807609558,-0.775132417678833,0.446712493896484,-0.0631356462836266,-0.996017873287201,-0.062947541475296,-0.112219944596291,-0.185305520892143,-0.976252317428589,0.377451807260513,0.373864769935608,-0.847204387187958,0.831864953041077,-0.392099738121033,-0.392757624387741,0.208555266261101,-0.725762486457825,-0.655571162700653,-0.830181300640106,0.394027262926102,0.394387423992157,-0.375804454088211,-0.371857464313507,0.84881854057312,-0.336043506860733,-0.325026869773865,0.883986592292786,-0.788769006729126,0.43805143237114,0.431224197149277,-0.445095807313919,0.777001857757568,-0.445149093866348,-0.830181300640106,0.394027262926102,0.394387423992157,-0.788769006729126,0.43805143237114,0.431224197149277,-0.405130356550217,0.819575607776642,-0.405172914266586,-0.445095807313919,0.777001857757568,-0.445149093866348,-0.405130356550217,0.819575607776642,-0.405172914266586,0.431248366832733,0.438012033700943,-0.788777768611908,0.394392341375351,0.394024074077606,-0.830180525779724,0.848815739154816,-0.371935576200485,-0.375733643770218,0.394392341375351,0.394024074077606,-0.830180525779724,0.431248366832733,0.438012033700943,-0.788777768611908,0.883964121341705,-0.325099349021912,-0.336032330989838,0.463734418153763,-0.754914939403534,0.463738948106766,0.848815739154816,-0.371935576200485,-0.375733643770218,0.883964121341705,-0.325099349021912,-0.336032330989838,0.500349879264832,-0.70663982629776,0.500310003757477,-0.375804454088211,-0.371857464313507,0.84881854057312,0.463734418153763,-0.754914939403534,0.463738948106766,0.500349879264832,-0.70663982629776,0.500310003757477,
- -0.336043506860733,-0.325026869773865,0.883986592292786,-0.111935280263424,-0.185014978051186,-0.976340174674988,-0.704620540142059,0.0853307768702507,-0.704434990882874,-0.445095807313919,0.777001857757568,-0.445149093866348,0.394392341375351,0.394024074077606,-0.830180525779724,-0.704620540142059,0.0853307768702507,-0.704434990882874,-0.976348221302032,-0.185034140944481,-0.111833490431309,-0.830181300640106,0.394027262926102,0.394387423992157,-0.445095807313919,0.777001857757568,-0.445149093866348,-0.976348221302032,-0.185034140944481,-0.111833490431309,-0.655599176883698,-0.725679039955139,0.208757221698761,-0.375804454088211,-0.371857464313507,0.84881854057312,-0.830181300640106,0.394027262926102,0.394387423992157,-0.655599176883698,-0.725679039955139,0.208757221698761,-0.0629759207367897,-0.996026635169983,-0.062968023121357,0.463734418153763,-0.754914939403534,0.463738948106766,-0.375804454088211,-0.371857464313507,0.84881854057312,-0.0629759207367897,-0.996026635169983,-0.062968023121357,0.208911016583443,-0.725652992725372,-0.655579090118408,0.848815739154816,-0.371935576200485,-0.375733643770218,0.463734418153763,-0.754914939403534,0.463738948106766,0.208911016583443,-0.725652992725372,-0.655579090118408,-0.111935280263424,-0.185014978051186,-0.976340174674988,0.394392341375351,0.394024074077606,-0.830180525779724,0.848815739154816,-0.371935576200485,-0.375733643770218,-0.541654348373413,-0.642759799957275,-0.541729211807251,-0.541654229164124,-0.642759799957275,-0.541729092597961,-0.541654288768768,-0.642759740352631,-0.541729152202606,-0.541654229164124,-0.642759799957275,-0.541729092597961,-0.541654229164124,-0.642759799957275,-0.541729092597961,-0.541654229164124,-0.642759799957275,-0.541729152202606,0.856652200222015,0.496011704206467,-0.141843006014824,0.85724151134491,-0.493518382310867,-0.146889597177505,0.116104461252689,-0.0668105110526085,-0.990987479686737,0.116005167365074,0.0671088322997093,-0.990978896617889,-1.61353291332489e-005,0.990248382091522,-0.13931331038475,0.856652200222015,0.496011704206467,-0.141843006014824,
- 0.116005167365074,0.0671088322997093,-0.990978896617889,6.15210810792632e-005,0.133990302681923,-0.990982711315155,-1.61353291332489e-005,0.990248382091522,-0.13931331038475,6.15210810792632e-005,0.133990302681923,-0.990982711315155,-0.11589053273201,0.0671213790774345,-0.990991532802582,-0.856639564037323,0.496033817529678,-0.141842558979988,-0.857228875160217,-0.493540525436401,-0.146889299154282,-0.856639564037323,0.496033817529678,-0.141842558979988,-0.11589053273201,0.0671213790774345,-0.990991532802582,-0.11599013209343,-0.0668228641152382,-0.990999937057495,-1.57345129991882e-005,-0.988775789737701,-0.14940670132637,-0.857228875160217,-0.493540525436401,-0.146889299154282,-0.11599013209343,-0.0668228641152382,-0.990999937057495,6.17149489698932e-005,-0.133859634399414,-0.991000354290009,0.85724151134491,-0.493518382310867,-0.146889597177505,-1.57345129991882e-005,-0.988775789737701,-0.14940670132637,6.17149489698932e-005,-0.133859634399414,-0.991000354290009,0.116104461252689,-0.0668105110526085,-0.990987479686737,4.06352910431451e-006,0.476176768541336,0.879349529743195,-4.83620215163683e-006,0.999403536319733,0.0345337316393852,-0.863269329071045,0.504280745983124,0.0216087624430656,-0.471891820430756,0.239439696073532,0.848520278930664,0.471908956766129,0.2394208163023,0.848516166210175,0.863287925720215,0.504249036312103,0.0216088909655809,-4.83620215163683e-006,0.999403536319733,0.0345337316393852,4.06352910431451e-006,0.476176768541336,0.879349529743195,0.543050110340118,-0.363485455513,0.756950974464417,0.869143187999725,-0.494483679533005,-0.00871879793703556,0.863287925720215,0.504249036312103,0.0216088909655809,0.471908956766129,0.2394208163023,0.848516166210175,4.23899564339081e-006,-0.719186902046204,0.694816648960114,-4.68933785668924e-006,-0.999628782272339,-0.0272458232939243,0.869143187999725,-0.494483679533005,-0.00871879793703556,0.543050110340118,-0.363485455513,0.756950974464417,-0.54303503036499,-0.363515824079514,0.75694727897644,-0.869124948978424,-0.494515627622604,-0.00872161146253347,
- -4.68933785668924e-006,-0.999628782272339,-0.0272458232939243,4.23899564339081e-006,-0.719186902046204,0.694816648960114,-0.471891820430756,0.239439696073532,0.848520278930664,-0.863269329071045,0.504280745983124,0.0216087624430656,-0.869124948978424,-0.494515627622604,-0.00872161146253347,-0.54303503036499,-0.363515824079514,0.75694727897644,0.864668726921082,0.499215126037598,-0.0559643991291523,0.864667236804962,-0.499217510223389,-0.0559682808816433,0.853469133377075,-0.492768257856369,-0.169617146253586,0.853466987609863,0.492771923542023,-0.169616848230362,8.58214480103925e-006,0.998431086540222,-0.05599270388484,0.864668726921082,0.499215126037598,-0.0559643991291523,0.853466987609863,0.492771923542023,-0.169616848230362,1.09259144664975e-006,0.985511839389801,-0.169607058167458,8.58214480103925e-006,0.998431086540222,-0.05599270388484,1.09259144664975e-006,0.985511839389801,-0.169607058167458,-0.853465259075165,0.49278798699379,-0.169579312205315,-0.864646315574646,0.499253362417221,-0.0559711307287216,-0.864644646644592,-0.499255895614624,-0.0559756048023701,-0.864646315574646,0.499253362417221,-0.0559711307287216,-0.853465259075165,0.49278798699379,-0.169579312205315,-0.853467106819153,-0.492784380912781,-0.169580653309822,8.25859933684114e-006,-0.998430788516998,-0.055998720228672,-0.864644646644592,-0.499255895614624,-0.0559756048023701,-0.853467106819153,-0.492784380912781,-0.169580653309822,1.40476288379432e-006,-0.985511541366577,-0.16960871219635,0.864667236804962,-0.499217510223389,-0.0559682808816433,8.25859933684114e-006,-0.998430788516998,-0.055998720228672,1.40476288379432e-006,-0.985511541366577,-0.16960871219635,0.853469133377075,-0.492768257856369,-0.169617146253586,8.07068427093327e-005,0.714672744274139,0.699459075927734,8.58214480103925e-006,0.998431086540222,-0.05599270388484,-0.864646315574646,0.499253362417221,-0.0559711307287216,-0.618867874145508,0.357319325208664,0.699518024921417,0.618990004062653,0.357316941022873,0.69941109418869,0.864668726921082,0.499215126037598,-0.0559643991291523,
- 8.58214480103925e-006,0.998431086540222,-0.05599270388484,8.07068427093327e-005,0.714672744274139,0.699459075927734,0.618996739387512,-0.35732239484787,0.699402272701263,0.864667236804962,-0.499217510223389,-0.0559682808816433,0.864668726921082,0.499215126037598,-0.0559643991291523,0.618990004062653,0.357316941022873,0.69941109418869,7.65509539633058e-005,-0.714694499969482,0.699436664581299,8.25859933684114e-006,-0.998430788516998,-0.055998720228672,0.864667236804962,-0.499217510223389,-0.0559682808816433,0.618996739387512,-0.35732239484787,0.699402272701263,-0.618875503540039,-0.357325434684753,0.699508130550385,-0.864644646644592,-0.499255895614624,-0.0559756048023701,8.25859933684114e-006,-0.998430788516998,-0.055998720228672,7.65509539633058e-005,-0.714694499969482,0.699436664581299,-0.618867874145508,0.357319325208664,0.699518024921417,-0.864646315574646,0.499253362417221,-0.0559711307287216,-0.864644646644592,-0.499255895614624,-0.0559756048023701,-0.618875503540039,-0.357325434684753,0.699508130550385,0.863870918750763,0.502479732036591,-0.0352303646504879,0.867390811443329,-0.497031569480896,-0.0243506412953138,0.856223046779633,-0.498074650764465,-0.137126505374908,0.857913792133331,0.491700887680054,-0.149044588208199,5.18370143254288e-007,0.999174296855927,-0.0406293198466301,0.863870918750763,0.502479732036591,-0.0352303646504879,0.857913792133331,0.491700887680054,-0.149044588208199,-3.86026222258806e-005,0.987918496131897,-0.154974475502968,5.18370143254288e-007,0.999174296855927,-0.0406293198466301,-3.86026222258806e-005,0.987918496131897,-0.154974475502968,-0.857949674129486,0.491660982370377,-0.148969039320946,-0.863859713077545,0.502499639987946,-0.0352217108011246,-0.867379665374756,-0.497051298618317,-0.0243411716073751,-0.863859713077545,0.502499639987946,-0.0352217108011246,-0.857949674129486,0.491660982370377,-0.148969039320946,-0.856258809566498,-0.498033434152603,-0.137052923440933,-1.08500307760551e-006,-0.999821960926056,-0.01886947453022,-0.867379665374756,-0.497051298618317,-0.0243411716073751,
- -0.856258809566498,-0.498033434152603,-0.137052923440933,-4.03109843318816e-005,-0.991363525390625,-0.131142556667328,0.867390811443329,-0.497031569480896,-0.0243506412953138,-1.08500307760551e-006,-0.999821960926056,-0.01886947453022,-4.03109843318816e-005,-0.991363525390625,-0.131142556667328,0.856223046779633,-0.498074650764465,-0.137126505374908,6.01288229518104e-005,0.610772311687469,0.791806280612946,5.18370143254288e-007,0.999174296855927,-0.0406293198466301,-0.863859713077545,0.502499639987946,-0.0352217108011246,-0.528956413269043,0.305371046066284,0.791804015636444,0.529006659984589,0.305382877588272,0.791765809059143,0.863870918750763,0.502479732036591,-0.0352303646504879,5.18370143254288e-007,0.999174296855927,-0.0406293198466301,6.01288229518104e-005,0.610772311687469,0.791806280612946,0.528998732566834,-0.305366694927216,0.791777431964874,0.867390811443329,-0.497031569480896,-0.0243506412953138,0.863870918750763,0.502479732036591,-0.0352303646504879,0.529006659984589,0.305382877588272,0.791765809059143,5.71879354538396e-005,-0.610746085643768,0.791826486587524,-1.08500307760551e-006,-0.999821960926056,-0.01886947453022,0.867390811443329,-0.497031569480896,-0.0243506412953138,0.528998732566834,-0.305366694927216,0.791777431964874,-0.528949499130249,-0.305358827114105,0.791813254356384,-0.867379665374756,-0.497051298618317,-0.0243411716073751,-1.08500307760551e-006,-0.999821960926056,-0.01886947453022,5.71879354538396e-005,-0.610746085643768,0.791826486587524,-0.528956413269043,0.305371046066284,0.791804015636444,-0.863859713077545,0.502499639987946,-0.0352217108011246,-0.867379665374756,-0.497051298618317,-0.0243411716073751,-0.528949499130249,-0.305358827114105,0.791813254356384,0.866028606891632,0.499990463256836,0.00202184799127281,0.86602509021759,-0.499996364116669,0.00201998976990581,0.861890912055969,-0.497661799192429,-0.0973484888672829,0.861891388893127,0.497661620378494,-0.0973457172513008,-7.43644295653212e-006,0.999997913837433,0.00202861009165645,0.866028606891632,0.499990463256836,0.00202184799127281,
- 0.861891388893127,0.497661620378494,-0.0973457172513008,-4.07765510317404e-005,0.995253264904022,-0.0973187312483788,-7.43644295653212e-006,0.999997913837433,0.00202861009165645,-4.07765510317404e-005,0.995253264904022,-0.0973187312483788,-0.861907243728638,0.497640937566757,-0.097310483455658,-0.866016745567322,0.500010848045349,0.00203156727366149,-0.86601322889328,-0.500017106533051,0.00203057052567601,-0.866016745567322,0.500010848045349,0.00203156727366149,-0.861907243728638,0.497640937566757,-0.097310483455658,-0.861906886100769,-0.497641086578369,-0.0973140150308609,-7.75663102103863e-006,-0.999997913837433,0.0020281879696995,-0.86601322889328,-0.500017106533051,0.00203057052567601,-0.861906886100769,-0.497641086578369,-0.0973140150308609,-4.0776540117804e-005,-0.995252847671509,-0.0973240062594414,0.86602509021759,-0.499996364116669,0.00201998976990581,-7.75663102103863e-006,-0.999997913837433,0.0020281879696995,-4.0776540117804e-005,-0.995252847671509,-0.0973240062594414,0.861890912055969,-0.497661799192429,-0.0973484888672829,4.97276050737128e-006,0.588153183460236,0.808749556541443,-7.43644295653212e-006,0.999997913837433,0.00202861009165645,-0.866016745567322,0.500010848045349,0.00203156727366149,-0.509357094764709,0.294096767902374,0.808741331100464,0.509284973144531,0.294060289859772,0.808799922466278,0.866028606891632,0.499990463256836,0.00202184799127281,-7.43644295653212e-006,0.999997913837433,0.00202861009165645,4.97276050737128e-006,0.588153183460236,0.808749556541443,0.509282231330872,-0.294049263000488,0.808805644512177,0.86602509021759,-0.499996364116669,0.00201998976990581,0.866028606891632,0.499990463256836,0.00202184799127281,0.509284973144531,0.294060289859772,0.808799922466278,2.19778121390846e-006,-0.588138282299042,0.808760285377502,-7.75663102103863e-006,-0.999997913837433,0.0020281879696995,0.86602509021759,-0.499996364116669,0.00201998976990581,0.509282231330872,-0.294049263000488,0.808805644512177,-0.509349822998047,-0.294087022542953,0.808749377727509,-0.86601322889328,-0.500017106533051,0.00203057052567601,
- -7.75663102103863e-006,-0.999997913837433,0.0020281879696995,2.19778121390846e-006,-0.588138282299042,0.808760285377502,-0.509357094764709,0.294096767902374,0.808741331100464,-0.866016745567322,0.500010848045349,0.00203156727366149,-0.86601322889328,-0.500017106533051,0.00203057052567601,-0.509349822998047,-0.294087022542953,0.808749377727509,0.852477669715881,0.513881921768188,-0.0959545448422432,0.874733209609985,-0.483437389135361,-0.0336153879761696,0.847688972949982,-0.511079072952271,-0.142202392220497,0.855297029018402,0.473063051700592,-0.211372673511505,2.58609986758529e-007,0.992096126079559,-0.12547992169857,0.852477669715881,0.513881921768188,-0.0959545448422432,0.855297029018402,0.473063051700592,-0.211372673511505,1.67583812071825e-006,0.969292879104614,-0.245909437537193,2.58609986758529e-007,0.992096126079559,-0.12547992169857,1.67583812071825e-006,0.969292879104614,-0.245909437537193,-0.855296611785889,0.473080158233643,-0.211335763335228,-0.852459371089935,0.513913512229919,-0.0959467887878418,-0.874716401100159,-0.48346883058548,-0.0336037836968899,-0.852459371089935,0.513913512229919,-0.0959467887878418,-0.855296611785889,0.473080158233643,-0.211335763335228,-0.84768545627594,-0.511094987392426,-0.142166495323181,1.91515283631816e-007,-0.999999463558197,-0.000943891180213541,-0.874716401100159,-0.48346883058548,-0.0336037836968899,-0.84768545627594,-0.511094987392426,-0.142166495323181,7.75691262333567e-007,-0.994158565998077,-0.107929565012455,0.874733209609985,-0.483437389135361,-0.0336153879761696,1.91515283631816e-007,-0.999999463558197,-0.000943891180213541,7.75691262333567e-007,-0.994158565998077,-0.107929565012455,0.847688972949982,-0.511079072952271,-0.142202392220497,5.82694246986648e-006,0.714608907699585,0.699524283409119,2.58609986758529e-007,0.992096126079559,-0.12547992169857,-0.852459371089935,0.513913512229919,-0.0959467887878418,-0.6188725233078,0.357323080301285,0.69951194524765,0.618777811527252,0.357282519340515,0.699616491794586,0.852477669715881,0.513881921768188,-0.0959545448422432,
- 2.58609986758529e-007,0.992096126079559,-0.12547992169857,5.82694246986648e-006,0.714608907699585,0.699524283409119,0.618781328201294,-0.357283443212509,0.699612975120544,0.874733209609985,-0.483437389135361,-0.0336153879761696,0.852477669715881,0.513881921768188,-0.0959545448422432,0.618777811527252,0.357282519340515,0.699616491794586,5.20742878507008e-006,-0.714612424373627,0.699520528316498,1.91515283631816e-007,-0.999999463558197,-0.000943891180213541,0.874733209609985,-0.483437389135361,-0.0336153879761696,0.618781328201294,-0.357283443212509,0.699612975120544,-0.618873536586761,-0.357321679592133,0.699511766433716,-0.874716401100159,-0.48346883058548,-0.0336037836968899,1.91515283631816e-007,-0.999999463558197,-0.000943891180213541,5.20742878507008e-006,-0.714612424373627,0.699520528316498,-0.6188725233078,0.357323080301285,0.69951194524765,-0.852459371089935,0.513913512229919,-0.0959467887878418,-0.874716401100159,-0.48346883058548,-0.0336037836968899,-0.618873536586761,-0.357321679592133,0.699511766433716,0.868844389915466,0.494444042444229,-0.0251876730471849,0.861960828304291,-0.504827797412872,-0.0466088615357876,0.8635413646698,-0.491522252559662,-0.112704180181026,0.859422743320465,0.50330114364624,-0.0898916572332382,2.94608003059693e-006,0.999897420406342,-0.0143255749717355,0.868844389915466,0.494444042444229,-0.0251876730471849,0.859422743320465,0.50330114364624,-0.0898916572332382,5.78884794322221e-007,0.996911406517029,-0.0785346329212189,2.94608003059693e-006,0.999897420406342,-0.0143255749717355,5.78884794322221e-007,0.996911406517029,-0.0785346329212189,-0.859429955482483,0.503296077251434,-0.0898504182696342,-0.86883807182312,0.494456261396408,-0.0251662116497755,-0.8619544506073,-0.504840433597565,-0.0465900525450706,-0.86883807182312,0.494456261396408,-0.0251662116497755,-0.859429955482483,0.503296077251434,-0.0898504182696342,-0.863549172878265,-0.491517633199692,-0.112664058804512,3.2531279430259e-006,-0.998364865779877,-0.0571641512215137,-0.8619544506073,-0.504840433597565,-0.0465900525450706,
- -0.863549172878265,-0.491517633199692,-0.112664058804512,9.29663087845256e-007,-0.992263555526733,-0.124149762094021,0.861960828304291,-0.504827797412872,-0.0466088615357876,3.2531279430259e-006,-0.998364865779877,-0.0571641512215137,9.29663087845256e-007,-0.992263555526733,-0.124149762094021,0.8635413646698,-0.491522252559662,-0.112704180181026,3.32631207129452e-005,0.660323202610016,0.750981450080872,2.94608003059693e-006,0.999897420406342,-0.0143255749717355,-0.86883807182312,0.494456261396408,-0.0251662116497755,-0.571859776973724,0.330137133598328,0.75098991394043,0.571864306926727,0.330147355794907,0.75098192691803,0.868844389915466,0.494444042444229,-0.0251876730471849,2.94608003059693e-006,0.999897420406342,-0.0143255749717355,3.32631207129452e-005,0.660323202610016,0.750981450080872,0.57187557220459,-0.330164551734924,0.750965893268585,0.861960828304291,-0.504827797412872,-0.0466088615357876,0.868844389915466,0.494444042444229,-0.0251876730471849,0.571864306926727,0.330147355794907,0.75098192691803,3.36500415869523e-005,-0.660357177257538,0.750951647758484,3.2531279430259e-006,-0.998364865779877,-0.0571641512215137,0.861960828304291,-0.504827797412872,-0.0466088615357876,0.57187557220459,-0.330164551734924,0.750965893268585,-0.571868538856506,-0.330152481794357,0.7509765625,-0.8619544506073,-0.504840433597565,-0.0465900525450706,3.2531279430259e-006,-0.998364865779877,-0.0571641512215137,3.36500415869523e-005,-0.660357177257538,0.750951647758484,-0.571859776973724,0.330137133598328,0.75098991394043,-0.86883807182312,0.494456261396408,-0.0251662116497755,-0.8619544506073,-0.504840433597565,-0.0465900525450706,-0.571868538856506,-0.330152481794357,0.7509765625,0.865951478481293,0.499926537275314,0.0141889424994588,0.865951538085938,-0.499926447868347,0.0141873359680176,0.860912621021271,-0.497083276510239,-0.108339853584766,0.860912621021271,0.497083246707916,-0.108340248465538,-2.39439395954832e-006,0.99989926815033,0.0141910798847675,0.865951478481293,0.499926537275314,0.0141889424994588,0.860912621021271,0.497083246707916,-0.108340248465538,
- -2.30895602726378e-005,0.994117438793182,-0.108307905495167,-2.39439395954832e-006,0.99989926815033,0.0141910798847675,-2.30895602726378e-005,0.994117438793182,-0.108307905495167,-0.860924661159515,0.497063308954239,-0.108336590230465,-0.865948140621185,0.499933302402496,0.0141554931178689,-0.86594831943512,-0.499933123588562,0.0141535960137844,-0.865948140621185,0.499933302402496,0.0141554931178689,-0.860924661159515,0.497063308954239,-0.108336590230465,-0.860924780368805,-0.497063457965851,-0.108334988355637,-2.28673320634698e-006,-0.99989926815033,0.0141893588006496,-0.86594831943512,-0.499933123588562,0.0141535960137844,-0.860924780368805,-0.497063457965851,-0.108334988355637,-2.31206358876079e-005,-0.994117617607117,-0.108305901288986,0.865951538085938,-0.499926447868347,0.0141873359680176,-2.28673320634698e-006,-0.99989926815033,0.0141893588006496,-2.31206358876079e-005,-0.994117617607117,-0.108305901288986,0.860912621021271,-0.497083276510239,-0.108339853584766,3.87630207114853e-005,0.714618980884552,0.699513912200928,-2.39439395954832e-006,0.99989926815033,0.0141910798847675,-0.865948140621185,0.499933302402496,0.0141554931178689,-0.618860483169556,0.357318252325058,0.699525058269501,0.618874788284302,0.357294499874115,0.699524521827698,0.865951478481293,0.499926537275314,0.0141889424994588,-2.39439395954832e-006,0.99989926815033,0.0141910798847675,3.87630207114853e-005,0.714618980884552,0.699513912200928,0.618884086608887,-0.357297092676163,0.699515104293823,0.865951538085938,-0.499926447868347,0.0141873359680176,0.865951478481293,0.499926537275314,0.0141889424994588,0.618874788284302,0.357294499874115,0.699524521827698,3.98259981011506e-005,-0.714637160301209,0.699495315551758,-2.28673320634698e-006,-0.99989926815033,0.0141893588006496,0.865951538085938,-0.499926447868347,0.0141873359680176,0.618884086608887,-0.357297092676163,0.699515104293823,-0.618873059749603,-0.357321918010712,0.699512124061584,-0.86594831943512,-0.499933123588562,0.0141535960137844,-2.28673320634698e-006,-0.99989926815033,0.0141893588006496,
- 3.98259981011506e-005,-0.714637160301209,0.699495315551758,-0.618860483169556,0.357318252325058,0.699525058269501,-0.865948140621185,0.499933302402496,0.0141554931178689,-0.86594831943512,-0.499933123588562,0.0141535960137844,-0.618873059749603,-0.357321918010712,0.699512124061584,0.865916073322296,0.49991562962532,-0.0165439881384373,0.865915060043335,-0.499917387962341,-0.0165458954870701,0.862831056118011,-0.498175919055939,-0.0856930688023567,0.862829685211182,0.49817818403244,-0.0856937393546104,2.04027037398191e-006,0.999863088130951,-0.0165463034063578,0.865916073322296,0.49991562962532,-0.0165439881384373,0.862829685211182,0.49817818403244,-0.0856937393546104,-1.97736626432743e-005,0.996323347091675,-0.085673451423645,2.04027037398191e-006,0.999863088130951,-0.0165463034063578,-1.97736626432743e-005,0.996323347091675,-0.085673451423645,-0.862833857536316,0.498175919055939,-0.0856657177209854,-0.865899741649628,0.499944001436234,-0.0165436081588268,-0.865898489952087,-0.499945878982544,-0.0165458787232637,-0.865899741649628,0.499944001436234,-0.0165436081588268,-0.862833857536316,0.498175919055939,-0.0856657177209854,-0.862835288047791,-0.498173654079437,-0.0856648311018944,1.79859375748492e-006,-0.999863028526306,-0.0165487453341484,-0.865898489952087,-0.499945878982544,-0.0165458787232637,-0.862835288047791,-0.498173654079437,-0.0856648311018944,-1.97391618712572e-005,-0.99632340669632,-0.0856719017028809,0.865915060043335,-0.499917387962341,-0.0165458954870701,1.79859375748492e-006,-0.999863028526306,-0.0165487453341484,-1.97391618712572e-005,-0.99632340669632,-0.0856719017028809,0.862831056118011,-0.498175919055939,-0.0856930688023567,-0.618740677833557,0.357243031263351,0.699669539928436,7.83300492912531e-005,0.714520335197449,0.699614644050598,2.04027037398191e-006,0.999863088130951,-0.0165463034063578,-0.865899741649628,0.499944001436234,-0.0165436081588268,7.83300492912531e-005,0.714520335197449,0.699614644050598,0.618863999843597,0.357242584228516,0.699560761451721,0.865916073322296,0.49991562962532,-0.0165439881384373,
- 2.04027037398191e-006,0.999863088130951,-0.0165463034063578,0.618863999843597,0.357242584228516,0.699560761451721,0.618872165679932,-0.357248246669769,0.69955050945282,0.865915060043335,-0.499917387962341,-0.0165458954870701,0.865916073322296,0.49991562962532,-0.0165439881384373,0.618872165679932,-0.357248246669769,0.69955050945282,7.56786539568566e-005,-0.714549422264099,0.699584901332855,1.79859375748492e-006,-0.999863028526306,-0.0165487453341484,0.865915060043335,-0.499917387962341,-0.0165458954870701,7.56786539568566e-005,-0.714549422264099,0.699584901332855,-0.618752181529999,-0.357253789901733,0.699653744697571,-0.865898489952087,-0.499945878982544,-0.0165458787232637,1.79859375748492e-006,-0.999863028526306,-0.0165487453341484,-0.618752181529999,-0.357253789901733,0.699653744697571,-0.618740677833557,0.357243031263351,0.699669539928436,-0.865899741649628,0.499944001436234,-0.0165436081588268,-0.865898489952087,-0.499945878982544,-0.0165458787232637,-0.000108836888102815,0,1,-0.000108836888102815,0,1,-0.000108836888102815,0,1,-0.000108836888102815,0,1,-0.00010883690265473,0,1,-0.00010883690265473,0,1,0.116104461252689,-0.0668105110526085,-0.990987479686737,6.17149489698932e-005,-0.133859634399414,-0.991000354290009,-0.11599013209343,-0.0668228641152382,-0.990999937057495,-0.11589053273201,0.0671213790774345,-0.990991532802582,6.15210810792632e-005,0.133990302681923,-0.990982711315155,0.116005167365074,0.0671088322997093,-0.990978896617889,-0.863269329071045,0.504280745983124,0.0216087624430656,-4.83620215163683e-006,0.999403536319733,0.0345337316393852,-1.61353291332489e-005,0.990248382091522,-0.13931331038475,-0.856639564037323,0.496033817529678,-0.141842558979988,-4.83620215163683e-006,0.999403536319733,0.0345337316393852,0.863287925720215,0.504249036312103,0.0216088909655809,0.856652200222015,0.496011704206467,-0.141843006014824,-1.61353291332489e-005,0.990248382091522,-0.13931331038475,0.863287925720215,0.504249036312103,0.0216088909655809,0.869143187999725,-0.494483679533005,-0.00871879793703556,0.85724151134491,-0.493518382310867,-0.146889597177505,
- 0.856652200222015,0.496011704206467,-0.141843006014824,0.869143187999725,-0.494483679533005,-0.00871879793703556,-4.68933785668924e-006,-0.999628782272339,-0.0272458232939243,-1.57345129991882e-005,-0.988775789737701,-0.14940670132637,0.85724151134491,-0.493518382310867,-0.146889597177505,-4.68933785668924e-006,-0.999628782272339,-0.0272458232939243,-0.869124948978424,-0.494515627622604,-0.00872161146253347,-0.857228875160217,-0.493540525436401,-0.146889299154282,-1.57345129991882e-005,-0.988775789737701,-0.14940670132637,-0.869124948978424,-0.494515627622604,-0.00872161146253347,-0.863269329071045,0.504280745983124,0.0216087624430656,-0.856639564037323,0.496033817529678,-0.141842558979988,-0.857228875160217,-0.493540525436401,-0.146889299154282
- }
- NormalsW: *4403 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *13209 {
- a: 0.765659749507904,-0.643245756626129,-0.000185409269761294,0.765659987926483,-0.643245577812195,-0.000185202196007594,0.765659868717194,-0.643245577812195,-0.000184995064046234,0.765659749507904,-0.643245756626129,-0.000185202181455679,-0.643270194530487,-0.765639126300812,0.000570301781408489,-0.64326936006546,-0.765639841556549,0.000569729367271066,-0.643269300460815,-0.765639781951904,0.000570301723200828,-0.643270134925842,-0.765639185905457,0.000570874195545912,0.765717506408691,-0.643177092075348,-1.47388673212845e-005,0.765717506408691,-0.643177092075348,-1.4761506463401e-005,0.765717804431915,-0.643176853656769,-1.47388682307792e-005,0.765717685222626,-0.643176853656769,-1.4716228179168e-005,0.765688478946686,-0.643211662769318,6.91019449732266e-005,0.765688002109528,-0.643212258815765,6.88993095536716e-005,0.765688002109528,-0.643212199211121,6.8696666858159e-005,0.765688478946686,-0.643211662769318,6.8899302277714e-005,0.765618741512299,-0.643294632434845,-6.74387629260309e-005,0.765618681907654,-0.64329469203949,-6.76394483889453e-005,0.765618681907654,-0.643294751644135,-6.78401411278173e-005,0.765618681907654,-0.643294632434845,-6.76394483889453e-005,0.76570862531662,-0.643187701702118,-1.32516433950514e-005,0.7657071352005,-0.643189370632172,-1.34087058540899e-005,0.7657071352005,-0.643189370632172,-1.35657701321179e-005,0.76570862531662,-0.643187701702118,-1.34087076730793e-005,-0.643244683742523,-0.765660762786865,-5.30396573594771e-005,-0.643244683742523,-0.76566070318222,-5.30069009982981e-005,-0.643244683742523,-0.765660762786865,-5.30396573594771e-005,-0.643244683742523,-0.765660762786865,-5.30724137206562e-005,0.765650451183319,-0.643256902694702,-7.12636829121038e-005,0.765650451183319,-0.643256902694702,-7.13225454092026e-005,0.765652596950531,-0.643254339694977,-7.12636829121038e-005,0.765652596950531,-0.643254280090332,-7.12048276909627e-005,0.765621542930603,-0.643291354179382,-0.000183099240530282,0.765620231628418,-0.643292844295502,-0.000183217285666615,0.765620291233063,-0.643292784690857,-0.000183335330802947,
- 0.765621542930603,-0.643291294574738,-0.000183217285666615,0.765558481216431,-0.643366396427155,0.000106595944089349,0.765557408332825,-0.643367648124695,0.000106546882307157,0.76555734872818,-0.64336770772934,0.000106497827800922,0.765558481216431,-0.643366396427155,0.000106546889583115,0.76570200920105,-0.643195569515228,0.000107216474134475,0.765701651573181,-0.643196046352386,0.00010718681733124,0.765701591968536,-0.643196046352386,0.000107157160528004,0.76570200920105,-0.643195569515228,0.00010718681733124,-0.643245398998261,-0.765660107135773,-1.90478676813655e-005,-0.643245220184326,-0.765660226345062,-1.88939229701646e-005,-0.643245220184326,-0.765660285949707,-1.90478676813655e-005,-0.643245398998261,-0.765660107135773,-1.92018123925664e-005,0.765579998493195,-0.643340826034546,2.50772500294261e-005,0.765579998493195,-0.643340826034546,2.50749872066081e-005,0.765580415725708,-0.643340229988098,2.50772500294261e-005,0.765580475330353,-0.643340229988098,2.50795128522441e-005,0.765694916248322,-0.643204092979431,2.17308952414896e-005,0.765694141387939,-0.643204987049103,2.16934695345117e-005,0.765694200992584,-0.643204927444458,2.16560420085443e-005,0.765694916248322,-0.643204092979431,2.16934695345117e-005,0.765663325786591,-0.64324164390564,0.000100596196716651,0.765663206577301,-0.64324164390564,0.000100418445072137,0.765663266181946,-0.643241584300995,0.000100240715255495,0.765663266181946,-0.64324164390564,0.000100418459624052,0.604883551597595,0.796314001083374,0,0.604883551597595,0.796313941478729,0,0.60488361120224,0.796314001083374,0,0.604883551597595,0.796314001083374,0,-0.999997019767761,-0.00245103752240539,-1.27836315755303e-007,-0.999997019767761,-0.00245103752240539,-9.28124350707549e-008,-0.999997079372406,-0.0024510370567441,-5.77885685970614e-008,-0.999997079372406,-0.00245103682391346,-9.28124421761822e-008,-0.00255709979683161,0.999996781349182,4.5378281356534e-005,-0.00255709979683161,0.999996781349182,4.5438515371643e-005,-0.00255689350888133,0.999996781349182,4.54987457487732e-005,-0.00255689350888133,0.999996721744537,4.54385117336642e-005,
- 1,-0,-1.37529241328593e-006,1,-0,-1.37634333441383e-006,1,-0,-1.37529241328593e-006,1,-0,-1.37424160584487e-006,0,-1,-0.000117478572065011,0,-1,-5.8809502661461e-005,0,-1,-1.40429904149642e-007,0,-1,-5.8809502661461e-005,1,0,-9.15992472982907e-007,1,0,-1.06717948256119e-007,1,-0,7.0255657647067e-007,1,0,-1.06717948256119e-007,7.22071816401659e-013,1,6.2644113540955e-007,0,1,6.50534275337122e-007,-0.256046772003174,0.966664493083954,5.88431987580407e-007,-0.392139822244644,0.919905602931976,6.19823310898937e-007,-0.765633821487427,0.643276631832123,0,-0.765641868114471,0.643267035484314,0,-0.765649914741516,0.64325749874115,0,-0.765641927719116,0.643267035484314,0,0.765613675117493,-0.643300712108612,0,0.765613615512848,-0.643300712108612,0,0.765613615512848,-0.643300652503967,0,0.765613675117493,-0.643300712108612,0,-0.643234133720398,-0.765669584274292,1.51650723978491e-007,-0.643234193325043,-0.765669584274292,1.4683264737414e-007,-0.643234193325043,-0.765669584274292,1.51650709767637e-007,-0.643234133720398,-0.765669584274292,1.56468786371988e-007,-0.765665650367737,0.64323878288269,0,-0.765665650367737,0.64323878288269,0,-0.765665650367737,0.64323878288269,0,-0.765665650367737,0.64323878288269,0,0.76559317111969,-0.64332515001297,5.85228505656232e-008,0.76559317111969,-0.64332515001297,7.85883713660951e-008,0.765593111515045,-0.643325090408325,5.85228434601959e-008,0.765593111515045,-0.643325090408325,3.84573333178651e-008,-0.765641868114471,0.643267095088959,0,-0.7656409740448,0.64326810836792,0,-0.765640139579773,0.643269121646881,0,-0.7656409740448,0.64326810836792,0,0.765671789646149,-0.643231511116028,0,0.765671789646149,-0.643231511116028,0,0.765671730041504,-0.643231451511383,0,0.765671789646149,-0.643231511116028,0,-0.765635848045349,0.643274247646332,0,-0.765653550624847,0.643253207206726,0,-0.765671193599701,0.64323216676712,0,-0.765653491020203,0.643253207206726,0,-0.765643239021301,0.643265426158905,0,-0.765638291835785,0.643271327018738,0,-0.765633344650269,0.643277168273926,0,-0.765638291835785,0.643271327018738,0,
- -0.765572786331177,0.643349289894104,3.03961371628247e-008,-0.765572905540466,0.643349289894104,6.07921535333844e-008,-0.765572905540466,0.643349289894104,9.11881699039441e-008,-0.765572786331177,0.643349289894104,6.07921464279571e-008,0.765625298023224,-0.643286764621735,6.39842241412225e-008,0.765625357627869,-0.643286824226379,4.77097401585524e-008,0.765625357627869,-0.643286764621735,3.1435249070455e-008,0.765625298023224,-0.643286764621735,4.77097366058388e-008,-0.643254697322845,-0.765652418136597,6.0519830924477e-008,-0.643254697322845,-0.765652358531952,9.0779707306865e-008,-0.643254697322845,-0.765652358531952,1.21039576583826e-007,-0.643254697322845,-0.765652418136597,9.0779707306865e-008,-0.76563024520874,0.643280923366547,0,-0.765641272068024,0.643267750740051,0,-0.765652298927307,0.643254637718201,0,-0.765641272068024,0.643267750740051,0,-0.765673220157623,0.643229901790619,-2.84217128185358e-014,-0.765670537948608,0.643232941627502,8.36506842460949e-007,-0.765670597553253,0.643233060836792,1.67301379860874e-006,-0.765673100948334,0.643229961395264,8.36510423596337e-007,0.765659749507904,-0.643245816230774,0,0.765659749507904,-0.643245756626129,0,0.765659749507904,-0.643245756626129,0,0.765659749507904,-0.643245816230774,0,-0.765678942203522,0.64322304725647,-1.28215489780814e-007,-0.765680313110352,0.643221378326416,1.64809179636904e-007,-0.765680372714996,0.643221378326416,4.57833380096417e-007,-0.765678942203522,0.64322304725647,1.64809449643144e-007,-0.643270313739777,-0.765639185905457,3.54692502924081e-007,-0.643270254135132,-0.765639185905457,2.37865435792628e-007,-0.643270194530487,-0.765639245510101,1.21038340239465e-007,-0.643270373344421,-0.765639185905457,2.37865435792628e-007,-0.765680074691772,0.643221616744995,0,-0.765657186508179,0.643248796463013,0,-0.76563435792923,0.64327597618103,0,-0.765657186508179,0.643248796463013,0,0.765717566013336,-0.643177092075348,6.08070749308354e-008,0.765717566013336,-0.643177092075348,6.08070749308354e-008,0.765717506408691,-0.643177092075348,6.08070749308354e-008,
- 0.765717506408691,-0.643177092075348,6.08070749308354e-008,-0.643262207508087,-0.765646040439606,1.21039704481518e-007,-0.643262088298798,-0.76564610004425,6.2625602481603e-008,-0.643262028694153,-0.76564621925354,4.21150270213388e-009,-0.643262147903442,-0.76564610004425,6.26256095870303e-008,-0.765648126602173,0.643259584903717,0,-0.765647292137146,0.643260598182678,0,-0.765646398067474,0.643261671066284,0,-0.765647292137146,0.643260598182678,0,-0.765704333782196,0.643192768096924,1.89341960776801e-007,-0.765704035758972,0.643193066120148,1.09870867959216e-007,-0.765703976154327,0.643193125724792,3.0399728956354e-008,-0.765704333782196,0.643192768096924,1.09870846642934e-007,0.76568865776062,-0.643211543560028,0,0.765688478946686,-0.643211662769318,0,0.765688478946686,-0.643211662769318,0,0.76568865776062,-0.643211543560028,0,0.76566344499588,-0.643241405487061,1.21032925903819e-007,0.765663266181946,-0.643241703510284,9.07747903511336e-008,0.765663266181946,-0.643241703510284,6.05166334821661e-008,0.76566344499588,-0.643241465091705,9.07747832457062e-008,-0.643249213695526,-0.765657007694244,6.05195040748185e-008,-0.643249154090881,-0.7656569480896,6.05194969693912e-008,-0.643249154090881,-0.7656569480896,6.05194969693912e-008,-0.643249213695526,-0.765657007694244,6.05195040748185e-008,-0.76565283536911,0.643254041671753,0,-0.765657067298889,0.643249034881592,0,-0.765661299228668,0.643243968486786,0,-0.765657067298889,0.643249034881592,0,-0.765622138977051,0.643290579319,0,-0.765622138977051,0.643290579319,0,-0.765622138977051,0.643290579319,0,-0.765622138977051,0.643290579319,0,-0.643266022205353,-0.765642762184143,1.21039391842714e-007,-0.643265902996063,-0.765642821788788,1.21039391842714e-007,-0.643265902996063,-0.765642821788788,1.21039391842714e-007,-0.643266081809998,-0.765642821788788,1.21039406053569e-007,-0.765651345252991,0.643255770206451,0,-0.765646159648895,0.643261909484863,0,-0.7656409740448,0.64326810836792,0,-0.765646159648895,0.643261909484863,0,-0.76556932926178,0.643353521823883,3.03962757186582e-008,
- -0.76556932926178,0.643353402614594,6.0792423539624e-008,-0.76556932926178,0.643353402614594,9.11885678078761e-008,-0.76556932926178,0.643353521823883,6.0792423539624e-008,0.765618801116943,-0.643294632434845,6.07972836519366e-008,0.765618741512299,-0.643294632434845,6.07972765465092e-008,0.765618681907654,-0.643294632434845,6.07972765465092e-008,0.765618801116943,-0.643294632434845,6.07972836519366e-008,-0.64325624704361,-0.765651047229767,6.05196959213572e-008,-0.643256068229675,-0.765651166439056,9.0779508354899e-008,-0.643256068229675,-0.765651166439056,1.21039320788441e-007,-0.64325624704361,-0.765651047229767,9.07795012494717e-008,-0.765651106834412,0.643256068229675,0,-0.765651106834412,0.643256068229675,0,-0.765651106834412,0.643256068229675,0,-0.765651106834412,0.643256068229675,0,-0.765709578990936,0.643186450004578,0,-0.765709161758423,0.643187046051025,0,-0.765709161758423,0.643187046051025,0,-0.765709578990936,0.643186509609222,0,0.765709161758423,-0.643187046051025,0,0.76570862531662,-0.643187701702118,0,0.76570862531662,-0.643187701702118,0,0.765709161758423,-0.643187046051025,0,-0.76570200920105,0.643195509910584,6.80876155456644e-008,-0.765702247619629,0.64319521188736,6.66691235551298e-008,-0.765702247619629,0.64319521188736,6.52506315645951e-008,-0.76570200920105,0.643195509910584,6.66691235551298e-008,-0.643244624137878,-0.765660762786865,1.21037189160234e-007,-0.643244683742523,-0.765660762786865,1.21037189160234e-007,-0.643244683742523,-0.765660762786865,1.21037189160234e-007,-0.643244624137878,-0.765660762786865,1.21037189160234e-007,-0.765643179416656,0.643265545368195,0,-0.76565009355545,0.64325737953186,0,-0.76565682888031,0.643249273300171,0,-0.765650033950806,0.64325737953186,0,0.765649437904358,-0.643258035182953,6.07948322794982e-008,0.765649437904358,-0.643258035182953,6.07948322794982e-008,0.765650451183319,-0.643256902694702,6.07948322794982e-008,0.765650451183319,-0.643256902694702,6.07948322794982e-008,-0.643250107765198,-0.765656232833862,1.21037530220747e-007,-0.643249750137329,-0.765656471252441,1.21037530220747e-007,
- -0.643249750137329,-0.765656471252441,1.21037530220747e-007,-0.643250048160553,-0.765656173229218,1.21037516009892e-007,-0.765645027160645,0.643263339996338,0,-0.765650749206543,0.643256545066834,0,-0.765656471252441,0.643249690532684,0,-0.765650749206543,0.643256545066834,0,-0.765674769878387,0.643227934837341,9.1202196017548e-008,-0.765675008296967,0.643227756023407,6.0801504275787e-008,-0.765675008296967,0.643227756023407,3.04008160867397e-008,-0.765674769878387,0.643227934837341,6.0801504275787e-008,0.765622138977051,-0.643290579319,0,0.765621542930603,-0.643291354179382,0,0.765621542930603,-0.643291294574738,1.77635683940025e-015,0.765622138977051,-0.643290579319,0,0.765653133392334,-0.64325362443924,1.21034545941257e-007,0.7656529545784,-0.643253982067108,9.07760124846391e-008,0.7656529545784,-0.643253982067108,6.05174435008848e-008,0.765653133392334,-0.64325362443924,9.07759982737844e-008,-0.643257558345795,-0.765649914741516,6.05187153723818e-008,-0.643257617950439,-0.765649855136871,6.05187153723818e-008,-0.643257617950439,-0.765649855136871,6.05187153723818e-008,-0.643257558345795,-0.765649914741516,6.05187153723818e-008,-0.765645742416382,0.643262445926666,0,-0.765649974346161,0.64325737953186,0,-0.765654265880585,0.643252372741699,0,-0.765649974346161,0.64325737953186,0,-0.765722870826721,0.643170773983002,0,-0.765722811222076,0.643170714378357,0,-0.765722811222076,0.643170714378357,0,-0.765722870826721,0.643170773983002,0,-0.643254280090332,-0.765652656555176,1.2103787128126e-007,-0.643254458904266,-0.765652596950531,1.2103787128126e-007,-0.643254458904266,-0.765652596950531,1.2103787128126e-007,-0.643254280090332,-0.765652656555176,1.2103787128126e-007,-0.765653371810913,0.64325338602066,0,-0.765652000904083,0.643254995346069,0,-0.765650629997253,0.643256664276123,0,-0.765652000904083,0.643254995346069,0,-0.765569984912872,0.643352627754211,3.03962721659445e-008,-0.76556932926178,0.643353402614594,6.0792423539624e-008,-0.76556932926178,0.643353402614594,9.11885678078761e-008,-0.765569984912872,0.643352627754211,6.0792423539624e-008,
- 0.765559136867523,-0.643365621566772,6.07931909257786e-008,0.765558481216431,-0.643366396427155,6.0793198031206e-008,0.765558481216431,-0.643366396427155,6.0793198031206e-008,0.765559136867523,-0.643365621566772,6.07931909257786e-008,-0.643259227275848,-0.765648543834686,6.05194259151176e-008,-0.643258929252625,-0.765648722648621,9.07790962401123e-008,-0.643258929252625,-0.765648722648621,1.21038766565107e-007,-0.643259227275848,-0.765648543834686,9.07791033455396e-008,-0.765651106834412,0.643256068229675,0,-0.765649914741516,0.64325749874115,0,-0.765648722648621,0.643258929252625,0,-0.765649914741516,0.64325749874115,0,-0.765715420246124,0.643179535865784,0,-0.765715956687927,0.643178939819336,0,-0.765715956687927,0.643178939819336,0,-0.765715420246124,0.643179535865784,0,0.765702247619629,-0.64319521188736,0,0.76570200920105,-0.643195569515228,0,0.76570200920105,-0.643195569515228,0,0.765702247619629,-0.64319521188736,0,-0.765633821487427,0.643276691436768,6.80839491451479e-008,-0.765632510185242,0.643278360366821,6.66655424197415e-008,-0.765632510185242,0.643278360366821,6.52471285889078e-008,-0.765633821487427,0.643276691436768,6.66655353143142e-008,-0.64324551820755,-0.765659987926483,1.21037004419122e-007,-0.643245398998261,-0.765660107135773,1.21037004419122e-007,-0.643245398998261,-0.765660107135773,1.21037004419122e-007,-0.64324551820755,-0.765659987926483,1.21037004419122e-007,-0.76564234495163,0.643266499042511,0,-0.765649259090424,0.643258333206177,0,-0.765655994415283,0.643250226974487,0,-0.765649199485779,0.643258333206177,0,0.765579640865326,-0.643341243267059,6.07915637829137e-008,0.765579640865326,-0.643341243267059,6.07915637829137e-008,0.765579998493195,-0.643340826034546,6.07915708883411e-008,0.765579998493195,-0.643340826034546,6.07915708883411e-008,-0.64328396320343,-0.765627801418304,1.21040187650578e-007,-0.643284142017365,-0.765627562999725,1.21040173439724e-007,-0.643284142017365,-0.765627562999725,1.21040173439724e-007,-0.64328396320343,-0.765627801418304,1.21040187650578e-007,-0.765653789043427,0.643252849578857,0,
- -0.765640676021576,0.643268465995789,0,-0.765627562999725,0.64328408241272,0,-0.765640676021576,0.643268465995789,0,-0.765621483325958,0.643291294574738,9.11822013449637e-008,-0.765620648860931,0.643292307853699,6.07881815994915e-008,-0.765620648860931,0.643292307853699,3.0394154748592e-008,-0.765621483325958,0.643291294574738,6.07881744940642e-008,0.765695452690125,-0.643203318119049,0,0.765694916248322,-0.643204092979431,0,0.765694916248322,-0.643204092979431,0,0.765695452690125,-0.643203318119049,0,0.765649437904358,-0.643258035182953,1.21035085953736e-007,0.765649437904358,-0.643258035182953,9.07763961777164e-008,0.765649437904358,-0.643258035182953,6.05177135071244e-008,0.765649437904358,-0.643258035182953,9.07763961777164e-008,-0.643271863460541,-0.765637874603271,6.05199375058874e-008,-0.643271863460541,-0.765637874603271,6.05199375058874e-008,-0.643271863460541,-0.765637874603271,6.05199375058874e-008,-0.643271863460541,-0.765637874603271,6.05199375058874e-008,-0.765647828578949,0.643259942531586,0,-0.765645027160645,0.643263339996338,0,-0.76564222574234,0.643266677856445,0,-0.765645086765289,0.643263339996338,0,-0.765676915645599,0.643225431442261,0,-0.765676915645599,0.643225431442261,0,-0.765676915645599,0.643225431442261,0,-0.765676915645599,0.643225431442261,0,-0.643257081508636,-0.76565033197403,1.55837582838103e-007,-0.643257081508636,-0.76565033197403,1.55837582838103e-007,-0.643257081508636,-0.76565033197403,1.55837582838103e-007,-0.643257081508636,-0.76565033197403,1.55837582838103e-007,-0.765645086765289,0.643263280391693,0,-0.765646934509277,0.643261075019836,0,-0.765648782253265,0.643258810043335,0,-0.765646994113922,0.643261075019836,0,-0.765632510185242,0.643278360366821,3.03981799731901e-008,-0.765632510185242,0.643278360366821,6.07962320486877e-008,-0.765632510185242,0.643278360366821,9.11942947823263e-008,-0.765632510185242,0.643278360366821,6.07962320486877e-008,0.76567006111145,-0.643233597278595,6.07929351303937e-008,0.76567006111145,-0.643233597278595,-3.73564503775015e-008,0.76567006111145,-0.64323365688324,-1.35505857201679e-007,
- 0.76567006111145,-0.64323365688324,-3.73564645883562e-008,-0.768670439720154,0.639644980430603,0,-0.768696367740631,0.63961386680603,0,-0.768670439720154,0.639644980430603,0,-0.768644571304321,0.639676094055176,0,-0.765652120113373,0.64325487613678,0,-0.765632629394531,0.643278002738953,0,-0.765613198280334,0.64330118894577,0,-0.765632629394531,0.643278002738953,0,-0.765652894973755,0.643253982067108,0,-0.765651226043701,0.643255949020386,0,-0.765649676322937,0.643257856369019,0,-0.765651226043701,0.643255949020386,0,0.765598297119141,-0.643319070339203,9.75793810198411e-008,0.765598297119141,-0.643319070339203,7.25428250802906e-008,0.765598237514496,-0.643319010734558,4.75062762461675e-008,0.765598297119141,-0.643319070339203,7.25428250802906e-008,0.766227304935455,-0.642569601535797,3.44389627571218e-005,0.766227245330811,-0.642569661140442,3.44389627571218e-005,0.766227185726166,-0.642569780349731,3.44389627571218e-005,0.766227245330811,-0.642569661140442,3.44389627571218e-005,0.765656471252441,-0.643249690532684,0,0.765656590461731,-0.64324951171875,0,0.765656769275665,-0.643249332904816,0,0.765656590461731,-0.64324951171875,0,0.765659689903259,-0.643245816230774,-0.000522101938258857,0.76565957069397,-0.643245935440063,-0.000522101996466517,0.765659391880035,-0.643245995044708,-0.000522101938258857,0.76565957069397,-0.643245875835419,-0.000522101996466517,-0.765722274780273,0.643171310424805,0.000290442141704261,-0.764043569564819,0.645164728164673,-9.42089973250404e-005,-0.761575877666473,0.648073315620422,-0.00178221496753395,-0.762714862823486,0.6467325091362,-0.0017931645270437,-0.764043569564819,0.645164728164673,-9.42089973250404e-005,-0.765722274780273,0.643171310424805,0.000290442141704261,-0.766625225543976,0.642094194889069,0.000876969308592379,-0.76664924621582,0.642065584659576,0.000877077342011034,-0.00252503529191017,-0.00299616204574704,0.999992370605469,-0.000635864678770304,-0.000755708373617381,0.999999523162842,0.000880926614627242,0.00104856071993709,0.999999046325684,0.000873066484928131,0.0010392046533525,0.999999165534973,
- 0.764557957649231,-0.644554972648621,-0.000319361133733764,0.76317310333252,-0.646194100379944,0.00018320165690966,0.765208065509796,-0.643782198429108,-0.00110734102781862,0.765216469764709,-0.643772184848785,-0.00110738910734653,0.00075778627069667,0.000901901337783784,-0.999999284744263,0.00146404944825917,0.00174143782351166,-0.999997496604919,-0.0027624792419374,-0.00328816240653396,-0.999990820884705,-0.00275472667999566,-0.00327893509529531,-0.999990820884705,0.643302023410797,0.765611290931702,0.00136533123441041,0.643302023410797,0.765611350536346,0.00136545533314347,0.643302023410797,0.765611350536346,0.00136533111799508,0.643302023410797,0.765611290931702,0.00136520701926202,0.765616655349731,-0.643295168876648,0.00160076119937003,0.765616714954376,-0.643295168876648,0.00160007260274142,0.765616714954376,-0.643295109272003,0.00158467178698629,0.765616655349731,-0.643295228481293,0.00156995933502913,0.765616714954376,-0.643295168876648,0.00159003492444754,-0.643245935440063,-0.765658438205719,0.00141854491084814,-0.643245160579681,-0.765659093856812,0.00140167458448559,-0.643245160579681,-0.765659093856812,0.00141120923217386,-0.643247961997986,-0.765658020973206,-5.7270597153547e-007,-0.643248021602631,-0.765658020973206,-4.00894720087308e-007,-0.643248021602631,-0.765657901763916,-2.29083411795727e-007,-0.643248021602631,-0.765657901763916,-4.00894691665599e-007,-0.765666902065277,0.643237292766571,-5.60027274332242e-007,-0.765666961669922,0.643237233161926,-6.30027557235735e-007,-0.765667080879211,0.643237054347992,-7.0002772645239e-007,-0.765667140483856,0.643237054347992,-6.30027500392316e-007,0.643271684646606,0.765638053417206,-2.38420739151479e-007,0.643271684646606,0.765638053417206,-3.57630369762774e-007,0.643271744251251,0.765638053417206,-4.76840000374068e-007,0.643271744251251,0.765638053417206,-3.57630369762774e-007,0.765658736228943,-0.643247127532959,-2.80002808494828e-007,0.765658676624298,-0.643247067928314,-8.4000362221559e-007,0.765658617019653,-0.643247187137604,-1.40000452120148e-006,
- 0.765658557415009,-0.643247187137604,-8.40003565372172e-007,0.766226708889008,-0.642570495605469,-2.29593894118807e-007,0.766226708889008,-0.642570495605469,-1.14796947059403e-007,0.766227126121521,-0.642569959163666,0,0.766227185726166,-0.642569899559021,-1.14796947059403e-007,-0.643261194229126,-0.765646874904633,8.88178525579244e-016,-0.643261253833771,-0.765646815299988,0,-0.643261075019836,-0.765646994113922,0,-0.643261075019836,-0.765646994113922,0,-0.766238868236542,0.642555832862854,0,-0.766238868236542,0.642555832862854,0,-0.766238868236542,0.642555952072144,0,-0.766238808631897,0.642555892467499,0,0.604883551597595,0.796314060688019,0,0.604883551597595,0.796314001083374,0,0.604883551597595,0.796314001083374,0,0.604883551597595,0.796314060688019,0,-0.765893042087555,0.642964780330658,0.0020199678838253,-0.765636801719666,0.643273115158081,-2.33652102110682e-008,-0.765636205673218,0.643273830413818,-2.33651924474998e-008,-0.768227279186249,0.640176475048065,0.000964783714152873,-6.44710644337465e-006,-7.61391493142582e-006,-1,-1.32820375142728e-007,-1.58085782686612e-007,-1,-0,0,-1,-6.31900184089318e-006,-7.46262730899616e-006,-1,0.768227756023407,-0.640175938606262,-0.000964805134572089,0.765636682510376,-0.643273234367371,2.33652066583545e-008,0.765637338161469,-0.643272459506989,2.33652261982797e-008,0.765893578529358,-0.6429643034935,-0.00202001282013953,0.000239245302509516,0.000287157599814236,1,1.87091600878375e-007,2.22679929606784e-007,1,2.49455041512192e-007,2.96906023322663e-007,1,0.000239335407968611,0.000287267233943567,1,-0.765893042087555,0.642964780330658,0.0020199678838253,-0.768227279186249,0.640176475048065,0.000964783714152873,-0.766014635562897,0.642807126045227,0.00455394992604852,-0.758565664291382,0.65158075094223,0.00454934127628803,-6.44710644337465e-006,-7.61391493142582e-006,-1,-6.31900184089318e-006,-7.46262730899616e-006,-1,-1.24845473692403e-005,-1.45344229167677e-005,-1,-1.26083450595615e-005,-1.46785469041788e-005,-1,0.768227756023407,-0.640175938606262,-0.000964805134572089,
- 0.765893578529358,-0.6429643034935,-0.00202001282013953,0.75856614112854,-0.651580214500427,-0.00454944046214223,0.766014993190765,-0.642806649208069,-0.00455405004322529,0.000239245302509516,0.000287157599814236,1,0.000239335407968611,0.000287267233943567,1,0.00047399292816408,0.00057823455426842,0.999999761581421,0.00047387444647029,0.000578090024646372,0.999999761581421,0.643134891986847,0.765752911567688,1.8963149841511e-006,0.643137454986572,0.765750825405121,2.55209840815951e-007,0.643135726451874,0.76575231552124,-1.45331114254077e-006,0.643133759498596,0.765753865242004,7.66176356137294e-007,0.643139839172363,0.765748739242554,-4.98073404742172e-007,0.643137812614441,0.765750527381897,3.86717147193849e-009,0.643136143684387,0.765751957893372,2.87383272734587e-007,0.643137037754059,0.765751123428345,-1.11691747406439e-007,0.643051981925964,0.76582258939743,-0,0.643105089664459,0.765778005123138,-0,0.643128275871277,0.765758454799652,-0,0.643107891082764,0.765775561332703,-0,-0.765707552433014,0.643102288246155,0.0105520049110055,-0.765713453292847,0.643107354640961,0.00978644657880068,-0.765717625617981,0.643113732337952,0.00902088172733784,-0.765712022781372,0.643109083175659,0.0097864456474781,0.642802000045776,0.76603239774704,-0,0.642766773700714,0.766062021255493,-0,0.642842233181,0.765998601913452,-0,0.642818868160248,0.766018331050873,-0,0.642818868160248,0.766018331050873,-0,0.642842233181,0.765998601913452,-0,0.642886698246002,0.765961349010468,-0,0.642857253551483,0.765986025333405,-0,0.643131196498871,0.765756011009216,4.9934641310756e-007,0.643135726451874,0.76575231552124,1.27174882891268e-006,0.643134295940399,0.765753388404846,1.13804424017872e-006,0.643133461475372,0.765754222869873,7.46026330489258e-007,0.64313155412674,0.765755772590637,9.42972064876813e-007,0.642857253551483,0.765986025333405,-0,0.642886698246002,0.765961349010468,-0,0.642933249473572,0.76592230796814,-0,0.642901122570038,0.765949189662933,-0,0.643130958080292,0.76575630903244,2.23512688535266e-006,0.643129825592041,0.765757262706757,2.13578232433065e-006,
- 0.643129587173462,0.765757322311401,2.03644617613463e-006,0.643131375312805,0.765755951404572,2.11942756322969e-006,0.643129765987396,0.765757203102112,4.11226210417226e-007,0.643131196498871,0.765756011009216,4.9934641310756e-007,0.64313155412674,0.765755772590637,9.42972064876813e-007,0.643129646778107,0.765757322311401,4.6997195113363e-007,0.642901122570038,0.765949189662933,-0,0.642933249473572,0.76592230796814,-0,0.643012285232544,0.765855967998505,-0,0.64295095205307,0.765907466411591,-0,0.643129825592041,0.765757262706757,2.13578232433065e-006,0.643131792545319,0.765755593776703,1.98677980733919e-006,0.643131792545319,0.765755593776703,1.88744002116437e-006,0.643129587173462,0.765757322311401,2.03644617613463e-006,0.643133521080017,0.765754103660584,3.13316661504359e-007,0.643129765987396,0.765757203102112,4.11226210417226e-007,0.643129646778107,0.765757322311401,4.6997195113363e-007,0.643133401870728,0.765754163265228,3.81854079023469e-007,0.64295095205307,0.765907466411591,-0,0.643012285232544,0.765855967998505,-0,0.643105089664459,0.765778005123138,-0,0.643051981925964,0.76582258939743,-0,0.643131792545319,0.765755593776703,1.98677980733919e-006,0.643134891986847,0.765752911567688,1.8963149841511e-006,0.643133759498596,0.765753865242004,7.66176356137294e-007,0.643131792545319,0.765755593776703,1.88744002116437e-006,0.643137812614441,0.765750527381897,3.86717147193849e-009,0.643133521080017,0.765754103660584,3.13316661504359e-007,0.643133401870728,0.765754163265228,3.81854079023469e-007,0.643136143684387,0.765751957893372,2.87383272734587e-007,-0.0036783991381526,-0.00433266488835216,0.999983906745911,-0.00366979488171637,-0.00432254280894995,0.999983906745911,-0.00366780441254377,-0.00432020099833608,0.9999840259552,-0.000635864678770304,-0.000755708373617381,0.999999523162842,-0.00252503529191017,-0.00299616204574704,0.999992370605469,0.762142598628998,-0.647405326366425,0.00227559520862997,0.76104748249054,-0.64869225025177,0.00226220954209566,0.76317310333252,-0.646194100379944,0.00018320165690966,0.764557957649231,-0.644554972648621,-0.000319361133733764,
- 0.00146404944825917,0.00174143782351166,-0.999997496604919,0.00075778627069667,0.000901901337783784,-0.999999284744263,0.00428140815347433,0.00507583608850837,-0.999977946281433,0.00429209973663092,0.00508850160986185,-0.999977886676788,0.0042937807738781,0.00509049277752638,-0.999977886676788,0.767529964447021,-0.640984833240509,0.00603226386010647,0.76512610912323,-0.643852353096008,0.00603136047720909,0.762711405754089,-0.646710813045502,0.00603037234395742,0.76512610912323,-0.643852353096008,0.00603136094287038,0.642718911170959,0.766102075576782,-0,0.642635941505432,0.766171753406525,-0,0.642766773700714,0.766062021255493,-0,0.642802000045776,0.76603239774704,-0,0.643085420131683,0.765794575214386,7.942436468511e-007,0.643103897571564,0.7657790184021,7.92422042650287e-007,0.643017172813416,0.765851855278015,7.72007183513779e-007,0.643017172813416,0.765851736068726,7.05143861523538e-007,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0.999997079372406,-0.00245103775523603,-1.11343226194549e-007,-0.999997079372406,-0.00245103775523603,-1.11343226194549e-007,-0.999997019767761,-0.00245103752240539,-1.11343219089122e-007,-0.999997019767761,-0.00245103752240539,-1.11343219089122e-007,-0.00255729816854,0.999996781349182,-3.80138942546182e-007,-0.00255729816854,0.999996781349182,-2.53426122753808e-007,-0.00255709979683161,0.999996781349182,-1.26713331383144e-007,-0.00255709979683161,0.999996781349182,-2.53426122753808e-007,-0,-1,0,-6.00144801410352e-007,-1,0,-1.2002896028207e-006,-1,0,-6.00144801410352e-007,-1,0,1,-0,-1.39392000164662e-008,1,-0,-2.09087982483425e-008,1,-0,-2.78783964802187e-008,1,-0,-2.09087982483425e-008,0,-1,-1.2217529388181e-007,0,-1,-1.2217529388181e-007,0,-1,-1.2217529388181e-007,0,-1,-1.2217529388181e-007,-0.98671692609787,0.162449136376381,8.16958220184461e-007,-0.987191259860992,0.159541100263596,7.70808810557355e-007,-0.473352164030075,0.880873322486877,6.77697528317367e-007,-0.471822679042816,0.881693482398987,6.90731781105569e-007,1,-0,7.85500617439538e-007,1,0,-4.956190196026e-007,1,0,-1.77673859980132e-006,
- 1,0,-4.956190196026e-007,-1,0,8.94099855486274e-007,-1,0,8.64296850977553e-007,-0.987191259860992,0.159541100263596,7.70808810557355e-007,-0.98671692609787,0.162449136376381,8.16958220184461e-007,1.44689739790121e-012,1,5.92649143982271e-007,7.14171777271844e-013,1,6.19587353867246e-007,-0.392139822244644,0.919905602931976,1.24554003377853e-006,-0.393634647130966,0.919267058372498,1.5297364370781e-006,-0.474384933710098,0.880317509174347,6.76241427299829e-007,-0.472859144210815,0.881138026714325,1.03970069176285e-006,-0.393634647130966,0.919267058372498,1.5297364370781e-006,-0.392139822244644,0.919905602931976,1.24554003377853e-006,-0.471822679042816,0.881693482398987,6.90731781105569e-007,-0.473352164030075,0.880873322486877,6.77697528317367e-007,-0.472859144210815,0.881138026714325,1.03970069176285e-006,-0.474384933710098,0.880317509174347,6.76241427299829e-007,0.000449147366452962,0.99999988079071,-0,0.000131331471493468,1,-0,-3.37867078314957e-007,1,0,0.000257809238974005,1,-0,6.56029733363539e-005,1,-0,0.000195544620510191,1,-0,0.000480390095617622,0.99999988079071,-0,0,-1,6.22886375367671e-007,0,-1,6.48839773020882e-007,0,-1,6.74793227517512e-007,0,-1,6.48839773020882e-007,-0.643272757530212,-0.765637099742889,-3.1739218684379e-005,-0.643274903297424,-0.765635311603546,-3.1739218684379e-005,-0.643274903297424,-0.765635371208191,-3.17392223223578e-005,-0.76557195186615,0.643350303173065,1.92628613149282e-005,-0.76557195186615,0.64335036277771,1.9096249161521e-005,-0.765572786331177,0.643349289894104,1.89296406460926e-005,-0.765572786331177,0.643349289894104,1.9096249161521e-005,-0.64325475692749,-0.765652298927307,3.87288673664443e-005,-0.643254697322845,-0.765652418136597,3.93439804611262e-005,-0.643254697322845,-0.765652418136597,3.99590899178293e-005,-0.643254697322845,-0.765652418136597,3.93439804611262e-005,-0.765696942806244,0.643201649188995,5.04802410432603e-005,-0.765696823596954,0.64320170879364,5.04733397974633e-005,-0.765673220157623,0.643229901790619,5.04664349136874e-005,-0.765673100948334,0.643229961395264,5.04733361594845e-005,
- -0.765670537948608,0.643233060836792,6.2982172721604e-007,-0.765670478343964,0.643233060836792,7.38795790766744e-007,-0.765678942203522,0.64322304725647,8.47769911160867e-007,-0.765678942203522,0.64322304725647,7.38795790766744e-007,-0.643262624740601,-0.765645623207092,-0.000140283766086213,-0.643262624740601,-0.765645623207092,-0.000140901320264675,-0.643262207508087,-0.765646040439606,-0.000141518888995051,-0.643262147903442,-0.76564610004425,-0.000140901320264675,-0.765705645084381,0.643191277980804,-9.18341684155166e-005,-0.765705645084381,0.64319121837616,-9.18940786505118e-005,-0.765704333782196,0.643192768096924,-9.19540034374222e-005,-0.765704333782196,0.643192768096924,-9.18940786505118e-005,0.765664398670197,-0.64324027299881,-0.000226251780986786,0.765664398670197,-0.643240332603455,-0.000226044547162019,0.76566344499588,-0.643241405487061,-0.000226251810090616,0.76566344499588,-0.643241465091705,-0.000226459058467299,-0.64324939250946,-0.765656709671021,1.31103879539296e-005,-0.643249452114105,-0.765656769275665,1.30375829030527e-005,-0.643249213695526,-0.765657007694244,1.29647760331864e-005,-0.643249213695526,-0.765657007694244,1.30375829030527e-005,-0.765622138977051,0.643290579319,1.32436489366228e-005,-0.765622198581696,0.643290579319,1.33168305183062e-005,-0.765622138977051,0.643290579319,1.33900084620109e-005,-0.765622138977051,0.643290579319,1.33168305183062e-005,-0.643266201019287,-0.765642583370209,-0.000368182139936835,-0.643266201019287,-0.765642583370209,-0.000368260050890967,-0.643265962600708,-0.765642702579498,-0.0003683379618451,-0.643266022205353,-0.765642762184143,-0.000368260050890967,-0.765569090843201,0.643353641033173,-0.000100385062978603,-0.765569150447845,0.643353700637817,-0.000100536708487198,-0.76556932926178,0.643353521823883,-0.000100688353995793,-0.76556932926178,0.643353521823883,-0.000100536708487198,-0.643256723880768,-0.765650629997253,0.000301588588627055,-0.643256783485413,-0.765650570392609,0.000302324770018458,-0.643256187438965,-0.765650987625122,0.000303060922306031,
- -0.643256187438965,-0.765650987625122,0.000302324770018458,-0.765710651874542,0.643185257911682,-5.76988168177195e-005,-0.765710651874542,0.643185257911682,-5.75824888073839e-005,-0.765709578990936,0.643186450004578,-5.74661607970484e-005,-0.765709578990936,0.643186509609222,-5.75824924453627e-005,-0.765701353549957,0.643196225166321,-2.57490114563552e-006,-0.765701413154602,0.643196225166321,-2.58509498962667e-006,-0.76570200920105,0.643195509910584,-2.59528860624414e-006,-0.76570200920105,0.643195509910584,-2.58509498962667e-006,-0.643250584602356,-0.765655696392059,9.83708305284381e-005,-0.643250703811646,-0.765655755996704,9.85093647614121e-005,-0.643250107765198,-0.765656232833862,9.86478917184286e-005,-0.643250048160553,-0.765656173229218,9.85093574854545e-005,-0.765674412250519,0.643228352069855,4.40455914940685e-005,-0.765674352645874,0.643228352069855,4.40006588178221e-005,-0.765674769878387,0.643227934837341,4.39557334175333e-005,-0.765674769878387,0.643227934837341,4.40006588178221e-005,0.765653550624847,-0.643253147602081,0.000247345626121387,0.765653669834137,-0.643253147602081,0.000247301737545058,0.765653133392334,-0.64325362443924,0.000247345655225217,0.765653133392334,-0.64325362443924,0.000247389543801546,-0.643257558345795,-0.765649914741516,-9.75626244326122e-005,-0.643257617950439,-0.765649914741516,-9.75524744717404e-005,-0.643257558345795,-0.765649914741516,-9.75423099589534e-005,-0.643257558345795,-0.765649914741516,-9.75524671957828e-005,-0.765722632408142,0.643170952796936,-6.83645921526477e-005,-0.765722751617432,0.643170952796936,-6.8411318352446e-005,-0.765722870826721,0.643170773983002,-6.84580372762866e-005,-0.765722870826721,0.643170773983002,-6.8411318352446e-005,-0.643253922462463,-0.765652894973755,4.86979552078992e-005,-0.643254041671753,-0.7656529545784,4.85795899294317e-005,-0.643254280090332,-0.765652656555176,4.84612028230913e-005,-0.643254280090332,-0.765652656555176,4.85795826534741e-005,-0.765570938587189,0.643351554870605,7.98801484052092e-005,-0.765570938587189,0.64335161447525,7.98852925072424e-005,
- -0.765569984912872,0.643352627754211,7.9890429333318e-005,-0.765569984912872,0.643352627754211,7.98852852312848e-005,-0.643259465694427,-0.765648245811462,0.000191932733287103,-0.643259525299072,-0.765648305416107,0.000191990286111832,-0.643259227275848,-0.765648543834686,0.000192047824384645,-0.643259227275848,-0.765648543834686,0.000191990286111832,-0.765714883804321,0.643180310726166,0.000169564664247446,-0.765714824199677,0.643180310726166,0.000169603023095988,-0.765715420246124,0.643179535865784,0.000169641396496445,-0.765715420246124,0.643179535865784,0.000169603023095988,-0.765635430812836,0.643274784088135,8.83632225168185e-008,-0.765635430812836,0.643274784088135,7.69837669167828e-008,-0.765633821487427,0.643276691436768,6.56043255276018e-008,-0.765633821487427,0.643276691436768,7.69837740222101e-008,-0.643283843994141,-0.765627861022949,-9.50062531046569e-005,-0.643283784389496,-0.765627861022949,-9.54801944317296e-005,-0.64328396320343,-0.765627801418304,-9.59541648626328e-005,-0.64328396320343,-0.765627801418304,-9.54802089836448e-005,-0.765622496604919,0.643290221691132,-6.61365120322444e-005,-0.765622496604919,0.643290162086487,-6.61125814076513e-005,-0.765621483325958,0.643291294574738,-6.60886435071006e-005,-0.765621483325958,0.643291294574738,-6.61125814076513e-005,0.765648365020752,-0.643259346485138,9.53707931330428e-005,0.765648365020752,-0.643259346485138,9.535277786199e-005,0.765648424625397,-0.643259406089783,9.5370807684958e-005,0.765648424625397,-0.643259406089783,9.53888375079259e-005,-0.643272340297699,-0.765637576580048,-0.000106701452750713,-0.643272280693054,-0.765637516975403,-0.000106650055386126,-0.643272340297699,-0.765637457370758,-0.000106598672573455,-0.643272340297699,-0.765637457370758,-0.000106650055386126,-0.765676379203796,0.643226027488709,4.08575433539227e-005,-0.765676379203796,0.643226027488709,4.08677515224554e-005,-0.765676379203796,0.643226087093353,4.08779596909881e-005,-0.765676379203796,0.643226087093353,4.08677515224554e-005,-0.643256783485413,-0.76565033197403,-0.000555381586309522,
- -0.643256783485413,-0.765650391578674,-0.000557631545234472,-0.643256783485413,-0.765650391578674,-0.00055988144595176,-0.643256783485413,-0.765650391578674,-0.000557631545234472,-0.765632331371307,0.643278479576111,-2.82656083072652e-006,-0.765632271766663,0.643278479576111,-2.84949192064232e-006,-0.765632271766663,0.643278479576111,-2.87242301055812e-006,-0.765632271766663,0.643278479576111,-2.84949192064232e-006,0.765615999698639,-0.643295884132385,0.0016027211677283,0.765616595745087,-0.643295049667358,0.00160272105131298,0.765616595745087,-0.643295168876648,0.0016027211677283,-0.643245160579681,-0.765659034252167,0.00139434193260968,-0.643243670463562,-0.765660345554352,0.001394342049025,-0.643245160579681,-0.765659153461456,0.001394342049025,-0.643247842788696,-0.76565808057785,-2.56934782782992e-007,-0.643247842788696,-0.76565808057785,-2.76537576837654e-007,-0.643248021602631,-0.765658020973206,-2.96140342470608e-007,-0.643247961997986,-0.765658020973206,-2.76537576837654e-007,-0.765666663646698,0.643237709999084,-8.43722659737978e-007,-0.765666544437408,0.643237709999084,-8.54640916259086e-007,-0.765666961669922,0.643237233161926,-8.65559229623614e-007,-0.765666902065277,0.643237292766571,-8.54640916259086e-007,0.643271446228027,0.765638172626495,0.0003979851026088,0.643271505832672,0.765638172626495,-7.21702690498205e-007,0.643271684646606,0.765638053417206,0.0003979851026088,0.643271505832672,0.765637814998627,0.000796691863797605,0.765658855438232,-0.643246948719025,7.16925351298414e-005,0.765658855438232,-0.643247008323669,0.000143747034599073,0.765658676624298,-0.643247067928314,7.16925278538838e-005,0.765658736228943,-0.643247127532959,-3.6195967823005e-007,0.76622611284256,-0.642571091651917,7.40188115742058e-005,0.766226053237915,-0.642571091651917,3.70094057871029e-005,0.766226708889008,-0.642570495605469,0,0.766226708889008,-0.642570495605469,3.70094094250817e-005,-0.643261432647705,-0.765646636486053,0.000184831558726728,-0.643261313438416,-0.765646696090698,0.000369663117453456,-0.643261253833771,-0.765646815299988,0.000184831558726728,
- -0.643261194229126,-0.765646874904633,8.88178525579244e-016,-0.766238868236542,0.642555832862854,0,-0.766238868236542,0.642555892467499,0,-0.766238868236542,0.642555832862854,0,-0.766238868236542,0.642555832862854,0,-0.765636920928955,0.643272936344147,0,-0.765637755393982,0.64327198266983,0,-0.765636920928955,0.643272936344147,0,-0.765636146068573,0.643273890018463,0,3.19592231790011e-006,-2.68514349954785e-006,-1,3.11138569486502e-006,-2.78576203527336e-006,-1,3.02684884445625e-006,-2.88638011625153e-006,-1,3.11138569486502e-006,-2.78576203527336e-006,-1,0.765638113021851,-0.643271565437317,9.74900103756227e-007,0.765637636184692,-0.643272161483765,9.74899649008876e-007,0.765637099742889,-0.643272757530212,9.74898966887849e-007,0.765637636184692,-0.643272161483765,9.74899649008876e-007,7.18188402970554e-006,-5.6957019296533e-006,1,7.01522185408976e-006,-5.89406499784673e-006,1,7.18188402970554e-006,-5.6957019296533e-006,1,7.34854575057398e-006,-5.49733795196516e-006,1,0.643130838871002,0.765742778778076,-0.00457572238519788,0.64313930273056,0.765749216079712,0.000195016502402723,0.643133461475372,0.765746057033539,-0.00352608761750162,0.643127858638763,0.765744566917419,-0.00467196246609092,0.643142938613892,0.765746235847473,4.3213276512688e-005,0.643120646476746,0.765723347663879,-0.00798071455210447,0.643117308616638,0.765726089477539,-0.00798947364091873,0.643126726150513,0.765733122825623,-0.00638520019128919,-0.765714287757874,0.643105089664459,0.00987649708986282,-0.765716671943665,0.643107116222382,0.00956255290657282,-0.765717387199402,0.643110692501068,0.00924860592931509,-0.765715181827545,0.643108725547791,0.00956255197525024,0.643135666847229,0.765752375125885,-0.000275933765806258,0.643127799034119,0.765758812427521,-0.000175305671291426,0.643130958080292,0.76575630903244,-0.00027593263075687,0.643128275871277,0.765758454799652,-1.71358078659978e-005,0.643135726451874,0.76575231552124,-1.98174566321541e-005,0.643131196498871,0.765756011009216,-1.9817343854811e-005,0.643127799034119,0.765758812427521,-0.000175305671291426,
- 0.643131077289581,0.765756130218506,-1.39405819936655e-005,0.643129825592041,0.765757262706757,-7.46771620470099e-005,0.643130958080292,0.76575630903244,-0.00027593263075687,0.643130898475647,0.765756368637085,-2.20221158997447e-006,0.643128275871277,0.765758454799652,-1.71358078659978e-005,0.643131196498871,0.765756011009216,-1.9817343854811e-005,0.643129765987396,0.765757203102112,-1.44542664202163e-005,0.643131077289581,0.765756130218506,-1.39405819936655e-005,0.643130004405975,0.765753567218781,-0.00228747515939176,0.643131792545319,0.765755593776703,-5.38263848284259e-005,0.643129825592041,0.765757262706757,-7.46771620470099e-005,0.643129825592041,0.765748202800751,-0.00371263083070517,0.643130898475647,0.765756368637085,-2.20221158997447e-006,0.643129765987396,0.765757203102112,-1.44542664202163e-005,0.643133521080017,0.765754103660584,7.36854372007656e-006,0.643130004405975,0.765753567218781,-0.00228747515939176,0.643130838871002,0.765742778778076,-0.00457572238519788,0.643127858638763,0.765744566917419,-0.00467196246609092,0.643131792545319,0.765755593776703,-5.38263848284259e-005,0.643120646476746,0.765723347663879,-0.00798071455210447,0.643129825592041,0.765748202800751,-0.00371263083070517,0.643133521080017,0.765754103660584,7.36854372007656e-006,0.643117308616638,0.765726089477539,-0.00798947364091873,-0.327868193387985,0.944723546504974,6.88321790676127e-007,-0.951691031455994,0.307057529687881,7.84982489676622e-007,-0.98671692609787,0.162449136376381,9.41677626542514e-007,-0.471822679042816,0.881693482398987,6.83283701619075e-007,-0.951691031455994,0.307057529687881,7.84982489676622e-007,-1,0,1.05193157651229e-006,-1,0,1.26503664432676e-006,-0.98671692609787,0.162449136376381,9.41677626542514e-007,-0.256046772003174,0.966664493083954,5.88431987580407e-007,-0.56348317861557,0.826127529144287,6.95593371347059e-007,-0.474384933710098,0.880317509174347,6.93146262165101e-007,-0.392139822244644,0.919905602931976,6.19823310898937e-007,-0.56348317861557,0.826127529144287,6.95593371347059e-007,-0.327868193387985,0.944723546504974,6.88321790676127e-007,
- -0.471822679042816,0.881693482398987,6.83283701619075e-007,-0.474384933710098,0.880317509174347,6.93146262165101e-007,0,-0.999999940395355,-0.000312128337100148,0,-0.999999940395355,-0.000312154705170542,0,-0.999999940395355,-0.000312181044137105,0,-0.999999940395355,-0.000312154705170542,-0.643257558345795,-0.765649914741516,1.56662153472098e-007,-0.643257617950439,-0.765649914741516,1.21288721288693e-007,-0.643257617950439,-0.765649855136871,8.59152962107146e-008,-0.643257617950439,-0.765649855136871,1.21288721288693e-007,-0.765632688999176,0.643278062343597,0,-0.765632629394531,0.643278062343597,0,-0.765632688999176,0.643278002738953,0,-0.765632688999176,0.643278002738953,0,-0.7655930519104,0.643325209617615,6.51988472100129e-008,-0.7655930519104,0.643325209617615,6.7011463045219e-008,-0.765592992305756,0.643325209617615,6.88240717749977e-008,-0.765592992305756,0.643325209617615,6.70114559397916e-008,-0.643269240856171,-0.765640079975128,1.35927379574241e-007,-0.643269240856171,-0.765640020370483,1.41258269081845e-007,-0.643269300460815,-0.765640079975128,1.46589201222014e-007,-0.643269300460815,-0.765640079975128,1.412582832927e-007,-0.76568478345871,0.643216073513031,3.35063283785075e-008,-0.765684843063354,0.643216013908386,5.08931350395869e-008,-0.76568478345871,0.643216013908386,6.82799381479526e-008,-0.76568478345871,0.643216013908386,5.08931314868732e-008,0.765698909759521,-0.643199265003204,1.00518633416868e-007,0.765698969364166,-0.643199265003204,1.3318677360985e-007,0.765698909759521,-0.64319920539856,1.00518626311441e-007,0.765698909759521,-0.64319920539856,6.78504790130319e-008,-0.643237233161926,-0.765666961669922,6.37320312080192e-008,-0.643237173557281,-0.765667021274567,6.57886971566768e-008,-0.643237233161926,-0.765667021274567,6.78453773161891e-008,-0.643237233161926,-0.765667021274567,6.57887042621041e-008,-0.765750646591187,0.643137633800507,0,-0.765750706195831,0.643137574195862,0,-0.765750586986542,0.643137574195862,0,-0.765750586986542,0.643137574195862,0,-0.643274903297424,-0.765635311603546,5.98534910523085e-008,
- -0.643274903297424,-0.765635371208191,3.1179535397996e-008,-0.64327484369278,-0.765635311603546,6.36937045328523e-008,-0.64327484369278,-0.765635311603546,6.11335551070624e-008,-0.643274903297424,-0.765635371208191,1.21041622946905e-007,-0.765585005283356,0.643334925174713,2.42134938162053e-005,-0.765584945678711,0.643334865570068,2.47494372160872e-005,-0.765584945678711,0.643334865570068,2.52853860729374e-005,-0.765584945678711,0.643334865570068,2.47494372160872e-005,0.765777051448822,-0.643106162548065,1.05611050571497e-007,0.765777111053467,-0.643106162548065,1.04059679983948e-007,0.765776991844177,-0.643106162548065,1.05611050571497e-007,0.765776991844177,-0.643106162548065,1.07162435369901e-007,-0.643306314945221,-0.765608906745911,9.72299645241037e-008,-0.643306374549866,-0.765608906745911,4.86149858147655e-008,-0.643306314945221,-0.765608966350555,0,-0.643306314945221,-0.765608966350555,4.86149858147655e-008,-0.765632450580597,0.643278300762177,0,-0.765632450580597,0.643278300762177,0,-0.765632390975952,0.643278360366821,0,-0.765632390975952,0.643278360366821,0,-0.643255710601807,-0.765651524066925,1.72077960769457e-007,-0.643255710601807,-0.765651524066925,1.3460390846376e-007,-0.643255710601807,-0.76565146446228,9.71298419472078e-008,-0.643255710601807,-0.76565146446228,1.3460390846376e-007,-0.76561176776886,0.643302917480469,8.44151912815505e-008,-0.765611827373505,0.643302917480469,6.38165005284463e-008,-0.76561176776886,0.643302917480469,4.32177955644875e-008,-0.76561176776886,0.643302917480469,6.3816493423019e-008,-0.643245160579681,-0.765659093856812,0.00141120923217386,-0.643245160579681,-0.765659093856812,0.00140167458448559,-0.643245160579681,-0.765659153461456,0.00139271898660809,-0.643245160579681,-0.765659093856812,0.0014026005519554,-0.643245100975037,-0.765658974647522,0.00142132234759629,-0.765655040740967,0.643249452114105,0.00156949635129422,-0.765655100345612,0.64324951171875,0.00156951579265296,-0.765655219554901,0.64324939250946,0.00156949646770954,-0.765655219554901,0.64324939250946,0.00156947737559676,
- -0.761833846569061,0.647739171981812,-0.00657922588288784,-0.764203667640686,0.644941508769989,-0.00658035837113857,-0.766563355922699,0.642135143280029,-0.00658140331506729,-0.764203667640686,0.644941508769989,-0.00658035837113857,0.643104016780853,0.76577889919281,2.60719230027462e-006,0.643133938312531,0.76575368642807,2.1735663722211e-006,0.643133044242859,0.765754461288452,2.54348560702056e-006,0.643086671829224,0.76579350233078,2.81393477052916e-006,0.643134295940399,0.765753388404846,1.13804424017872e-006,0.643103897571564,0.7657790184021,7.92422042650287e-007,0.643085420131683,0.765794575214386,7.942436468511e-007,0.643133461475372,0.765754222869873,7.46026330489258e-007,0.643133938312531,0.76575368642807,2.1735663722211e-006,0.643135666847229,0.765752375125885,1.8979840206157e-006,0.643130958080292,0.76575630903244,2.23512688535266e-006,0.643131375312805,0.765755951404572,2.11942756322969e-006,0.643133044242859,0.765754461288452,2.54348560702056e-006,-0.639655351638794,-0.768661916255951,2.05125179491006e-005,-0.639655351638794,-0.768661856651306,1.24819089251105e-005,-0.639655351638794,-0.768661856651306,4.45130126536242e-006,-0.639655411243439,-0.768661856651306,1.24819107440999e-005,0.000716673617716879,0.000857685634400696,-0.999999403953552,0.000444135017460212,0.000531522557139397,-0.999999821186066,0.0007166737341322,0.000857685634400696,-0.999999463558197,0.000989212188869715,0.00118384871166199,-0.999998807907104,-0.00047879567136988,-0.000549365940969437,0.999999761581421,-0.00075466645648703,-0.000875163997989148,0.999999403953552,-0.0010305370669812,-0.00120096176397055,0.999998807907104,-0.00075466645648703,-0.000875163997989148,0.999999403953552,0.64302533864975,0.765844941139221,2.88560590888665e-006,0.643104016780853,0.76577889919281,2.60719230027462e-006,0.643086671829224,0.76579350233078,2.81393477052916e-006,0.643025279045105,0.765845000743866,3.10015570903488e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,4.88552941533271e-005,1,-3.28025578921753e-010,4.88552905153483e-005,1,-1.64012775583089e-010,4.88552941533271e-005,1,0,
- 4.88552941533271e-005,1,-1.64012775583089e-010,-1,0,-2.84887846646598e-007,-1,0,-2.37406567293874e-007,-1,0,-1.89925302152005e-007,-1,0,-2.37406567293874e-007,1,0,-1.53724940332722e-007,1,0,-1.53724940332722e-007,1,0,-1.53724940332722e-007,1,0,-1.53724940332722e-007,2.89802510877735e-008,1,-8.53192219096854e-008,2.89802475350598e-008,1,-1.70638443819371e-007,2.89802493114166e-008,1,-8.53192219096854e-008,2.89802510877735e-008,1,0,6.15899239164719e-007,1,-0,6.15899239164719e-007,1,-0,6.15899239164719e-007,1,-0,6.15899239164719e-007,1,-0,2.89802493114166e-008,-1,-1.90730617077861e-007,2.89802475350598e-008,-1,-1.70638188023986e-007,2.89802510877735e-008,-1,-1.90730617077861e-007,2.89802510877735e-008,-1,-2.10823060342591e-007,0,0.778593599796295,0.627528667449951,-1.29206709971186e-005,0.778593599796295,0.627528667449951,-2.58413419942372e-005,0.778593599796295,0.627528667449951,-1.29206709971186e-005,0.778593599796295,0.627528667449951,-7.60610782890581e-005,-0.765650451183319,-0.643256843090057,-7.5775315053761e-005,-0.765650451183319,-0.643256902694702,-7.54895445425063e-005,-0.765650451183319,-0.643256902694702,-7.57753223297186e-005,-0.765650510787964,-0.643256962299347,-0.000215645733987913,0.643284201622009,-0.765627443790436,-0.000215338106499985,0.643284142017365,-0.765627503395081,-0.000215030479012057,0.643284201622009,-0.765627503395081,-0.00021533809194807,0.64328408241272,-0.765627503395081,-1.50412381572096e-006,0.643322467803955,-0.765595376491547,-1.49300535667862e-006,0.64332240819931,-0.765595495700836,-1.48188655657577e-006,0.643322348594666,-0.765595436096191,-1.49300512930495e-006,0.643322467803955,-0.765595376491547,-7.96955864643678e-005,-0.765640199184418,-0.643269181251526,-7.94409279478714e-005,-0.765640139579773,-0.643269121646881,-7.91862621554174e-005,-0.765640139579773,-0.643269121646881,-7.94409206719138e-005,-0.765640199184418,-0.643269181251526,6.16507531958632e-005,0.643214225769043,-0.765686333179474,6.16825855104253e-005,0.643214225769043,-0.765686273574829,6.17144251009449e-005,0.643214225769043,-0.765686273574829,
- 6.16825927863829e-005,0.643214225769043,-0.765686333179474,-7.72211787989363e-005,-0.643201887607574,0.765696704387665,-7.72606726968661e-005,-0.64320182800293,0.765696704387665,-7.72211787989363e-005,-0.64320182800293,0.76569664478302,-7.71816849010065e-005,-0.643201887607574,0.765696704387665,5.30971519765444e-005,-0.765666425228119,-0.643237888813019,5.30628822161816e-005,-0.765666425228119,-0.643237829208374,5.302860881784e-005,-0.765666425228119,-0.643237829208374,5.30628858541604e-005,-0.765666425228119,-0.643237888813019,4.69307487946935e-005,0.64313942193985,-0.765749096870422,4.69961087219417e-005,0.64313942193985,-0.765749096870422,4.70614686491899e-005,0.643139481544495,-0.765749096870422,4.69961087219417e-005,0.64313942193985,-0.765749096870422,8.06478601589333e-006,-0.765635192394257,-0.643275022506714,7.79651145421667e-006,-0.765635251998901,-0.643275082111359,7.5282350735506e-006,-0.765635132789612,-0.643275082111359,7.79651054472197e-006,-0.765635192394257,-0.643275022506714,1.38637296913657e-005,0.643348872661591,-0.765573263168335,1.38727064040722e-005,0.643348932266235,-0.765573024749756,1.38816867547575e-005,0.643348872661591,-0.765573143959045,1.38727091325563e-005,0.643348872661591,-0.765573263168335,-0.000215735897654668,-0.765652298927307,-0.643254697322845,-0.000215477310121059,-0.765652239322662,-0.64325475692749,-0.000215218722587451,-0.765652239322662,-0.643254697322845,-0.000215477310121059,-0.765652298927307,-0.643254697322845,6.93116162437946e-005,0.643197119235992,-0.76570063829422,6.97085124556907e-005,0.643197178840637,-0.765700697898865,7.01053868397139e-005,0.643197178840637,-0.765700578689575,6.9708505179733e-005,0.643197238445282,-0.765700578689575,1.67073085322045e-006,0.643235325813293,-0.765668511390686,1.32348623083089e-006,0.643235385417938,-0.765668511390686,9.76241494754504e-007,0.643235325813293,-0.765668511390686,1.32348623083089e-006,0.643235385417938,-0.765668570995331,6.59639408695512e-005,-0.765645325183868,-0.643263101577759,6.56468691886403e-005,-0.765645265579224,-0.643263041973114,
- 6.5329804783687e-005,-0.765645265579224,-0.643262982368469,6.56468764645979e-005,-0.765645325183868,-0.643263041973114,3.89554361390765e-006,0.643192172050476,-0.765704870223999,3.83021324523725e-006,0.643192052841187,-0.765704870223999,3.76488333131419e-006,0.643192112445831,-0.765704929828644,3.8302136999846e-006,0.643192172050476,-0.765704870223999,-0.000103303449577652,-0.643212020397186,0.765688240528107,-0.000104410122730769,-0.643211960792542,0.765688180923462,-0.000103303449577652,-0.643212020397186,0.765688240528107,-0.000102196740044747,-0.643212020397186,0.765688180923462,5.97228972765151e-006,-0.765657246112823,-0.643248856067657,5.94574794376967e-006,-0.765657246112823,-0.643248796463013,5.91920615988784e-006,-0.765657305717468,-0.643248856067657,5.94574794376967e-006,-0.765657246112823,-0.643248856067657,3.24702014040668e-005,0.643292486667633,-0.765620589256287,3.25089022226166e-005,0.643292486667633,-0.765620470046997,3.25476103171241e-005,0.643292486667633,-0.765620529651642,3.25089058605954e-005,0.643292486667633,-0.765620589256287,0.000190015882253647,-0.765642821788788,-0.643265902996063,0.00018955061386805,-0.765642821788788,-0.643265962600708,0.000189085316378623,-0.765642702579498,-0.643265962600708,0.000189550599316135,-0.765642821788788,-0.643265902996063,8.03097573225386e-005,0.643352627754211,-0.765570044517517,8.03014700068161e-005,0.643352627754211,-0.765570044517517,8.02931899670511e-005,0.643352627754211,-0.765570104122162,8.03014700068161e-005,0.643352627754211,-0.765570044517517,5.3641229897039e-005,-0.765651166439056,-0.643256068229675,5.372445230023e-005,-0.765651106834412,-0.64325612783432,5.38076637894847e-005,-0.765651106834412,-0.643256068229675,5.37244450242724e-005,-0.765651166439056,-0.643256068229675,-3.71512142010033e-005,0.643187522888184,-0.765708684921265,-3.71741043636575e-005,0.643187522888184,-0.765708744525909,-3.71969908883329e-005,0.643187522888184,-0.765708684921265,-3.71741043636575e-005,0.643187522888184,-0.765708684921265,-1.55423299474933e-006,0.643192887306213,-0.765704154968262,
- -1.59366913976555e-006,0.643192887306213,-0.765704154968262,-1.63310539846862e-006,0.643192887306213,-0.765704214572906,-1.59366936713923e-006,0.643192887306213,-0.765704333782196,-8.43930538394488e-005,-0.765656530857086,-0.64324963092804,-8.42104636831209e-005,-0.765656590461731,-0.643249571323395,-8.40278880787082e-005,-0.765656650066376,-0.64324963092804,-8.42104636831209e-005,-0.765656530857086,-0.64324963092804,3.18610291287769e-005,0.643228888511658,-0.765673995018005,3.19410646625329e-005,0.643228888511658,-0.76567405462265,3.20211001962889e-005,0.643228888511658,-0.76567405462265,3.19410646625329e-005,0.643228888511658,-0.765673995018005,0.000265465845586732,-0.643255054950714,0.765652000904083,0.000265413720626384,-0.643255054950714,0.765651941299438,0.000265465845586732,-0.643255054950714,0.765652000904083,0.00026551797054708,-0.643255054950714,0.765652000904083,2.83148801827338e-006,-0.765649855136871,-0.643257617950439,2.8398774247762e-006,-0.765649855136871,-0.643257558345795,2.84826705865271e-006,-0.765649914741516,-0.643257617950439,2.83987765214988e-006,-0.765649855136871,-0.643257617950439,2.98246268357616e-005,0.643170237541199,-0.76572322845459,2.97361766570248e-005,0.643170237541199,-0.765723288059235,2.96477228403091e-005,0.643170237541199,-0.76572322845459,2.97361766570248e-005,0.643170237541199,-0.76572322845459,4.32961387559772e-005,-0.765653133392334,-0.643253684043884,4.3178708438063e-005,-0.765653192996979,-0.643253684043884,4.30612817581277e-005,-0.765653133392334,-0.643253684043884,4.31787120760418e-005,-0.765653133392334,-0.643253684043884,-6.63561004330404e-005,0.643355906009674,-0.765567302703857,-6.62809106870554e-005,0.643355965614319,-0.765567302703857,-6.62057209410705e-005,0.643355906009674,-0.765567243099213,-6.62809106870554e-005,0.643355906009674,-0.765567302703857,0.000133387147798203,-0.765648782253265,-0.64325886964798,0.00013335510448087,-0.76564884185791,-0.643258929252625,0.000133323061163537,-0.765648782253265,-0.643258929252625,0.00013335510448087,-0.765648782253265,-0.64325886964798,
- 4.84230076835956e-005,0.643178284168243,-0.765716433525085,4.84851334476843e-005,0.643178343772888,-0.76571649312973,4.85472555737942e-005,0.643178284168243,-0.76571649312973,4.84851261717267e-005,0.643178284168243,-0.765716433525085,4.51085998065537e-006,0.643278539180756,-0.765632271766663,4.51968207926257e-006,0.643278479576111,-0.765632271766663,4.52850417786976e-006,0.643278539180756,-0.765632331371307,4.51968207926257e-006,0.643278539180756,-0.765632271766663,8.51851800689474e-005,-0.765627562999725,-0.64328408241272,8.51815493660979e-005,-0.765627682209015,-0.64328408241272,8.51779332151636e-005,-0.765627682209015,-0.64328408241272,8.51815566420555e-005,-0.765627562999725,-0.64328408241272,2.60029391938588e-005,0.643292546272278,-0.765620529651642,2.5987592380261e-005,0.643292546272278,-0.765620470046997,2.59722510236315e-005,0.643292605876923,-0.765620529651642,2.59875960182399e-005,0.643292546272278,-0.765620529651642,-6.95567869115621e-005,-0.643258035182953,0.765649497509003,-6.95271737640724e-005,-0.643258035182953,0.765649437904358,-6.95567869115621e-005,-0.643258035182953,0.765649497509003,-6.95864000590518e-005,-0.643258035182953,0.765649497509003,-8.0857214925345e-005,-0.765637934207916,-0.643271863460541,-8.07954565971158e-005,-0.765637874603271,-0.643271803855896,-8.07337200967595e-005,-0.765637934207916,-0.643271863460541,-8.07954565971158e-005,-0.765637934207916,-0.643271863460541,3.27190427924506e-005,0.643198192119598,-0.765699803829193,3.33430325554218e-005,0.643198192119598,-0.765699803829193,3.39670259563718e-005,0.643198132514954,-0.765699803829193,3.33430325554218e-005,0.643198072910309,-0.765699803829193,-0.000209393241675571,-0.76565033197403,-0.643257081508636,-0.000208257202757522,-0.76565021276474,-0.643257021903992,-0.000207121222047135,-0.765650272369385,-0.643257021903992,-0.000208257246413268,-0.76565033197403,-0.643257081508636,1.89842774034332e-006,0.643278419971466,-0.765632450580597,1.94683525478467e-006,0.643278360366821,-0.765632390975952,1.99524311028654e-006,0.643278360366821,-0.765632390975952,
- 1.94683548215835e-006,0.643278419971466,-0.765632450580597,-1.36498329084134e-005,-0.643106281757355,0.765776932239532,-1.33208777697291e-005,-0.643106281757355,0.765776932239532,-1.36498329084134e-005,-0.643106281757355,0.765776932239532,-1.39787880470976e-005,-0.643106281757355,0.765776932239532,0.000207776844035834,-0.765609622001648,-0.643305480480194,0.00020736207079608,-0.765609502792358,-0.643305480480194,0.000206947326660156,-0.765609622001648,-0.643305480480194,0.000207362085347995,-0.765609622001648,-0.643305480480194,-2.53035032073967e-005,0.64327871799469,-0.765632092952728,-2.53021644311957e-005,0.64327871799469,-0.765632092952728,-2.53008256549947e-005,0.64327871799469,-0.765632092952728,-2.53021644311957e-005,0.64327871799469,-0.765632092952728,-9.09156078705564e-005,-0.765651822090149,-0.643255352973938,-9.12632749532349e-005,-0.765651762485504,-0.643255352973938,-9.16109420359135e-005,-0.765651762485504,-0.643255352973938,-9.12632749532349e-005,-0.765651822090149,-0.643255352973938,-2.01696984731825e-005,0.643303573131561,-0.765611171722412,-2.01580405700952e-005,0.643303573131561,-0.765611171722412,-2.01463826670079e-005,0.643303573131561,-0.765611231327057,-2.01580405700952e-005,0.643303573131561,-0.765611171722412,-0.00158816750627011,-0.64329606294632,0.765615940093994,-0.00157455913722515,-0.643296122550964,0.765615940093994,-0.00158816738985479,-0.64329606294632,0.765615820884705,-0.00160177575889975,-0.64329606294632,0.765615940093994,-0.00124459806829691,-0.765658497810364,-0.643246054649353,-0.00131838186644018,-0.765658557415009,-0.643245995044708,-0.00139216578099877,-0.765658378601074,-0.643245935440063,-0.00131838186644018,-0.765658378601074,-0.643245995044708,-0.00156522216275334,0.643241584300995,-0.765661656856537,-0.00158714293502271,0.643241584300995,-0.765661597251892,-0.0016090638237074,0.64324152469635,-0.765661597251892,-0.00158714316785336,0.643241584300995,-0.765661716461182,5.02748378039541e-007,-0.765657484531403,-0.643248617649078,5.1656269306477e-007,-0.765657484531403,-0.643248617649078,
- 5.02748321196123e-007,-0.765657365322113,-0.643248617649078,4.88934063014312e-007,-0.765657424926758,-0.643248617649078,5.79421339352848e-007,0.643237352371216,-0.765666902065277,5.97633231791406e-007,0.643237352371216,-0.765666961669922,5.79421339352848e-007,0.643237292766571,-0.765666902065277,5.6120944691429e-007,0.643237292766571,-0.765666902065277,-2.06278709811158e-005,0.765638291835785,0.643271386623383,-1.00750730780419e-005,0.765638291835785,0.643271386623383,4.77725563996501e-007,0.765638291835785,0.643271446228027,-1.00750730780419e-005,0.765638291835785,0.643271386623383,6.31384125426848e-007,-0.643247306346893,0.765658497810364,0.000355910655343905,-0.643247246742249,0.765658378601074,0.000711189873982221,-0.643247127532959,0.765658318996429,0.000355910655343905,-0.643247246742249,0.765658378601074,1.86723809747491e-005,-0.6425701379776,0.766226947307587,8.32539370776431e-008,-0.6425701379776,0.766226947307587,1.86723809747491e-005,-0.6425701379776,0.766226947307587,3.72615031665191e-005,-0.642570078372955,0.766226887702942,0,-0.765646874904633,-0.643261134624481,5.76188031118363e-005,-0.765646874904633,-0.643261134624481,0.000115237606223673,-0.765646934509277,-0.643261134624481,5.76188031118363e-005,-0.765646874904633,-0.643261134624481,0,0.642556130886078,-0.766238629817963,0,0.642556130886078,-0.766238629817963,0,0.642556130886078,-0.766238689422607,0,0.642556071281433,-0.766238629817963,-0.00360618578270078,0.765748739242554,0.643129885196686,-0.00274514406919479,0.765749216079712,0.643133461475372,8.56313490658067e-005,0.765752136707306,0.643135905265808,-0.00354988314211369,0.765748202800751,0.643130719661713,-0.00498126307502389,0.765740394592285,0.643130660057068,-0.00609767530113459,0.765736937522888,0.643125116825104,-0.00619969982653856,0.765735864639282,0.643125414848328,-0.000139641095302068,0.765749752521515,0.643138647079468,-0.0105116935446858,0.643105089664459,-0.76570588350296,-0.0105001907795668,0.643105208873749,-0.765705943107605,-0.0105116935446858,0.643105089664459,-0.765705823898315,
- -0.0105231963098049,0.643105030059814,-0.765705823898315,0.000450128311058506,0.765777945518494,0.64310485124588,0.00013921779463999,0.765754044055939,0.643133521080017,1.52016827996704e-005,0.765753269195557,0.643134415149689,0.000294678931823,0.76576828956604,0.643116593360901,-0.000235688232351094,0.765763163566589,0.643122673034668,-0.000163421806064434,0.765777885913849,0.643105268478394,-0.000163359683938324,0.765777826309204,0.643105268478394,-0.000199547241209075,0.765777766704559,0.643105208873749,-0.000188609352335334,0.765758812427521,0.643127858638763,0.00013921779463999,0.765754044055939,0.643133521080017,4.66246674477588e-005,0.76575642824173,0.643130779266357,5.05850839545019e-005,0.76575756072998,0.643129348754883,1.52016827996704e-005,0.765753269195557,0.643134415149689,-0.000105428014649078,0.765756487846375,0.643130779266357,-0.000235688232351094,0.765763163566589,0.643122673034668,-0.000188609352335334,0.765758812427521,0.643127858638763,-1.83029605977936e-005,0.76575767993927,0.643129348754883,4.66246674477588e-005,0.76575642824173,0.643130779266357,2.31271442316938e-005,0.765757083892822,0.643129885196686,-3.06539041048381e-005,0.765756487846375,0.643130719661713,5.05850839545019e-005,0.76575756072998,0.643129348754883,-1.43564357131254e-005,0.765757203102112,0.643129765987396,-0.000105428014649078,0.765756487846375,0.643130779266357,-1.83029605977936e-005,0.76575767993927,0.643129348754883,4.85173222841695e-005,0.765756547451019,0.643130660057068,2.31271442316938e-005,0.765757083892822,0.643129885196686,-5.69683288631495e-005,0.765755534172058,0.643131792545319,-0.00177531153894961,0.765754342079163,0.643130719661713,-3.06539041048381e-005,0.765756487846375,0.643130719661713,0.000107467043562792,0.765754103660584,0.643133521080017,-1.43564357131254e-005,0.765757203102112,0.643129765987396,4.85173222841695e-005,0.765756547451019,0.643130660057068,-0.00276792584918439,0.765750646591187,0.64313155412674,-5.69683288631495e-005,0.765755534172058,0.643131792545319,-0.00360618578270078,0.765748739242554,0.643129885196686,
- -0.00354988314211369,0.765748202800751,0.643130719661713,-0.00177531153894961,0.765754342079163,0.643130719661713,-0.00609767530113459,0.765736937522888,0.643125116825104,0.000107467043562792,0.765754103660584,0.643133521080017,-0.00276792584918439,0.765750646591187,0.64313155412674,-0.00619969982653856,0.765735864639282,0.643125414848328,-0.00672220624983311,-0.640982270240784,0.76752632856369,-0.0067213112488389,-0.643843710422516,0.76512748003006,-0.00672032404690981,-0.646696269512177,0.762718141078949,-0.0067213112488389,-0.643843710422516,0.76512748003006,-7.46008424812317e-007,0.163391068577766,-0.986561417579651,-8.07542846814613e-007,0.304920166730881,-0.952378034591675,-7.8098128142301e-007,0.944418668746948,-0.328745096921921,-7.32077296561329e-007,0.881952047348022,-0.471339166164398,-6.00242060500022e-007,-0,-1,-7.37853213195194e-007,-0,-1,-8.07542846814613e-007,0.304920166730881,-0.952378034591675,-7.46008424812317e-007,0.163391068577766,-0.986561417579651,-8.07974458894023e-007,0.880067110061646,-0.474849283695221,-1.15783325327357e-006,0.826704323291779,-0.56263667345047,-1.20077186238632e-006,0.966469287872314,-0.256782561540604,-9.52093955675082e-007,0.920100748538971,-0.39168193936348,-7.32077296561329e-007,0.881952047348022,-0.471339166164398,-7.8098128142301e-007,0.944418668746948,-0.328745096921921,-1.15783325327357e-006,0.826704323291779,-0.56263667345047,-8.07974458894023e-007,0.880067110061646,-0.474849283695221,-0.000228527977014892,-1,0,-0.000228527977014892,-1,0,-0.000228527977014892,-1,0,-0.000228527977014892,-1,0,1.09868108211231e-006,-0.643300771713257,0.765613675117493,1.14388944894017e-006,-0.643300771713257,0.765613675117493,1.18909781576804e-006,-0.643300771713257,0.765613675117493,1.14388944894017e-006,-0.643300771713257,0.765613675117493,-0.000160513329319656,-0.765670001506805,-0.64323365688324,-0.000160448660608381,-0.765670001506805,-0.643233597278595,-0.000160513329319656,-0.765670001506805,-0.64323365688324,-0.000160578027134761,-0.765670001506805,-0.64323365688324,8.1315178249497e-005,-0.643320858478546,0.765596628189087,
- 8.13725491752848e-005,-0.643320858478546,0.765596687793732,8.14299201010726e-005,-0.643320858478546,0.765596747398376,8.13725418993272e-005,-0.643320858478546,0.765596747398376,-9.95587615761906e-005,-0.64323228597641,0.765671074390411,-9.96118178591132e-005,-0.643232405185699,0.765671133995056,-9.96648741420358e-005,-0.643232405185699,0.765671074390411,-9.96118178591132e-005,-0.643232405185699,0.765671074390411,7.86816744948737e-005,-0.643286228179932,0.765625894069672,7.8667224443052e-005,-0.643286228179932,0.765625894069672,7.86527671152726e-005,-0.643286228179932,0.765625834465027,7.86672171670944e-005,-0.643286228179932,0.765625834465027,2.6036625058623e-005,-0.643246352672577,0.765659391880035,2.61056920862757e-005,-0.643246352672577,0.765659332275391,2.61747627519071e-005,-0.643246352672577,0.765659272670746,2.61056920862757e-005,-0.643246352672577,0.765659272670746,9.28700901567936e-005,-0.765640914440155,-0.643268346786499,9.26813445403241e-005,-0.76564085483551,-0.643268287181854,9.28700901567936e-005,-0.765640914440155,-0.643268287181854,9.30588284973055e-005,-0.76564085483551,-0.643268287181854,-5.10792815475725e-005,-0.643174052238464,0.765720129013062,-5.11994730914012e-005,-0.643174052238464,0.765720009803772,-5.13196719111875e-005,-0.643174052238464,0.765720129013062,-5.11994730914012e-005,-0.643174052238464,0.765720069408417,5.94390257901978e-005,-0.643214106559753,0.765686333179474,5.95352321397513e-005,-0.643214106559753,0.765686333179474,5.96314421272837e-005,-0.643214106559753,0.765686392784119,5.95352321397513e-005,-0.643214106559753,0.765686392784119,2.47801071964204e-005,-0.643293559551239,0.765619695186615,2.47746884269873e-005,-0.643293559551239,0.76561975479126,2.47692660195753e-005,-0.643293559551239,0.76561975479126,2.47746884269873e-005,-0.643293559551239,0.76561975479126,8.28880001790822e-005,-0.643186330795288,0.765709698200226,8.29566997708753e-005,-0.643186330795288,0.765709698200226,8.3025406638626e-005,-0.643186330795288,0.765709817409515,8.29567070468329e-005,-0.643186330795288,0.765709817409515,
- 0.000134277492179535,-0.76566082239151,-0.643244683742523,0.000133812660351396,-0.765660762786865,-0.643244683742523,0.000134277492179535,-0.76566082239151,-0.643244683742523,0.000134742324007675,-0.76566082239151,-0.643244683742523,3.92551373806782e-005,-0.643254995346069,0.765652000904083,3.92144575016573e-005,-0.643254935741425,0.765652060508728,3.91737776226364e-005,-0.643254995346069,0.765652060508728,3.92144575016573e-005,-0.643254995346069,0.765652000904083,1.18811876745895e-005,-0.643290162086487,0.765622496604919,1.19211290439125e-005,-0.643290221691132,0.765622556209564,1.19610704132356e-005,-0.643290162086487,0.765622496604919,1.19211290439125e-005,-0.643290162086487,0.765622496604919,0.000136909686261788,-0.643360435962677,0.765563368797302,0.000136887014377862,-0.643360495567322,0.765563368797302,0.000136864327942021,-0.643360435962677,0.765563368797302,0.000136886999825947,-0.643360435962677,0.765563368797302,6.69996297801845e-005,-0.643194735050201,0.765702605247498,6.70393128530122e-005,-0.643194794654846,0.765702664852142,6.70789886498824e-005,-0.643194735050201,0.765702605247498,6.70393055770546e-005,-0.643194735050201,0.765702605247498,6.00095518166199e-006,-0.765659987926483,-0.64324551820755,5.74046816836926e-006,-0.765659987926483,-0.643245577812195,6.0009560911567e-006,-0.765660107135773,-0.64324551820755,6.26144355919678e-006,-0.765660107135773,-0.64324551820755,4.33504465036094e-005,-0.643340826034546,0.765579998493195,4.33746718044858e-005,-0.643340826034546,0.765579998493195,4.33988934673835e-005,-0.643340766429901,0.76557993888855,4.3374668166507e-005,-0.643340766429901,0.76557993888855,-7.18318115104921e-005,-0.643203258514404,0.765695571899414,-7.18526571290568e-005,-0.64320319890976,0.765695512294769,-7.18735027476214e-005,-0.64320319890976,0.765695631504059,-7.18526571290568e-005,-0.64320319890976,0.765695631504059,0.000111659566755407,-0.643235623836517,0.765668272972107,0.000111566434497945,-0.643235623836517,0.765668272972107,0.000111473316792399,-0.643235683441162,0.765668332576752,
- 0.000111566434497945,-0.643235623836517,0.765668272972107,-2.04139287234284e-005,-0.643315434455872,0.765601277351379,-2.03280196728883e-005,-0.643315434455872,0.765601217746735,-2.02421142603271e-005,-0.643315434455872,0.765601217746735,-2.03280196728883e-005,-0.643315434455872,0.765601217746735,-0.000881960499100387,0.642036736011505,-0.766673386096954,-0.000881851767189801,0.642065465450287,-0.76664924621582,-0.000881743733771145,0.642094254493713,-0.766625165939331,-0.000881851767189801,0.642065465450287,-0.76664924621582,-0.999999165534973,0.00103721325285733,0.000875469064339995,-0.999999046325684,0.00104628072585911,0.000883086991962045,-0.999999165534973,0.00103721325285733,0.000875469122547656,-0.999999165534973,0.00102814566344023,0.000867851253133267,0.0011136110406369,-0.643782138824463,0.765208005905151,0.00111356435809284,-0.643792033195496,0.765199780464172,0.00111361127346754,-0.643782138824463,0.765208005905151,0.0011136585380882,-0.643772304058075,0.765216290950775,0.999990940093994,-0.00327049405314028,-0.00274763558991253,0.999990940093994,-0.00327895837835968,-0.0027547471690923,0.999990820884705,-0.00328742153942585,-0.0027618573512882,0.999990940093994,-0.00327895814552903,-0.00275474693626165,-0.00136946141719818,0.765604019165039,0.64331066608429,-0.00137006933800876,0.765603959560394,0.64331066608429,-0.0013694615336135,0.765604019165039,0.643310725688934,-0.0013688534963876,0.765603959560394,0.64331066608429,4.24399715370782e-008,0.796313941478729,0.60488373041153,8.48799430741565e-008,0.796313881874084,0.60488373041153,4.24399679843646e-008,0.79631382226944,0.60488373041153,0,0.79631382226944,0.60488373041153,0,0.643273890018463,-0.765636146068573,0,0.643272638320923,-0.765637278556824,0,0.643273890018463,-0.765636146068573,0,0.643275141716003,-0.765635073184967,1,-2.89608988168766e-006,3.20305912282493e-006,1,-3.01622890219733e-006,3.10212067233806e-006,1,-2.89609033643501e-006,3.20305980494595e-006,1,-2.77595154329902e-006,3.30399825543282e-006,0,-0.643272221088409,0.765637636184692,0,-0.643272817134857,0.765637040138245,
- 0,-0.643273413181305,0.765636503696442,0,-0.643272817134857,0.765637040138245,-1,-3.93272739529493e-006,5.65142408959218e-006,-1,-4.04032925871434e-006,5.56101849724655e-006,-1,-4.14793112213374e-006,5.47061290490092e-006,-1,-4.04032925871434e-006,5.5610180424992e-006,0.00808553770184517,0.647664189338684,-0.761883139610291,0.00808667577803135,0.644900500774384,-0.764223754405975,0.00808771047741175,0.642128348350525,-0.766554594039917,0.00808667670935392,0.644900560379028,-0.76422381401062,0.999998927116394,0.00116800668183714,0.000962714024353772,0.999999403953552,0.000855015066917986,0.000701181241311133,0.999999761581421,0.000542023510206491,0.000439648458268493,0.999999463558197,0.000855015125125647,0.000701181241311133,-0.999999403953552,-0.000868382747285068,-0.000740542192943394,-0.999998807907104,-0.00116976501885802,-0.000995738431811333,-0.999999403953552,-0.000868382747285068,-0.000740542192943394,-0.999999821186066,-0.000567000242881477,-0.000485345837660134,2.4983435764625e-007,-0.00245103798806667,-0.999997079372406,4.18459080719913e-007,-0.00245103775523603,-0.999997019767761,2.4983435764625e-007,-0.00245103775523603,-0.999997019767761,8.1209620361733e-008,-0.00245103775523603,-0.999997019767761,3.36817829520442e-005,0.999996781349182,-0.00255729863420129,3.3592528779991e-005,0.999996721744537,-0.00255729816854,3.35032818838954e-005,0.999996721744537,-0.00255729840137064,3.3592528779991e-005,0.999996721744537,-0.00255729840137064,4.4759966044694e-007,-9.29873849031537e-008,1,4.47467982667149e-007,-9.29873777977264e-008,1,4.47336304887358e-007,-9.29873849031537e-008,1,4.47467982667149e-007,-9.29873849031537e-008,1,-0.000241738191107288,-1,0,-0.000120824537589215,-1,0,8.91101237243674e-008,-1,-0,-0.000120824537589215,-1,0,-1.49365831703108e-007,0,1,-6.02028876528493e-007,0,1,-1.05469189293217e-006,0,1,-6.02028876528493e-007,0,1,-1.20077186238632e-006,0.966469287872314,-0.256782561540604,-5.32765056959761e-007,1,-2.74024951067986e-005,-1.33182879835658e-007,1,-2.74024914688198e-005,-9.52093955675082e-007,0.920100748538971,-0.39168193936348,
- 0.000450167979579419,0.765844523906708,0.643025696277618,0.000450128311058506,0.765777945518494,0.64310485124588,0.000294678931823,0.76576828956604,0.643116593360901,0,0.64325749874115,-0.765649974346161,0,0.643267154693604,-0.765641808509827,0,0.643276870250702,-0.765633642673492,0,0.643267154693604,-0.765641808509827,0,0.643234610557556,-0.765669107437134,0,0.643234372138977,-0.765669345855713,0,0.643234074115753,-0.765669584274292,0,0.643234372138977,-0.765669345855713,0,0.643268942832947,-0.765640318393707,0,0.643267512321472,-0.765641450881958,0,0.643266141414642,-0.765642642974854,0,0.643267512321472,-0.765641450881958,0,0.643237352371216,-0.765666842460632,0,0.643258333206177,-0.765649199485779,0,0.643279373645782,-0.765631496906281,0,0.643258333206177,-0.765649199485779,0,0.643274247646332,-0.765635788440704,0,0.643269419670105,-0.765639901161194,0,0.643264532089233,-0.765644013881683,0,0.643269419670105,-0.765639901161194,0,0.643254637718201,-0.765652298927307,0,0.643273234367371,-0.765636682510376,0,0.643291771411896,-0.76562112569809,0,0.643273234367371,-0.765636682510376,0,0.643269002437592,-0.765640318393707,0,0.643245816230774,-0.765659749507904,0,0.643222630023956,-0.765679180622101,0,0.643245816230774,-0.765659689903259,0,0.643262207508087,-0.765645980834961,0,0.643260478973389,-0.765647411346436,0,0.643258690834045,-0.765648901462555,0,0.643260478973389,-0.765647411346436,0,0.643249154090881,-0.7656569480896,0,0.643254160881042,-0.765652716159821,0,0.643259227275848,-0.765648484230042,0,0.643254160881042,-0.765652716159821,0,0.643265247344971,-0.76564347743988,0,0.643260061740875,-0.765647768974304,0,0.64325487613678,-0.765652120113373,0,0.643260061740875,-0.765647768974304,0,0.643256068229675,-0.765651106834412,0,0.643256187438965,-0.765650987625122,0,0.643256306648254,-0.765650928020477,0,0.643256187438965,-0.765650987625122,0,0.643245160579681,-0.765660345554352,0,0.643252968788147,-0.765653729438782,0,0.643260836601257,-0.765647113323212,0,0.643252968788147,-0.765653789043427,0,0.64324951171875,-0.765656650066376,
- 0,0.643255949020386,-0.765651226043701,0,0.643262445926666,-0.765645802021027,0,0.643255949020386,-0.765651226043701,0,0.643257558345795,-0.765649855136871,0,0.643262624740601,-0.765645682811737,0,0.643267631530762,-0.765641391277313,0,0.643262624740601,-0.765645623207092,0,0.643253743648529,-0.765653073787689,0,0.643253087997437,-0.765653610229492,0,0.643252491950989,-0.765654146671295,0,0.643253087997437,-0.765653669834137,0,0.643258929252625,-0.765648722648621,0,0.643257617950439,-0.765649795532227,0,0.643256306648254,-0.765650928020477,0,0.643257617950439,-0.765649795532227,0,0.643246114253998,-0.765659511089325,0,0.643253922462463,-0.765652894973755,0,0.643261790275574,-0.76564633846283,0,0.643253922462463,-0.765652894973755,0,0.643283903598785,-0.76562774181366,0,0.643267929553986,-0.765641152858734,0,0.643251955509186,-0.765654623508453,0,0.643267929553986,-0.765641152858734,0,0.643271863460541,-0.765637874603271,0,0.643268465995789,-0.765640735626221,0,0.643265128135681,-0.76564347743988,0,0.643268465995789,-0.765640676021576,0,0.643256545066834,-0.765650689601898,0,0.64325886964798,-0.76564884185791,0,0.643261134624481,-0.765646815299988,0,0.64325886964798,-0.76564884185791,0,0.643306314945221,-0.765608906745911,0,0.643283188343048,-0.765628337860107,0,0.643260061740875,-0.765647768974304,0,0.643283188343048,-0.765628397464752,0,0.643254935741425,-0.765652120113373,0,0.643254041671753,-0.76565283536911,0,0.643253087997437,-0.765653610229492,0,0.643254041671753,-0.76565283536911,0,-0.643247485160828,0.765658318996429,0,-0.643157303333282,0.765734195709229,0,-0.643067002296448,0.765809893608093,0,-0.643157303333282,0.765734195709229,-0.000614238670095801,0.643290460109711,-0.765621960163116,-0.000614238670095801,0.643313646316528,-0.76560252904892,-0.000614238728303462,0.643336832523346,-0.765583097934723,-0.000614238670095801,0.643313646316528,-0.765602469444275,0,0.642143189907074,-0.766584753990173,0,0.641929149627686,-0.766764044761658,0,0.641714990139008,-0.766943156719208,0,0.641929149627686,-0.766764044761658,
- 0,-0.999729692935944,-0.0232486762106419,0,-0.999730229377747,-0.0232294555753469,0,-0.999730587005615,-0.0232102293521166,0,-0.999730229377747,-0.0232294555753469,-0,0.765796065330505,0.643083512783051,-0,0.765802979469299,0.643075346946716,-0,0.765836715698242,0.643035113811493,-0,0.765801131725311,0.643077552318573,-7.06775790604297e-006,0.766030251979828,0.642804563045502,-7.0596188379568e-006,0.765350639820099,0.643613517284393,-1.46203465192229e-005,0.763976275920868,0.645244300365448,-1.46471902553458e-005,0.765007436275482,0.644021511077881,-0,0.766004264354706,0.642835557460785,-0,0.766023933887482,0.642812073230743,-7.0596188379568e-006,0.765350639820099,0.643613517284393,-7.06775790604297e-006,0.766030251979828,0.642804563045502,-0,0.765966594219208,0.642880439758301,-0,0.765990912914276,0.64285147190094,-0,0.766023933887482,0.642812073230743,-0,0.766004264354706,0.642835557460785,-0,0.765930652618408,0.64292323589325,-0,0.765955567359924,0.642893552780151,-0,0.765990912914276,0.64285147190094,-0,0.765966594219208,0.642880439758301,-0,0.76586776971817,0.642998099327087,-0,0.765916883945465,0.642939746379852,-0,0.765955567359924,0.642893552780151,-0,0.765930652618408,0.64292323589325,-0,0.765801131725311,0.643077552318573,-0,0.765836715698242,0.643035113811493,-0,0.765916883945465,0.642939746379852,-0,0.76586776971817,0.642998099327087,0,1,-2.05505799044658e-007,0,1,-0.000207146164029837,0,1,-5.91616014844476e-007,-0,1,6.14856276115461e-007,0,1,-5.1571173571574e-006,-0,0.99999988079071,0.000455440313089639,0,0.999999821186066,-0.00061588321113959,0,0.999999403953552,-0.00107749400194734,-2.22987600864144e-005,0.643275678157806,-0.765634715557098,1.18106981972232e-006,0.643275678157806,-0.765634655952454,2.46608869929332e-005,0.643275678157806,-0.765634775161743,1.18106265745155e-006,0.643275678157806,-0.765634775161743,-3.91371359000914e-005,0.639675378799438,-0.768645167350769,-3.91375870094635e-005,0.639688193798065,-0.768634498119354,-3.91380381188355e-005,0.639701008796692,-0.768623828887939,-3.91375870094635e-005,0.639688193798065,-0.768634498119354,
- -0.000111882611236069,-0.768623471260071,-0.639701426029205,-0.000111882596684154,-0.768623530864716,-0.639701426029205,-0.000111882596684154,-0.768623530864716,-0.639701426029205,-0.457062989473343,0.751699268817902,-0.475438386201859,-0.447708189487457,0.762311935424805,-0.467373460531235,-0.441825151443481,0.767856478691101,-0.463882714509964,-0.429079324007034,0.782907605171204,-0.450496017932892,-0.458720415830612,0.765588045120239,-0.451054960489273,-0.4730284512043,0.745079278945923,-0.470213741064072,-0.447708189487457,0.762311935424805,-0.467373460531235,-0.457062989473343,0.751699268817902,-0.475438386201859,-0.724273264408112,-0.0291749723255634,0.688895642757416,-0.705690741539001,0.00172513746656477,0.708517849445343,-0.705754578113556,0.00164644420146942,0.708454489707947,-0.720389604568481,-0.0243688970804214,0.693141400814056,0.454820543527603,-0.755218386650085,0.471999526023865,0.447671562433243,-0.762039244174957,0.467853039503098,0.471501648426056,-0.748038113117218,0.467038720846176,0.458133280277252,-0.766270279884338,0.450493067502975,0.71741384267807,0.0120228826999664,-0.696543455123901,0.71813690662384,0.0128469616174698,-0.695783376693726,0.702017605304718,-0.00602956116199493,-0.712134122848511,0.702049076557159,-0.00599561724811792,-0.712103307247162,0.702814102172852,-0.00476630032062531,-0.711357593536377,0.702851355075836,-0.0047238920815289,-0.711320996284485,0.718746840953827,0.0126228481531143,-0.695157289505005,0.718765020370483,0.0126428175717592,-0.695138156414032,0.45288074016571,-0.772583901882172,0.444986969232559,0.43987500667572,-0.779314994812012,0.446294009685516,0.423381447792053,-0.798019051551819,0.428851962089539,0.445372134447098,-0.779338538646698,0.440766572952271,-0.683861136436462,0.0265088826417923,0.729130506515503,-0.679728746414185,0.0321765430271626,0.73275750875473,-0.686350405216217,0.0245785899460316,0.726855576038361,-0.687119662761688,0.0228819567710161,0.726183831691742,-0.4247767329216,0.796482503414154,-0.430325865745544,-0.421006619930267,0.800616383552551,-0.426341116428375,
- -0.439437121152878,0.788393378257751,-0.430501013994217,-0.43269419670105,0.793938875198364,-0.427126318216324,-0.43269419670105,0.793938875198364,-0.427126318216324,-0.439437121152878,0.788393378257751,-0.430501013994217,-0.4730284512043,0.745079278945923,-0.470213741064072,-0.458720415830612,0.765588045120239,-0.451054960489273,-0.683861136436462,0.0265088826417923,0.729130506515503,-0.687119662761688,0.0228819567710161,0.726183831691742,-0.705754578113556,0.00164644420146942,0.708454489707947,-0.705690741539001,0.00172513746656477,0.708517849445343,0.45288074016571,-0.772583901882172,0.444986969232559,0.445372134447098,-0.779338538646698,0.440766572952271,0.458133280277252,-0.766270279884338,0.450493067502975,0.471501648426056,-0.748038113117218,0.467038720846176,0.702017605304718,-0.00602956116199493,-0.712134122848511,0.702851355075836,-0.0047238920815289,-0.711320996284485,0.702814102172852,-0.00476630032062531,-0.711357593536377,0.702049076557159,-0.00599561724811792,-0.712103307247162,-0.712013840675354,-0.0180598944425583,0.701933145523071,-0.716506600379944,-0.0232935696840286,0.69719135761261,-0.724273264408112,-0.0291749723255634,0.688895642757416,-0.720389604568481,-0.0243688970804214,0.693141400814056,0.430573582649231,-0.77985942363739,0.45434096455574,0.446272045373917,-0.760980546474457,0.470903366804123,0.447671562433243,-0.762039244174957,0.467853039503098,0.454820543527603,-0.755218386650085,0.471999526023865,0.719274640083313,0.0132141383364797,-0.694600105285645,0.71813690662384,0.0128469616174698,-0.695783376693726,0.71741384267807,0.0120228826999664,-0.696543455123901,0.719265282154083,0.0132038276642561,-0.694610059261322,-0,0.999602198600769,0.0282029658555985,-0,0.999597311019897,0.028375593945384,-0,0.999592423439026,0.0285482220351696,-0,0.999597311019897,0.028375593945384,-0.76622349023819,0.642496287822723,0.0100100776180625,-0.766330778598785,0.642368137836456,0.0100107910111547,-0.766223549842834,0.642496287822723,0.0100100785493851,-0.76611602306366,0.642624318599701,0.0100093642249703,
- -0.00945456139743328,-0.0025082032661885,-0.99995219707489,-0.00802768766880035,-0.00080530671402812,-0.999967455863953,-0.00660077482461929,0.000897594494745135,-0.999977886676788,-0.00802768766880035,-0.00080530671402812,-0.999967455863953,0.766992568969727,-0.641502618789673,-0.0140361366793513,0.766849100589752,-0.641674160957336,-0.0140341287478805,0.766705572605133,-0.641845703125,-0.0140321236103773,0.766849040985107,-0.641674101352692,-0.0140341287478805,0.00939381588250399,0.00194686139002442,0.999953985214233,0.0109929004684091,0.00385686196386814,0.999932169914246,0.00939381681382656,0.00194686045870185,0.999953985214233,0.007794673088938,3.68473083653953e-005,0.999969601631165,0.650340020656586,0.585000157356262,0.484595447778702,0.588813543319702,0.6886847615242,0.423098117113113,0.536459803581238,0.801576852798462,-0.263980239629745,0.970731854438782,0.238310530781746,-0.0297959484159946,0.609179854393005,0.533118009567261,0.587098896503448,0.650340020656586,0.585000157356262,0.484595447778702,0.970731854438782,0.238310530781746,-0.0297959484159946,0.700306713581085,-0.138080909848213,0.700360000133514,0.609179854393005,0.533118009567261,0.587098896503448,0.700306713581085,-0.138080909848213,0.700360000133514,0.07719986140728,0.146517142653465,0.986191153526306,0.492897242307663,0.577576816082001,0.650736033916473,0.423090815544128,0.688677668571472,0.588827013969421,0.492897242307663,0.577576816082001,0.650736033916473,0.07719986140728,0.146517142653465,0.986191153526306,-0.252027869224548,0.613988280296326,0.747997641563416,0.418697535991669,0.73825204372406,0.52884441614151,0.423090815544128,0.688677668571472,0.588827013969421,-0.252027869224548,0.613988280296326,0.747997641563416,-0.255332767963409,0.918514609336853,0.301887422800064,0.588813543319702,0.6886847615242,0.423098117113113,0.528825879096985,0.738254487514496,0.418716430664063,0.301892429590225,0.918507158756256,-0.255354017019272,0.536459803581238,0.801576852798462,-0.263980239629745,-0.454504460096359,0.766071379184723,-0.454489082098007,
- -0.454490572214127,0.766071319580078,-0.454503029584885,-0.454485356807709,0.766071438789368,-0.454508304595947,-0.454491555690765,0.766071438789368,-0.454502105712891,-0.454486280679703,0.766071438789368,-0.454507380723953,-0.45449635386467,0.766071438789368,-0.454497396945953,-0.035823218524456,0.98722505569458,0.155253276228905,0.54670125246048,0.630475103855133,0.551016330718994,0.533176958560944,0.63859897851944,0.5548996925354,0.548177599906921,0.808001339435577,-0.215951800346375,-0.205283746123314,0.628614187240601,0.75013530254364,0.55509889125824,0.634538531303406,0.537797570228577,0.54670125246048,0.630475103855133,0.551016330718994,-0.035823218524456,0.98722505569458,0.155253276228905,0.209343403577805,0.0909154564142227,0.973606586456299,0.550023853778839,0.646731436252594,0.528405487537384,0.55509889125824,0.634538531303406,0.537797570228577,-0.205283746123314,0.628614187240601,0.75013530254364,0.384106159210205,-0.0824304893612862,0.919601917266846,0.540857493877411,0.654842138290405,0.527877748012543,0.550023853778839,0.646731436252594,0.528405487537384,0.209343403577805,0.0909154564142227,0.973606586456299,0.962740659713745,0.270319283008575,0.00762365851551294,0.528098344802856,0.650823473930359,0.545473158359528,0.527867615222931,0.654842019081116,0.540867567062378,0.919563770294189,-0.0824532806873322,0.384192615747452,0.548177599906921,0.808001339435577,-0.215951800346375,0.533176958560944,0.63859897851944,0.5548996925354,0.528098344802856,0.650823473930359,0.545473158359528,0.962740659713745,0.270319283008575,0.00762365851551294,0.533176958560944,0.63859897851944,0.5548996925354,0.54670125246048,0.630475103855133,0.551016330718994,0.609179854393005,0.533118009567261,0.587098896503448,0.492897242307663,0.577576816082001,0.650736033916473,0.54670125246048,0.630475103855133,0.551016330718994,0.55509889125824,0.634538531303406,0.537797570228577,0.650340020656586,0.585000157356262,0.484595447778702,0.609179854393005,0.533118009567261,0.587098896503448,0.55509889125824,0.634538531303406,0.537797570228577,
- 0.550023853778839,0.646731436252594,0.528405487537384,0.588813543319702,0.6886847615242,0.423098117113113,0.650340020656586,0.585000157356262,0.484595447778702,0.550023853778839,0.646731436252594,0.528405487537384,0.540857493877411,0.654842138290405,0.527877748012543,0.528825879096985,0.738254487514496,0.418716430664063,0.588813543319702,0.6886847615242,0.423098117113113,0.527867615222931,0.654842019081116,0.540867567062378,0.528098344802856,0.650823473930359,0.545473158359528,0.423090815544128,0.688677668571472,0.588827013969421,0.418697535991669,0.73825204372406,0.52884441614151,0.528098344802856,0.650823473930359,0.545473158359528,0.533176958560944,0.63859897851944,0.5548996925354,0.492897242307663,0.577576816082001,0.650736033916473,0.423090815544128,0.688677668571472,0.588827013969421,0.546378374099731,0.5384401679039,0.641523957252502,0.654747128486633,0.532242298126221,0.536679089069366,0.63776308298111,0.60551530122757,0.476035237312317,0.597878694534302,0.435744166374207,0.672806084156036,0.515972197055817,0.638059437274933,0.571535527706146,0.546378374099731,0.5384401679039,0.641523957252502,0.597878694534302,0.435744166374207,0.672806084156036,0.524891912937164,0.579474329948425,0.623456597328186,0.515972197055817,0.638059437274933,0.571535527706146,0.524891912937164,0.579474329948425,0.623456597328186,0.509949326515198,0.610827147960663,0.605674803256989,0.539239525794983,0.640955746173859,0.546256840229034,0.537056446075439,0.64555299282074,0.542984247207642,0.539239525794983,0.640955746173859,0.546256840229034,0.509949326515198,0.610827147960663,0.605674803256989,0.474962413311005,0.660682737827301,0.581299424171448,0.536965072154999,0.646931529045105,0.541431605815887,0.537056446075439,0.64555299282074,0.542984247207642,0.474962413311005,0.660682737827301,0.581299424171448,0.472121298313141,0.69996166229248,0.535868585109711,0.654747128486633,0.532242298126221,0.536679089069366,0.541409492492676,0.64693158864975,0.536987245082855,0.535823345184326,0.699964225292206,0.472168892621994,0.63776308298111,0.60551530122757,0.476035237312317,
- -0.171815365552902,0.975010752677917,0.140832185745239,0.515972197055817,0.638059437274933,0.571535527706146,0.539239525794983,0.640955746173859,0.546256840229034,0.521259605884552,0.791635930538177,-0.318749248981476,-0.283337324857712,0.428928822278976,0.857752978801727,0.546378374099731,0.5384401679039,0.641523957252502,0.515972197055817,0.638059437274933,0.571535527706146,-0.171815365552902,0.975010752677917,0.140832185745239,0.215736269950867,-0.0586998462677002,0.974685728549957,0.654747128486633,0.532242298126221,0.536679089069366,0.546378374099731,0.5384401679039,0.641523957252502,-0.283337324857712,0.428928822278976,0.857752978801727,0.341750532388687,-0.178624331951141,0.922659158706665,0.541409492492676,0.64693158864975,0.536987245082855,0.654747128486633,0.532242298126221,0.536679089069366,0.215736269950867,-0.0586998462677002,0.974685728549957,0.976960182189941,0.200537979602814,-0.073029950261116,0.537056446075439,0.64555299282074,0.542984247207642,0.536965072154999,0.646931529045105,0.541431605815887,0.922670185565948,-0.178594172000885,0.341736793518066,0.521259605884552,0.791635930538177,-0.318749248981476,0.539239525794983,0.640955746173859,0.546256840229034,0.537056446075439,0.64555299282074,0.542984247207642,0.976960182189941,0.200537979602814,-0.073029950261116,0.584229707717896,0.622074604034424,0.521247386932373,0.570226073265076,0.67050439119339,0.474622189998627,0.643802106380463,0.682885766029358,0.345233023166656,0.693443894386292,0.533009886741638,0.484805285930634,0.556388795375824,0.613141000270844,0.56079375743866,0.584229707717896,0.622074604034424,0.521247386932373,0.693443894386292,0.533009886741638,0.484805285930634,0.613840579986572,0.496525168418884,0.613728284835815,0.556388795375824,0.613141000270844,0.56079375743866,0.613840579986572,0.496525168418884,0.613728284835815,0.484855562448502,0.533012986183167,0.693406283855438,0.513820827007294,0.62865549325943,0.583764016628265,0.474057078361511,0.680365860462189,0.55890280008316,0.513820827007294,0.62865549325943,0.583764016628265,
- 0.484855562448502,0.533012986183167,0.693406283855438,0.34528648853302,0.682918667793274,0.643738627433777,0.460403442382813,0.708750426769257,0.534510493278503,0.474057078361511,0.680365860462189,0.55890280008316,0.34528648853302,0.682918667793274,0.643738627433777,0.321569830179214,0.797107458114624,0.511089563369751,0.570226073265076,0.67050439119339,0.474622189998627,0.534491360187531,0.708751142024994,0.460424602031708,0.51111888885498,0.797100424766541,0.321540743112564,0.643802106380463,0.682885766029358,0.345233023166656,-0.218171775341034,0.975848078727722,0.0110256439074874,0.556388795375824,0.613141000270844,0.56079375743866,0.513820827007294,0.62865549325943,0.583764016628265,0.482122480869293,0.760987997055054,-0.434114336967468,-0.42130184173584,0.545936048030853,0.724195122718811,0.584229707717896,0.622074604034424,0.521247386932373,0.556388795375824,0.613141000270844,0.56079375743866,-0.218171775341034,0.975848078727722,0.0110256439074874,0.0757798627018929,-0.098904974758625,0.992207288742065,0.570226073265076,0.67050439119339,0.474622189998627,0.584229707717896,0.622074604034424,0.521247386932373,-0.42130184173584,0.545936048030853,0.724195122718811,0.288952440023422,-0.285252571105957,0.913858532905579,0.534491360187531,0.708751142024994,0.460424602031708,0.570226073265076,0.67050439119339,0.474622189998627,0.0757798627018929,-0.098904974758625,0.992207288742065,0.979246318340302,0.116172179579735,-0.166074231266975,0.474057078361511,0.680365860462189,0.55890280008316,0.460403442382813,0.708750426769257,0.534510493278503,0.913829207420349,-0.285280257463455,0.289017915725708,0.482122480869293,0.760987997055054,-0.434114336967468,0.513820827007294,0.62865549325943,0.583764016628265,0.474057078361511,0.680365860462189,0.55890280008316,0.979246318340302,0.116172179579735,-0.166074231266975,0.530096471309662,0.647981107234955,0.546917140483856,0.548411011695862,0.64953750371933,0.526636838912964,0.602396488189697,0.669302046298981,0.434917420148849,0.6153764128685,0.594449877738953,0.517630517482758,
- 0.529554963111877,0.66545158624649,0.526066422462463,0.530096471309662,0.647981107234955,0.546917140483856,0.6153764128685,0.594449877738953,0.517630517482758,0.572943091392517,0.586035490036011,0.572973489761353,0.529554963111877,0.66545158624649,0.526066422462463,0.572943091392517,0.586035490036011,0.572973489761353,0.51764976978302,0.594513177871704,0.615299046039581,0.548921942710876,0.646240055561066,0.530149519443512,0.526629686355591,0.650881230831146,0.546822547912598,0.548921942710876,0.646240055561066,0.530149519443512,0.51764976978302,0.594513177871704,0.615299046039581,0.43500080704689,0.669280767440796,0.60236006975174,0.515263020992279,0.66583776473999,0.539596199989319,0.526629686355591,0.650881230831146,0.546822547912598,0.43500080704689,0.669280767440796,0.60236006975174,0.417816191911697,0.739772260189056,0.527415096759796,0.548411011695862,0.64953750371933,0.526636838912964,0.539579451084137,0.665838241577148,0.51528000831604,0.527388393878937,0.739775598049164,0.41784405708313,0.602396488189697,0.669302046298981,0.434917420148849,0.00350891798734665,0.982716679573059,0.185082897543907,0.529554963111877,0.66545158624649,0.526066422462463,0.548921942710876,0.646240055561066,0.530149519443512,0.55848628282547,0.812388837337494,-0.167683258652687,-0.157462224364281,0.641978144645691,0.750379681587219,0.530096471309662,0.647981107234955,0.546917140483856,0.529554963111877,0.66545158624649,0.526066422462463,0.00350891798734665,0.982716679573059,0.185082897543907,0.245410084724426,0.136227428913116,0.959800064563751,0.548411011695862,0.64953750371933,0.526636838912964,0.530096471309662,0.647981107234955,0.546917140483856,-0.157462224364281,0.641978144645691,0.750379681587219,0.412122637033463,-0.0126796932891011,0.911040246486664,0.539579451084137,0.665838241577148,0.51528000831604,0.548411011695862,0.64953750371933,0.526636838912964,0.245410084724426,0.136227428913116,0.959800064563751,0.96308696269989,0.223063439130783,0.150686368346214,0.526629686355591,0.650881230831146,0.546822547912598,0.515263020992279,0.66583776473999,0.539596199989319,
- 0.911020338535309,-0.0126943038776517,0.412166148424149,0.55848628282547,0.812388837337494,-0.167683258652687,0.548921942710876,0.646240055561066,0.530149519443512,0.526629686355591,0.650881230831146,0.546822547912598,0.96308696269989,0.223063439130783,0.150686368346214,0.591148376464844,0.611301600933075,0.526169061660767,0.548617959022522,0.646131038665771,0.530596971511841,0.560704708099365,0.684121131896973,0.466463893651962,0.649983108043671,0.601330697536469,0.464675724506378,0.570445358753204,0.577609300613403,0.583917498588562,0.591148376464844,0.611301600933075,0.526169061660767,0.649983108043671,0.601330697536469,0.464675724506378,0.608224749565125,0.51000702381134,0.608239769935608,0.570445358753204,0.577609300613403,0.583917498588562,0.608224749565125,0.51000702381134,0.608239769935608,0.464676648378372,0.601316034793854,0.649995863437653,0.517519772052765,0.61890059709549,0.590876877307892,0.530452966690063,0.64782851934433,0.546752095222473,0.517519772052765,0.61890059709549,0.590876877307892,0.464676648378372,0.601316034793854,0.649995863437653,0.466461837291718,0.684117257595062,0.560711145401001,0.550761282444,0.634606182575226,0.542159676551819,0.530452966690063,0.64782851934433,0.546752095222473,0.466461837291718,0.684117257595062,0.560711145401001,0.487053155899048,0.688403487205505,0.53747546672821,0.548617959022522,0.646131038665771,0.530596971511841,0.542132377624512,0.634606122970581,0.550788223743439,0.537479639053345,0.688402414321899,0.487050116062164,0.560704708099365,0.684121131896973,0.466463893651962,-0.0357509590685368,0.987202823162079,0.155410870909691,0.570445358753204,0.577609300613403,0.583917498588562,0.517519772052765,0.61890059709549,0.590876877307892,0.548204243183136,0.807974457740784,-0.215985059738159,-0.20522329211235,0.628751397132874,0.750036776065826,0.591148376464844,0.611301600933075,0.526169061660767,0.570445358753204,0.577609300613403,0.583917498588562,-0.0357509590685368,0.987202823162079,0.155410870909691,0.209345534443855,0.0909474864602089,0.973603129386902,0.548617959022522,0.646131038665771,0.530596971511841,
- 0.591148376464844,0.611301600933075,0.526169061660767,-0.20522329211235,0.628751397132874,0.750036776065826,0.384176820516586,-0.0823819637298584,0.919576704502106,0.542132377624512,0.634606122970581,0.550788223743439,0.548617959022522,0.646131038665771,0.530596971511841,0.209345534443855,0.0909474864602089,0.973603129386902,0.962785005569458,0.270164012908936,0.00751740578562021,0.530452966690063,0.64782851934433,0.546752095222473,0.550761282444,0.634606182575226,0.542159676551819,0.919548153877258,-0.0824115946888924,0.384238809347153,0.548204243183136,0.807974457740784,-0.215985059738159,0.517519772052765,0.61890059709549,0.590876877307892,0.530452966690063,0.64782851934433,0.546752095222473,0.962785005569458,0.270164012908936,0.00751740578562021,0.57207578420639,0.623758852481842,0.532591998577118,0.560514569282532,0.651595056056976,0.511123597621918,0.576431334018707,0.725170195102692,0.376636624336243,0.684849500656128,0.584545373916626,0.435072332620621,0.554864287376404,0.614530563354492,0.560783267021179,0.57207578420639,0.623758852481842,0.532591998577118,0.684849500656128,0.584545373916626,0.435072332620621,0.615926444530487,0.491161346435547,0.615950703620911,0.554864287376404,0.614530563354492,0.560783267021179,0.615926444530487,0.491161346435547,0.615950703620911,0.461751282215118,0.561530947685242,0.686635911464691,0.525129497051239,0.630420565605164,0.571672081947327,0.510588109493256,0.66084760427475,0.550073027610779,0.525129497051239,0.630420565605164,0.571672081947327,0.461751282215118,0.561530947685242,0.686635911464691,0.37950736284256,0.678296327590942,0.629196524620056,0.509904623031616,0.669994473457336,0.539541184902191,0.510588109493256,0.66084760427475,0.550073027610779,0.37950736284256,0.678296327590942,0.629196524620056,0.371967077255249,0.768178701400757,0.52109706401825,0.560514569282532,0.651595056056976,0.511123597621918,0.539510786533356,0.669996380805969,0.50993424654007,0.521018505096436,0.768189370632172,0.372054815292358,0.576431334018707,0.725170195102692,0.376636624336243,-0.144747480750084,0.986970782279968,0.0702634230256081,
- 0.554864287376404,0.614530563354492,0.560783267021179,0.525129497051239,0.630420565605164,0.571672081947327,0.512410342693329,0.785239994525909,-0.347611665725708,-0.335429400205612,0.583492696285248,0.739610373973846,0.57207578420639,0.623758852481842,0.532591998577118,0.554864287376404,0.614530563354492,0.560783267021179,-0.144747480750084,0.986970782279968,0.0702634230256081,0.131155520677567,-0.0215227380394936,0.991128206253052,0.560514569282532,0.651595056056976,0.511123597621918,0.57207578420639,0.623758852481842,0.532591998577118,-0.335429400205612,0.583492696285248,0.739610373973846,0.329169899225235,-0.205016866326332,0.921745777130127,0.539510786533356,0.669996380805969,0.50993424654007,0.560514569282532,0.651595056056976,0.511123597621918,0.131155520677567,-0.0215227380394936,0.991128206253052,0.978946924209595,0.180085971951485,-0.0960832834243774,0.510588109493256,0.66084760427475,0.550073027610779,0.509904623031616,0.669994473457336,0.539541184902191,0.921709060668945,-0.205114856362343,0.32921177148819,0.512410342693329,0.785239994525909,-0.347611665725708,0.525129497051239,0.630420565605164,0.571672081947327,0.510588109493256,0.66084760427475,0.550073027610779,0.978946924209595,0.180085971951485,-0.0960832834243774,0.559275984764099,0.529621660709381,0.637739181518555,0.649965822696686,0.531799554824829,0.542893886566162,0.639316737651825,0.591881692409515,0.490866720676422,0.616698384284973,0.419179379940033,0.666312098503113,0.523648083209991,0.612057268619537,0.592603325843811,0.559275984764099,0.529621660709381,0.637739181518555,0.616698384284973,0.419179379940033,0.666312098503113,0.541835725307465,0.539614796638489,0.644383430480957,0.523648083209991,0.612057268619537,0.592603325843811,0.541835725307465,0.539614796638489,0.644383430480957,0.486234396696091,0.613591432571411,0.622159004211426,0.535546720027924,0.630249738693237,0.562116503715515,0.538218319416046,0.643727838993073,0.543999552726746,0.535546720027924,0.630249738693237,0.562116503715515,0.486234396696091,0.613591432571411,0.622159004211426,
- 0.488355398178101,0.671386957168579,0.557448327541351,0.537315249443054,0.646410882472992,0.541706025600433,0.538218319416046,0.643727838993073,0.543999552726746,0.488355398178101,0.671386957168579,0.557448327541351,0.495229452848434,0.681944608688354,0.538237333297729,0.649965822696686,0.531799554824829,0.542893886566162,0.541656136512756,0.646410942077637,0.537365436553955,0.538197994232178,0.681945562362671,0.495270907878876,0.639316737651825,0.591881692409515,0.490866720676422,-0.119028806686401,0.992050528526306,-0.0408399626612663,0.523648083209991,0.612057268619537,0.592603325843811,0.535546720027924,0.630249738693237,0.562116503715515,0.741135001182556,0.604095995426178,-0.292894214391708,-0.267631411552429,0.470479607582092,0.840846300125122,0.559275984764099,0.529621660709381,0.637739181518555,0.523648083209991,0.612057268619537,0.592603325843811,-0.119028806686401,0.992050528526306,-0.0408399626612663,0.278280705213547,0.115721024572849,0.953503251075745,0.649965822696686,0.531799554824829,0.542893886566162,0.559275984764099,0.529621660709381,0.637739181518555,-0.267631411552429,0.470479607582092,0.840846300125122,0.410489588975906,-0.016895392909646,0.911708772182465,0.541656136512756,0.646410942077637,0.537365436553955,0.649965822696686,0.531799554824829,0.542893886566162,0.278280705213547,0.115721024572849,0.953503251075745,0.961072683334351,0.165150031447411,0.221505910158157,0.538218319416046,0.643727838993073,0.543999552726746,0.537315249443054,0.646410882472992,0.541706025600433,0.911694884300232,-0.0168468244373798,0.410522401332855,0.741135001182556,0.604095995426178,-0.292894214391708,0.535546720027924,0.630249738693237,0.562116503715515,0.538218319416046,0.643727838993073,0.543999552726746,0.961072683334351,0.165150031447411,0.221505910158157,0.526864051818848,0.649376630783081,0.548383414745331,0.549924612045288,0.651045382022858,0.523185431957245,0.611440002918243,0.672495603561401,0.417002201080322,0.651485919952393,0.567309975624084,0.503711819648743,0.525733530521393,0.668730556964874,0.525741100311279,
- 0.526864051818848,0.649376630783081,0.548383414745331,0.651485919952393,0.567309975624084,0.503711819648743,0.596998333930969,0.535855770111084,0.597035646438599,0.525733530521393,0.668730556964874,0.525741100311279,0.596998333930969,0.535855770111084,0.597035646438599,0.503700375556946,0.567345440387726,0.651463866233826,0.548378527164459,0.649381816387177,0.526862680912018,0.523218810558319,0.651024520397186,0.54991751909256,0.548378527164459,0.649381816387177,0.526862680912018,0.503700375556946,0.567345440387726,0.651463866233826,0.417066097259521,0.672475516796112,0.611418426036835,0.501355528831482,0.677005410194397,0.538800895214081,0.523218810558319,0.651024520397186,0.54991751909256,0.417066097259521,0.672475516796112,0.611418426036835,0.407877534627914,0.745479583740234,0.527158498764038,0.549924612045288,0.651045382022858,0.523185431957245,0.538800835609436,0.677003979682922,0.501357555389404,0.527125835418701,0.745487093925476,0.407906204462051,0.611440002918243,0.672495603561401,0.417002201080322,-0.148968577384949,0.97754967212677,-0.149013206362724,0.525733530521393,0.668730556964874,0.525741100311279,0.548378527164459,0.649381816387177,0.526862680912018,0.722580850124359,0.548702239990234,-0.420479416847229,-0.420580863952637,0.548694431781769,0.722527623176575,0.526864051818848,0.649376630783081,0.548383414745331,0.525733530521393,0.668730556964874,0.525741100311279,-0.148968577384949,0.97754967212677,-0.149013206362724,0.161558568477631,0.030638225376606,0.986387491226196,0.549924612045288,0.651045382022858,0.523185431957245,0.526864051818848,0.649376630783081,0.548383414745331,-0.420580863952637,0.548694431781769,0.722527623176575,0.386666864156723,-0.076452910900116,0.919045031070709,0.538800835609436,0.677003979682922,0.501357555389404,0.549924612045288,0.651045382022858,0.523185431957245,0.161558568477631,0.030638225376606,0.986387491226196,0.986367225646973,0.0306573286652565,0.161678612232208,0.523218810558319,0.651024520397186,0.54991751909256,0.501355528831482,0.677005410194397,0.538800895214081,
- 0.919011771678925,-0.0764621943235397,0.38674408197403,0.722580850124359,0.548702239990234,-0.420479416847229,0.548378527164459,0.649381816387177,0.526862680912018,0.523218810558319,0.651024520397186,0.54991751909256,0.986367225646973,0.0306573286652565,0.161678612232208,0.573417484760284,0.622911036014557,0.532141268253326,0.561339259147644,0.651947200298309,0.509767770767212,0.56416517496109,0.693299829959869,0.448389530181885,0.627001166343689,0.611817598342896,0.482233047485352,0.555430293083191,0.613252699375153,0.561621248722076,0.573417484760284,0.622911036014557,0.532141268253326,0.627001166343689,0.611817598342896,0.482233047485352,0.586967051029205,0.55762380361557,0.586962878704071,0.555430293083191,0.613252699375153,0.561621248722076,0.586967051029205,0.55762380361557,0.586962878704071,0.497629702091217,0.598423421382904,0.62789660692215,0.524372100830078,0.629856705665588,0.572987258434296,0.509183526039124,0.661635994911194,0.550427079200745,0.524372100830078,0.629856705665588,0.572987258434296,0.497629702091217,0.598423421382904,0.62789660692215,0.450068533420563,0.666120588779449,0.59474515914917,0.508504152297974,0.671181440353394,0.539387583732605,0.509183526039124,0.661635994911194,0.550427079200745,0.450068533420563,0.666120588779449,0.59474515914917,0.446024507284164,0.719237446784973,0.5326908826828,0.561339259147644,0.651947200298309,0.509767770767212,0.539374172687531,0.671181678771973,0.508518099784851,0.53272420167923,0.719233751296997,0.445990800857544,0.56416517496109,0.693299829959869,0.448389530181885,-0.0357107445597649,0.987217903137207,0.155324056744576,0.555430293083191,0.613252699375153,0.561621248722076,0.524372100830078,0.629856705665588,0.572987258434296,0.54823887348175,0.80798727273941,-0.215848803520203,-0.205223128199577,0.628641486167908,0.750128924846649,0.573417484760284,0.622911036014557,0.532141268253326,0.555430293083191,0.613252699375153,0.561621248722076,-0.0357107445597649,0.987217903137207,0.155324056744576,0.209346473217011,0.0909703448414803,0.973600804805756,0.561339259147644,0.651947200298309,0.509767770767212,
- 0.573417484760284,0.622911036014557,0.532141268253326,-0.205223128199577,0.628641486167908,0.750128924846649,0.384110569953918,-0.0823378562927246,0.919608414173126,0.539374172687531,0.671181678771973,0.508518099784851,0.561339259147644,0.651947200298309,0.509767770767212,0.209346473217011,0.0909703448414803,0.973600804805756,0.96273946762085,0.270321428775787,0.00768179353326559,0.509183526039124,0.661635994911194,0.550427079200745,0.508504152297974,0.671181440353394,0.539387583732605,0.919581174850464,-0.0823599174618721,0.384170949459076,0.54823887348175,0.80798727273941,-0.215848803520203,0.524372100830078,0.629856705665588,0.572987258434296,0.509183526039124,0.661635994911194,0.550427079200745,0.96273946762085,0.270321428775787,0.00768179353326559,0.566267371177673,0.627503097057343,0.534398019313812,0.552407145500183,0.647867918014526,0.524512588977814,0.564455389976501,0.693901002407074,0.447092324495316,0.635338842868805,0.608152747154236,0.475914716720581,0.553927898406982,0.616588890552521,0.559447944164276,0.566267371177673,0.627503097057343,0.534398019313812,0.635338842868805,0.608152747154236,0.475914716720581,0.593089520931244,0.544471085071564,0.593124091625214,0.553927898406982,0.616588890552521,0.559447944164276,0.593089520931244,0.544471085071564,0.593124091625214,0.475884228944778,0.608179926872253,0.635335743427277,0.530145049095154,0.631262898445129,0.566086053848267,0.524323999881744,0.650508463382721,0.549475371837616,0.530145049095154,0.631262898445129,0.566086053848267,0.475884228944778,0.608179926872253,0.635335743427277,0.44711098074913,0.693870186805725,0.564478516578674,0.527707636356354,0.655003309249878,0.54082852602005,0.524323999881744,0.650508463382721,0.549475371837616,0.44711098074913,0.693870186805725,0.564478516578674,0.449058353900909,0.717072665691376,0.533060491085052,0.552407145500183,0.647867918014526,0.524512588977814,0.540780603885651,0.655003070831299,0.527756810188293,0.532987654209137,0.717078745365143,0.44913512468338,0.564455389976501,0.693901002407074,0.447092324495316,
- -0.144729778170586,0.986969411373138,0.0703188329935074,0.553927898406982,0.616588890552521,0.559447944164276,0.530145049095154,0.631262898445129,0.566086053848267,0.512434959411621,0.785291969776154,-0.347457855939865,-0.335399895906448,0.583523750305176,0.739599287509918,0.566267371177673,0.627503097057343,0.534398019313812,0.553927898406982,0.616588890552521,0.559447944164276,-0.144729778170586,0.986969411373138,0.0703188329935074,0.131057649850845,-0.021638598293066,0.991138577461243,0.552407145500183,0.647867918014526,0.524512588977814,0.566267371177673,0.627503097057343,0.534398019313812,-0.335399895906448,0.583523750305176,0.739599287509918,0.329122453927994,-0.205142349004745,0.921734869480133,0.540780603885651,0.655003070831299,0.527756810188293,0.552407145500183,0.647867918014526,0.524512588977814,0.131057649850845,-0.021638598293066,0.991138577461243,0.978944778442383,0.180208146572113,-0.0958752036094666,0.524323999881744,0.650508463382721,0.549475371837616,0.527707636356354,0.655003309249878,0.54082852602005,0.921718239784241,-0.205080509185791,0.329207569360733,0.512434959411621,0.785291969776154,-0.347457855939865,0.530145049095154,0.631262898445129,0.566086053848267,0.524323999881744,0.650508463382721,0.549475371837616,0.978944778442383,0.180208146572113,-0.0958752036094666,0.540156245231628,0.643661737442017,0.542153894901276,0.540736019611359,0.642294585704803,0.543196320533752,0.562950074672699,0.690418064594269,0.454323798418045,0.621904373168945,0.613920629024506,0.486144423484802,0.541006565093994,0.644159257411957,0.540713310241699,0.540156245231628,0.643661737442017,0.542153894901276,0.621904373168945,0.613920629024506,0.486144423484802,0.584333837032318,0.563107252120972,0.584349393844604,0.541006565093994,0.644159257411957,0.540713310241699,0.584333837032318,0.563107252120972,0.584349393844604,0.500581562519073,0.601317763328552,0.622764110565186,0.542513489723206,0.643353044986725,0.540162920951843,0.543260335922241,0.641815423965454,0.541240513324738,0.542513489723206,0.643353044986725,0.540162920951843,
- 0.500581562519073,0.601317763328552,0.622764110565186,0.455917954444885,0.664913773536682,0.591632008552551,0.54325920343399,0.641356587409973,0.541785299777985,0.543260335922241,0.641815423965454,0.541240513324738,0.455917954444885,0.664913773536682,0.591632008552551,0.452149301767349,0.714808225631714,0.533488690853119,0.540736019611359,0.642294585704803,0.543196320533752,0.541743099689484,0.641356527805328,0.543301224708557,0.533416867256165,0.714814245700836,0.452224582433701,0.562950074672699,0.690418064594269,0.454323798418045,-0.166615337133408,0.984607219696045,0.0528024025261402,0.541006565093994,0.644159257411957,0.540713310241699,0.542513489723206,0.643353044986725,0.540162920951843,0.503847897052765,0.778822302818298,-0.373595058917999,-0.361008286476135,0.573000133037567,0.735760748386383,0.540156245231628,0.643661737442017,0.542153894901276,0.541006565093994,0.644159257411957,0.540713310241699,-0.166615337133408,0.984607219696045,0.0528024025261402,0.114929467439651,-0.0444426089525223,0.992379009723663,0.540736019611359,0.642294585704803,0.543196320533752,0.540156245231628,0.643661737442017,0.542153894901276,-0.361008286476135,0.573000133037567,0.735760748386383,0.317492991685867,-0.229166150093079,0.920152723789215,0.541743099689484,0.641356527805328,0.543301224708557,0.540736019611359,0.642294585704803,0.543196320533752,0.114929467439651,-0.0444426089525223,0.992379009723663,0.979956150054932,0.161344662308693,-0.116850078105927,0.543260335922241,0.641815423965454,0.541240513324738,0.54325920343399,0.641356587409973,0.541785299777985,0.920124113559723,-0.229184910655022,0.317562460899353,0.503847897052765,0.778822302818298,-0.373595058917999,0.542513489723206,0.643353044986725,0.540162920951843,0.543260335922241,0.641815423965454,0.541240513324738,0.979956150054932,0.161344662308693,-0.116850078105927,0.620278239250183,0.517528295516968,0.589422941207886,0.6420037150383,0.567787408828735,0.515217185020447,0.627263963222504,0.659580290317535,0.41411817073822,0.711704730987549,0.456406772136688,0.53401243686676,
- 0.565536916255951,0.538222193717957,0.624888002872467,0.620278239250183,0.517528295516968,0.589422941207886,0.711704730987549,0.456406772136688,0.53401243686676,0.606574892997742,0.42872765660286,0.669521868228912,0.565536916255951,0.538222193717957,0.624888002872467,0.606574892997742,0.42872765660286,0.669521868228912,0.415324866771698,0.571299493312836,0.707899928092957,0.500566065311432,0.602235317230225,0.621889233589172,0.512146949768066,0.655852198600769,0.554584085941315,0.500566065311432,0.602235317230225,0.621889233589172,0.415324866771698,0.571299493312836,0.707899928092957,0.412809997797012,0.709290087223053,0.571397840976715,0.540601193904877,0.643739402294159,0.541617870330811,0.512146949768066,0.655852198600769,0.554584085941315,0.412809997797012,0.709290087223053,0.571397840976715,0.441987097263336,0.722104251384735,0.53217750787735,0.6420037150383,0.567787408828735,0.515217185020447,0.541591465473175,0.643739402294159,0.540627717971802,0.532126247882843,0.722111225128174,0.442037492990494,0.627263963222504,0.659580290317535,0.41411817073822,-0.0814262703061104,0.976465404033661,0.199712634086609,0.565536916255951,0.538222193717957,0.624888002872467,0.500566065311432,0.602235317230225,0.621889233589172,0.548204183578491,0.808015942573547,-0.215829312801361,-0.190032005310059,0.485920280218124,0.853094041347504,0.620278239250183,0.517528295516968,0.589422941207886,0.565536916255951,0.538222193717957,0.624888002872467,-0.0814262703061104,0.976465404033661,0.199712634086609,0.265801727771759,0.0369898527860641,0.96331787109375,0.6420037150383,0.567787408828735,0.515217185020447,0.620278239250183,0.517528295516968,0.589422941207886,-0.190032005310059,0.485920280218124,0.853094041347504,0.38410809636116,-0.0823220014572144,0.919610857963562,0.541591465473175,0.643739402294159,0.540627717971802,0.6420037150383,0.567787408828735,0.515217185020447,0.265801727771759,0.0369898527860641,0.96331787109375,0.962738871574402,0.27032545208931,0.00763277057558298,0.512146949768066,0.655852198600769,0.554584085941315,
- 0.540601193904877,0.643739402294159,0.541617870330811,0.919543087482452,-0.0823617875576019,0.384261727333069,0.548204183578491,0.808015942573547,-0.215829312801361,0.500566065311432,0.602235317230225,0.621889233589172,0.512146949768066,0.655852198600769,0.554584085941315,0.962738871574402,0.27032545208931,0.00763277057558298,0.563365876674652,0.632514715194702,0.531548738479614,0.559598803520203,0.660346925258636,0.500790536403656,0.598778963088989,0.66793829202652,0.44195282459259,0.617301523685455,0.59299647808075,0.51700496673584,0.547506749629974,0.631280362606049,0.549291849136353,0.563365876674652,0.632514715194702,0.531548738479614,0.617301523685455,0.59299647808075,0.51700496673584,0.576494097709656,0.578980922698975,0.576572418212891,0.547506749629974,0.631280362606049,0.549291849136353,0.576494097709656,0.578980922698975,0.576572418212891,0.516999483108521,0.593058466911316,0.617246568202972,0.527818083763123,0.635861992835999,0.563105344772339,0.500475883483887,0.666394352912903,0.552668452262878,0.527818083763123,0.635861992835999,0.563105344772339,0.516999483108521,0.593058466911316,0.617246568202972,0.441996276378632,0.667908132076263,0.598780512809753,0.489770829677582,0.686284065246582,0.537716209888458,0.500475883483887,0.666394352912903,0.552668452262878,0.441996276378632,0.667908132076263,0.598780512809753,0.426385194063187,0.733042478561401,0.529947519302368,0.559598803520203,0.660346925258636,0.500790536403656,0.537681639194489,0.686285257339478,0.48980712890625,0.529923617839813,0.733043253421783,0.426413804292679,0.598778963088989,0.66793829202652,0.44195282459259,-0.0948504284024239,0.989436626434326,0.109629958868027,0.547506749629974,0.631280362606049,0.549291849136353,0.527818083763123,0.635861992835999,0.563105344772339,0.530159950256348,0.797580301761627,-0.287743121385574,-0.276355266571045,0.605660796165466,0.746192216873169,0.563365876674652,0.632514715194702,0.531548738479614,0.547506749629974,0.631280362606049,0.549291849136353,-0.0948504284024239,0.989436626434326,0.109629958868027,
- 0.167395502328873,0.0301318541169167,0.985429286956787,0.559598803520203,0.660346925258636,0.500790536403656,0.563365876674652,0.632514715194702,0.531548738479614,-0.276355266571045,0.605660796165466,0.746192216873169,0.35492217540741,-0.14958855509758,0.922850847244263,0.537681639194489,0.686285257339478,0.48980712890625,0.559598803520203,0.660346925258636,0.500790536403656,0.167395502328873,0.0301318541169167,0.985429286956787,0.973836183547974,0.22199372947216,-0.0486012250185013,0.500475883483887,0.666394352912903,0.552668452262878,0.489770829677582,0.686284065246582,0.537716209888458,0.922803819179535,-0.149632811546326,0.35502564907074,0.530159950256348,0.797580301761627,-0.287743121385574,0.527818083763123,0.635861992835999,0.563105344772339,0.500475883483887,0.666394352912903,0.552668452262878,0.973836183547974,0.22199372947216,-0.0486012250185013,0.52962452173233,0.649908423423767,0.545084357261658,0.534148812294006,0.639056444168091,0.553436517715454,0.565003395080566,0.695370137691498,0.444107711315155,0.630621016025543,0.610244393348694,0.479498594999313,0.536328375339508,0.65358179807663,0.534025192260742,0.52962452173233,0.649908423423767,0.545084357261658,0.630621016025543,0.610244393348694,0.479498594999313,0.588779032230377,0.55373615026474,0.588825523853302,0.536328375339508,0.65358179807663,0.534025192260742,0.588779032230377,0.55373615026474,0.588825523853302,0.495580792427063,0.596266388893127,0.631558418273926,0.547985374927521,0.647343993186951,0.529771447181702,0.553627848625183,0.63545423746109,0.538232505321503,0.547985374927521,0.647343993186951,0.529771447181702,0.495580792427063,0.596266388893127,0.631558418273926,0.445859223604202,0.666965425014496,0.596964657306671,0.553866624832153,0.631794810295105,0.542279541492462,0.553627848625183,0.63545423746109,0.538232505321503,0.445859223604202,0.666965425014496,0.596964657306671,0.441647112369537,0.722358584403992,0.532114565372467,0.534148812294006,0.639056444168091,0.553436517715454,0.542237102985382,0.631794691085815,0.553908407688141,0.532066583633423,0.722363233566284,0.441697478294373,
- 0.565003395080566,0.695370137691498,0.444107711315155,-0.0356295742094517,0.987201511859894,0.155447125434875,0.536328375339508,0.65358179807663,0.534025192260742,0.547985374927521,0.647343993186951,0.529771447181702,0.548286437988281,0.807995676994324,-0.215696588158607,-0.205097198486328,0.628729224205017,0.750089883804321,0.52962452173233,0.649908423423767,0.545084357261658,0.536328375339508,0.65358179807663,0.534025192260742,-0.0356295742094517,0.987201511859894,0.155447125434875,0.209363728761673,0.0909918174147606,0.973595023155212,0.534148812294006,0.639056444168091,0.553436517715454,0.52962452173233,0.649908423423767,0.545084357261658,-0.205097198486328,0.628729224205017,0.750089883804321,0.384072184562683,-0.0824251472949982,0.91961658000946,0.542237102985382,0.631794691085815,0.553908407688141,0.534148812294006,0.639056444168091,0.553436517715454,0.209363728761673,0.0909918174147606,0.973595023155212,0.962740659713745,0.270317852497101,0.0076688239350915,0.553627848625183,0.63545423746109,0.538232505321503,0.553866624832153,0.631794810295105,0.542279541492462,0.919567227363586,-0.0824267193675041,0.384189963340759,0.548286437988281,0.807995676994324,-0.215696588158607,0.547985374927521,0.647343993186951,0.529771447181702,0.553627848625183,0.63545423746109,0.538232505321503,0.962740659713745,0.270317852497101,0.0076688239350915,0.556030988693237,0.636066019535065,0.535023033618927,0.548226654529572,0.649250566959381,0.527182400226593,0.560704410076141,0.685073375701904,0.46506467461586,0.61262047290802,0.61771821975708,0.49307245016098,0.550803124904633,0.629518568515778,0.548016726970673,0.556030988693237,0.636066019535065,0.535023033618927,0.61262047290802,0.61771821975708,0.49307245016098,0.579517364501953,0.572987794876099,0.579521059989929,0.550803124904633,0.629518568515778,0.548016726970673,0.579517364501953,0.572987794876099,0.579521059989929,0.5057692527771,0.606646955013275,0.613332748413086,0.536074578762054,0.635145366191864,0.556070566177368,0.527214288711548,0.649230003356934,0.54822039604187,
- 0.536074578762054,0.635145366191864,0.556070566177368,0.5057692527771,0.606646955013275,0.613332748413086,0.466479361057281,0.662612915039063,0.585953176021576,0.526766002178192,0.655793190002441,0.540789186954498,0.527214288711548,0.649230003356934,0.54822039604187,0.466479361057281,0.662612915039063,0.585953176021576,0.463236927986145,0.706655561923981,0.534835934638977,0.548226654529572,0.649250566959381,0.527182400226593,0.540771186351776,0.655793607234955,0.52678394317627,0.534759044647217,0.706661283969879,0.463317066431046,0.560704410076141,0.685073375701904,0.46506467461586,0.750083148479462,0.628639459609985,-0.205396726727486,0.155197650194168,0.98723441362381,-0.0358060970902443,0.550803124904633,0.629518568515778,0.548016726970673,0.536074578762054,0.635145366191864,0.556070566177368,0.155197650194168,0.98723441362381,-0.0358060970902443,-0.216174378991127,0.807926535606384,0.548200309276581,0.556030988693237,0.636066019535065,0.535023033618927,0.550803124904633,0.629518568515778,0.548016726970673,-0.216174378991127,0.807926535606384,0.548200309276581,0.00732225831598043,0.270144909620285,0.962791800498962,0.548226654529572,0.649250566959381,0.527182400226593,0.556030988693237,0.636066019535065,0.535023033618927,0.00732225831598043,0.270144909620285,0.962791800498962,0.38410884141922,-0.0824543759226799,0.919598758220673,0.540771186351776,0.655793607234955,0.52678394317627,0.548226654529572,0.649250566959381,0.527182400226593,0.919565796852112,-0.0825706198811531,0.384162813425064,0.973629951477051,0.0908253937959671,0.209273785352707,0.527214288711548,0.649230003356934,0.54822039604187,0.526766002178192,0.655793190002441,0.540789186954498,0.973629951477051,0.0908253937959671,0.209273785352707,0.750083148479462,0.628639459609985,-0.205396726727486,0.536074578762054,0.635145366191864,0.556070566177368,0.527214288711548,0.649230003356934,0.54822039604187,-0.454486459493637,0.766068339347839,-0.45451220870018,-0.454486966133118,0.766068339347839,-0.454511791467667,-0.454487919807434,0.766068339347839,-0.454510927200317,
- -0.454487830400467,0.766068339347839,-0.45451083779335,-0.454487413167953,0.766068339347839,-0.454511344432831,-0.454486519098282,0.766068398952484,-0.454512268304825,0.650319457054138,0.584994435310364,0.484629899263382,0.58882063627243,0.688678383827209,0.423098504543304,0.536536872386932,0.801622211933136,-0.263685673475266,0.970684766769409,0.238533318042755,-0.0295441560447216,0.609178304672241,0.533130645751953,0.587089002132416,0.650319457054138,0.584994435310364,0.484629899263382,0.970684766769409,0.238533318042755,-0.0295441560447216,0.700299322605133,-0.138188987970352,0.700346112251282,0.609178304672241,0.533130645751953,0.587089002132416,0.700299322605133,-0.138188987970352,0.700346112251282,0.0768406838178635,0.146109223365784,0.986279726028442,0.492911398410797,0.577563405036926,0.650737106800079,0.423069715499878,0.688690483570099,0.588827192783356,0.492911398410797,0.577563405036926,0.650737106800079,0.0768406838178635,0.146109223365784,0.986279726028442,-0.252311170101166,0.613881886005402,0.747989416122437,0.418701678514481,0.738272190093994,0.528812944889069,0.423069715499878,0.688690483570099,0.588827192783356,-0.252311170101166,0.613881886005402,0.747989416122437,-0.255308002233505,0.918498277664185,0.301958322525024,0.58882063627243,0.688678383827209,0.423098504543304,0.528774321079254,0.738273739814758,0.418747663497925,0.301811754703522,0.918543457984924,-0.255318999290466,0.536536872386932,0.801622211933136,-0.263685673475266,-0.454509198665619,0.766074657440186,-0.454478949308395,-0.454511404037476,0.766074657440186,-0.454476773738861,-0.454511433839798,0.766074597835541,-0.454476803541183,-0.454510360956192,0.766074538230896,-0.454477846622467,-0.45450821518898,0.766074597835541,-0.454480051994324,-0.45450821518898,0.766074657440186,-0.454480051994324,-0.0356817580759525,0.987215042114258,0.155349254608154,0.546694755554199,0.630482196807861,0.551014602184296,0.533204674720764,0.638612568378448,0.554857552051544,0.548205554485321,0.807985901832581,-0.215938925743103,-0.205102160573006,0.628714025020599,0.750101208686829,
- 0.555110275745392,0.634531378746033,0.537794172763824,0.546694755554199,0.630482196807861,0.551014602184296,-0.0356817580759525,0.987215042114258,0.155349254608154,0.209400355815887,0.091007374227047,0.973585724830627,0.550056219100952,0.646724045276642,0.528380692005157,0.555110275745392,0.634531378746033,0.537794172763824,-0.205102160573006,0.628714025020599,0.750101208686829,0.384091794490814,-0.0824649035930634,0.919604897499084,0.540825426578522,0.654846489429474,0.527905285358429,0.550056219100952,0.646724045276642,0.528380692005157,0.209400355815887,0.091007374227047,0.973585724830627,0.962783098220825,0.270173639059067,0.00740800052881241,0.528131186962128,0.650806903839111,0.545460999011993,0.527863442897797,0.654846370220184,0.540866494178772,0.919556498527527,-0.0825140178203583,0.384196817874908,0.548205554485321,0.807985901832581,-0.215938925743103,0.533204674720764,0.638612568378448,0.554857552051544,0.528131186962128,0.650806903839111,0.545460999011993,0.962783098220825,0.270173639059067,0.00740800052881241,0.533204674720764,0.638612568378448,0.554857552051544,0.546694755554199,0.630482196807861,0.551014602184296,0.609178304672241,0.533130645751953,0.587089002132416,0.492911398410797,0.577563405036926,0.650737106800079,0.546694755554199,0.630482196807861,0.551014602184296,0.555110275745392,0.634531378746033,0.537794172763824,0.650319457054138,0.584994435310364,0.484629899263382,0.609178304672241,0.533130645751953,0.587089002132416,0.555110275745392,0.634531378746033,0.537794172763824,0.550056219100952,0.646724045276642,0.528380692005157,0.58882063627243,0.688678383827209,0.423098504543304,0.650319457054138,0.584994435310364,0.484629899263382,0.550056219100952,0.646724045276642,0.528380692005157,0.540825426578522,0.654846489429474,0.527905285358429,0.528774321079254,0.738273739814758,0.418747663497925,0.58882063627243,0.688678383827209,0.423098504543304,0.527863442897797,0.654846370220184,0.540866494178772,0.528131186962128,0.650806903839111,0.545460999011993,0.423069715499878,0.688690483570099,0.588827192783356,
- 0.418701678514481,0.738272190093994,0.528812944889069,0.528131186962128,0.650806903839111,0.545460999011993,0.533204674720764,0.638612568378448,0.554857552051544,0.492911398410797,0.577563405036926,0.650737106800079,0.423069715499878,0.688690483570099,0.588827192783356,0.546358108520508,0.538466811180115,0.641518890857697,0.654780626296997,0.532193243503571,0.536686718463898,0.637783229351044,0.605477511882782,0.476056218147278,0.597864985466003,0.43575781583786,0.672809481620789,0.515959084033966,0.638065218925476,0.571540892124176,0.546358108520508,0.538466811180115,0.641518890857697,0.597864985466003,0.43575781583786,0.672809481620789,0.524901807308197,0.57947701215744,0.623445749282837,0.515959084033966,0.638065218925476,0.571540892124176,0.524901807308197,0.57947701215744,0.623445749282837,0.509913563728333,0.610842108726501,0.605689704418182,0.539235830307007,0.64095002412796,0.546267151832581,0.537028670310974,0.645551919937134,0.543012857437134,0.539235830307007,0.64095002412796,0.546267151832581,0.509913563728333,0.610842108726501,0.605689704418182,0.47491055727005,0.660687267780304,0.581336736679077,0.536931455135345,0.646931052207947,0.54146546125412,0.537028670310974,0.645551919937134,0.543012857437134,0.47491055727005,0.660687267780304,0.581336736679077,0.472077935934067,0.699972152709961,0.535893082618713,0.654780626296997,0.532193243503571,0.536686718463898,0.541414320468903,0.646931350231171,0.536982655525208,0.535821974277496,0.699973702430725,0.472156465053558,0.637783229351044,0.605477511882782,0.476056218147278,-0.171957388520241,0.974989533424377,0.140805676579475,0.515959084033966,0.638065218925476,0.571540892124176,0.539235830307007,0.64095002412796,0.546267151832581,0.52124685049057,0.791637599468231,-0.318765848875046,-0.283336400985718,0.428995460271835,0.857719898223877,0.546358108520508,0.538466811180115,0.641518890857697,0.515959084033966,0.638065218925476,0.571540892124176,-0.171957388520241,0.974989533424377,0.140805676579475,0.215753078460693,-0.0587151199579239,0.97468101978302,0.654780626296997,0.532193243503571,0.536686718463898,
- 0.546358108520508,0.538466811180115,0.641518890857697,-0.283336400985718,0.428995460271835,0.857719898223877,0.341765195131302,-0.178602576255798,0.92265796661377,0.541414320468903,0.646931350231171,0.536982655525208,0.654780626296997,0.532193243503571,0.536686718463898,0.215753078460693,-0.0587151199579239,0.97468101978302,0.976967334747314,0.200463533401489,-0.0731389820575714,0.537028670310974,0.645551919937134,0.543012857437134,0.536931455135345,0.646931052207947,0.54146546125412,0.922651767730713,-0.178671047091484,0.341746091842651,0.52124685049057,0.791637599468231,-0.318765848875046,0.539235830307007,0.64095002412796,0.546267151832581,0.537028670310974,0.645551919937134,0.543012857437134,0.976967334747314,0.200463533401489,-0.0731389820575714,0.584255993366241,0.622037291526794,0.521262586116791,0.570190191268921,0.670529067516327,0.474630326032639,0.643791317939758,0.682875156402588,0.345274239778519,0.693450808525085,0.532963812351227,0.484845876693726,0.556389570236206,0.61311137676239,0.560825347900391,0.584255993366241,0.622037291526794,0.521262586116791,0.693450808525085,0.532963812351227,0.484845876693726,0.613846659660339,0.496491342782974,0.61374968290329,0.556389570236206,0.61311137676239,0.560825347900391,0.613846659660339,0.496491342782974,0.61374968290329,0.484878420829773,0.532991886138916,0.693406581878662,0.513833522796631,0.628653764724731,0.583754658699036,0.474071174860001,0.68035876750946,0.558899462223053,0.513833522796631,0.628653764724731,0.583754658699036,0.484878420829773,0.532991886138916,0.693406581878662,0.345276266336441,0.682902336120605,0.643761396408081,0.460422337055206,0.708753645420074,0.534489989280701,0.474071174860001,0.68035876750946,0.558899462223053,0.345276266336441,0.682902336120605,0.643761396408081,0.321603327989578,0.797109365463257,0.511065542697906,0.570190191268921,0.670529067516327,0.474630326032639,0.534467399120331,0.708754777908325,0.460446864366531,0.511100053787231,0.797097206115723,0.321578621864319,0.643791317939758,0.682875156402588,0.345274239778519,
- -0.218154042959213,0.975852251052856,0.0110149243846536,0.556389570236206,0.61311137676239,0.560825347900391,0.513833522796631,0.628653764724731,0.583754658699036,0.482110291719437,0.760955274105072,-0.434185177087784,-0.421274602413177,0.545885562896729,0.724249124526978,0.584255993366241,0.622037291526794,0.521262586116791,0.556389570236206,0.61311137676239,0.560825347900391,-0.218154042959213,0.975852251052856,0.0110149243846536,0.0758466869592667,-0.0987894609570503,0.992213726043701,0.570190191268921,0.670529067516327,0.474630326032639,0.584255993366241,0.622037291526794,0.521262586116791,-0.421274602413177,0.545885562896729,0.724249124526978,0.288998663425446,-0.28524512052536,0.9138463139534,0.534467399120331,0.708754777908325,0.460446864366531,0.570190191268921,0.670529067516327,0.474630326032639,0.0758466869592667,-0.0987894609570503,0.992213726043701,0.979239642620087,0.116073928773403,-0.166182264685631,0.474071174860001,0.68035876750946,0.558899462223053,0.460422337055206,0.708753645420074,0.534489989280701,0.913810253143311,-0.285286098718643,0.289072155952454,0.482110291719437,0.760955274105072,-0.434185177087784,0.513833522796631,0.628653764724731,0.583754658699036,0.474071174860001,0.68035876750946,0.558899462223053,0.979239642620087,0.116073928773403,-0.166182264685631,0.530058324337006,0.648017525672913,0.54691082239151,0.54841560125351,0.649523198604584,0.526649832725525,0.602368533611298,0.669315457344055,0.434935748577118,0.615339457988739,0.594471991062164,0.517649054527283,0.529531240463257,0.665461301803589,0.526077806949615,0.530058324337006,0.648017525672913,0.54691082239151,0.615339457988739,0.594471991062164,0.517649054527283,0.572907686233521,0.58605420589447,0.572989821434021,0.529531240463257,0.665461301803589,0.526077806949615,0.572907686233521,0.58605420589447,0.572989821434021,0.517626881599426,0.594510436058044,0.615320801734924,0.54890114068985,0.646241009235382,0.530170023441315,0.52659410238266,0.650876522064209,0.546862363815308,0.54890114068985,0.646241009235382,0.530170023441315,
- 0.517626881599426,0.594510436058044,0.615320801734924,0.434951484203339,0.669279217720032,0.602397322654724,0.515243828296661,0.665836095809937,0.539616703987122,0.52659410238266,0.650876522064209,0.546862363815308,0.434951484203339,0.669279217720032,0.602397322654724,0.417770892381668,0.739774525165558,0.527447760105133,0.54841560125351,0.649523198604584,0.526649832725525,0.539612472057343,0.665836572647095,0.515247583389282,0.52741414308548,0.739780426025391,0.417803019285202,0.602368533611298,0.669315457344055,0.434935748577118,0.00355940312147141,0.982704758644104,0.185145348310471,0.529531240463257,0.665461301803589,0.526077806949615,0.54890114068985,0.646241009235382,0.530170023441315,0.558509051799774,0.812380433082581,-0.167647927999496,-0.157412365078926,0.642055630683899,0.750323891639709,0.530058324337006,0.648017525672913,0.54691082239151,0.529531240463257,0.665461301803589,0.526077806949615,0.00355940312147141,0.982704758644104,0.185145348310471,0.245382130146027,0.13618241250515,0.959813594818115,0.54841560125351,0.649523198604584,0.526649832725525,0.530058324337006,0.648017525672913,0.54691082239151,-0.157412365078926,0.642055630683899,0.750323891639709,0.412104398012161,-0.0127272419631481,0.911047756671906,0.539612472057343,0.665836572647095,0.515247583389282,0.54841560125351,0.649523198604584,0.526649832725525,0.245382130146027,0.13618241250515,0.959813594818115,0.963115572929382,0.222983792424202,0.150621235370636,0.52659410238266,0.650876522064209,0.546862363815308,0.515243828296661,0.665836095809937,0.539616703987122,0.911024689674377,-0.0127217397093773,0.412155598402023,0.558509051799774,0.812380433082581,-0.167647927999496,0.54890114068985,0.646241009235382,0.530170023441315,0.52659410238266,0.650876522064209,0.546862363815308,0.963115572929382,0.222983792424202,0.150621235370636,0.591175436973572,0.611286163330078,0.526156604290009,0.548638999462128,0.646102070808411,0.530610501766205,0.560702860355377,0.684109568595886,0.466483175754547,0.649985432624817,0.60132509469986,0.464679509401321,
- 0.570486903190613,0.577613651752472,0.583872556686401,0.591175436973572,0.611286163330078,0.526156604290009,0.649985432624817,0.60132509469986,0.464679509401321,0.60824590921402,0.510014116764069,0.608212530612946,0.570486903190613,0.577613651752472,0.583872556686401,0.60824590921402,0.510014116764069,0.608212530612946,0.464676082134247,0.601346552371979,0.649968087673187,0.517515599727631,0.6189044713974,0.590876340866089,0.530441582202911,0.647840857505798,0.546748518943787,0.517515599727631,0.6189044713974,0.590876340866089,0.464676082134247,0.601346552371979,0.649968087673187,0.466480523347855,0.684116899967194,0.560696005821228,0.550775468349457,0.634613931179047,0.542136073112488,0.530441582202911,0.647840857505798,0.546748518943787,0.466480523347855,0.684116899967194,0.560696005821228,0.487068384885788,0.68839156627655,0.537477016448975,0.548638999462128,0.646102070808411,0.530610501766205,0.542109072208405,0.634613811969757,0.550802290439606,0.537481069564819,0.688390970230103,0.48706465959549,0.560702860355377,0.684109568595886,0.466483175754547,-0.0355567149817944,0.98720395565033,0.155448198318481,0.570486903190613,0.577613651752472,0.583872556686401,0.517515599727631,0.6189044713974,0.590876340866089,0.548177599906921,0.80800473690033,-0.215939402580261,-0.204762741923332,0.62874561548233,0.750167548656464,0.591175436973572,0.611286163330078,0.526156604290009,0.570486903190613,0.577613651752472,0.583872556686401,-0.0355567149817944,0.98720395565033,0.155448198318481,0.209544777870178,0.0912481620907784,0.97353208065033,0.548638999462128,0.646102070808411,0.530610501766205,0.591175436973572,0.611286163330078,0.526156604290009,-0.204762741923332,0.62874561548233,0.750167548656464,0.38414278626442,-0.0822606086730957,0.919601857662201,0.542109072208405,0.634613811969757,0.550802290439606,0.548638999462128,0.646102070808411,0.530610501766205,0.209544777870178,0.0912481620907784,0.97353208065033,0.962751150131226,0.270281910896301,0.00762432906776667,0.530441582202911,0.647840857505798,0.546748518943787,0.550775468349457,0.634613931179047,0.542136073112488,
- 0.919532358646393,-0.0823445171117783,0.384290963411331,0.548177599906921,0.80800473690033,-0.215939402580261,0.517515599727631,0.6189044713974,0.590876340866089,0.530441582202911,0.647840857505798,0.546748518943787,0.962751150131226,0.270281910896301,0.00762432906776667,0.572041869163513,0.623759031295776,0.532628238201141,0.560489892959595,0.651605904102325,0.511136770248413,0.576377153396606,0.725206255912781,0.376650154590607,0.68481171131134,0.584541261196136,0.435137242078781,0.554847598075867,0.614547491073608,0.560781180858612,0.572041869163513,0.623759031295776,0.532628238201141,0.68481171131134,0.584541261196136,0.435137242078781,0.615888178348541,0.491198539733887,0.615959286689758,0.554847598075867,0.614547491073608,0.560781180858612,0.615888178348541,0.491198539733887,0.615959286689758,0.461781024932861,0.561553955078125,0.686596989631653,0.525140583515167,0.630434155464172,0.571646928787231,0.510613620281219,0.660828948020935,0.550071716308594,0.525140583515167,0.630434155464172,0.571646928787231,0.461781024932861,0.561553955078125,0.686596989631653,0.37956029176712,0.678277492523193,0.62918496131897,0.509926557540894,0.669990062713623,0.539525926113129,0.510613620281219,0.660828948020935,0.550071716308594,0.37956029176712,0.678277492523193,0.62918496131897,0.371984601020813,0.768174886703491,0.521089971065521,0.560489892959595,0.651605904102325,0.511136770248413,0.539484560489655,0.669990539550781,0.509969711303711,0.520980179309845,0.768188714981079,0.372110098600388,0.576377153396606,0.725206255912781,0.376650154590607,-0.144572630524635,0.986984074115753,0.0704365223646164,0.554847598075867,0.614547491073608,0.560781180858612,0.525140583515167,0.630434155464172,0.571646928787231,0.512495160102844,0.785264313220978,-0.347431808710098,-0.335335940122604,0.583586454391479,0.739578783512115,0.572041869163513,0.623759031295776,0.532628238201141,0.554847598075867,0.614547491073608,0.560781180858612,-0.144572630524635,0.986984074115753,0.0704365223646164,0.131132259964943,-0.0215704701840878,0.991130232810974,
- 0.560489892959595,0.651605904102325,0.511136770248413,0.572041869163513,0.623759031295776,0.532628238201141,-0.335335940122604,0.583586454391479,0.739578783512115,0.329270094633102,-0.205112442374229,0.921688735485077,0.539484560489655,0.669990539550781,0.509969711303711,0.560489892959595,0.651605904102325,0.511136770248413,0.131132259964943,-0.0215704701840878,0.991130232810974,0.97895210981369,0.18011486530304,-0.0959766060113907,0.510613620281219,0.660828948020935,0.550071716308594,0.509926557540894,0.669990062713623,0.539525926113129,0.921730518341064,-0.205080911517143,0.329172700643539,0.512495160102844,0.785264313220978,-0.347431808710098,0.525140583515167,0.630434155464172,0.571646928787231,0.510613620281219,0.660828948020935,0.550071716308594,0.97895210981369,0.18011486530304,-0.0959766060113907,0.559271395206451,0.529641389846802,0.637726902961731,0.649971723556519,0.531799376010895,0.542886853218079,0.639321684837341,0.59185403585434,0.490893691778183,0.61669260263443,0.419215500354767,0.666294693946838,0.523646891117096,0.612059712409973,0.592601776123047,0.559271395206451,0.529641389846802,0.637726902961731,0.61669260263443,0.419215500354767,0.666294693946838,0.541846096515656,0.539620101451874,0.644370317459106,0.523646891117096,0.612059712409973,0.592601776123047,0.541846096515656,0.539620101451874,0.644370317459106,0.486228138208389,0.613620281219482,0.62213534116745,0.535546720027924,0.630263566970825,0.562101006507874,0.538232445716858,0.643714845180511,0.544001042842865,0.535546720027924,0.630263566970825,0.562101006507874,0.486228138208389,0.613620281219482,0.62213534116745,0.488380610942841,0.67138284444809,0.557431221008301,0.537331938743591,0.646407127380371,0.541693866252899,0.538232445716858,0.643714845180511,0.544001042842865,0.488380610942841,0.67138284444809,0.557431221008301,0.495218604803085,0.681930184364319,0.538265645503998,0.649971723556519,0.531799376010895,0.542886853218079,0.541686594486237,0.646407246589661,0.537339150905609,0.538233399391174,0.681932091712952,0.495250821113586,
- 0.639321684837341,0.59185403585434,0.490893691778183,-0.119057051837444,0.992048621177673,-0.0408049933612347,0.523646891117096,0.612059712409973,0.592601776123047,0.535546720027924,0.630263566970825,0.562101006507874,0.741129994392395,0.604155004024506,-0.292785048484802,-0.267406851053238,0.470605850219727,0.840846955776215,0.559271395206451,0.529641389846802,0.637726902961731,0.523646891117096,0.612059712409973,0.592601776123047,-0.119057051837444,0.992048621177673,-0.0408049933612347,0.278455346822739,0.115979760885239,0.953420877456665,0.649971723556519,0.531799376010895,0.542886853218079,0.559271395206451,0.529641389846802,0.637726902961731,-0.267406851053238,0.470605850219727,0.840846955776215,0.410572171211243,-0.0166690684854984,0.911675810813904,0.541686594486237,0.646407246589661,0.537339150905609,0.649971723556519,0.531799376010895,0.542886853218079,0.278455346822739,0.115979760885239,0.953420877456665,0.96103447675705,0.165288791060448,0.22156834602356,0.538232445716858,0.643714845180511,0.544001042842865,0.537331938743591,0.646407127380371,0.541693866252899,0.911673188209534,-0.0166743453592062,0.410577803850174,0.741129994392395,0.604155004024506,-0.292785048484802,0.535546720027924,0.630263566970825,0.562101006507874,0.538232445716858,0.643714845180511,0.544001042842865,0.96103447675705,0.165288791060448,0.22156834602356,0.526824712753296,0.649384617805481,0.548411846160889,0.549928784370422,0.651013731956482,0.523220360279083,0.61143958568573,0.672473609447479,0.417038321495056,0.651456236839294,0.567347764968872,0.503707468509674,0.525721728801727,0.668736517429352,0.525745272636414,0.526824712753296,0.649384617805481,0.548411846160889,0.651456236839294,0.567347764968872,0.503707468509674,0.596987903118134,0.535860419273376,0.5970419049263,0.525721728801727,0.668736517429352,0.525745272636414,0.596987903118134,0.535860419273376,0.5970419049263,0.503713130950928,0.567322313785553,0.651474118232727,0.548408091068268,0.649353384971619,0.526867032051086,0.523188829421997,0.651029050350189,0.549940645694733,
- 0.548408091068268,0.649353384971619,0.526867032051086,0.503713130950928,0.567322313785553,0.651474118232727,0.417022705078125,0.672451674938202,0.611474335193634,0.50137585401535,0.677000105381012,0.538788616657257,0.523188829421997,0.651029050350189,0.549940645694733,0.417022705078125,0.672451674938202,0.611474335193634,0.407896310091019,0.745488941669464,0.527130782604218,0.549928784370422,0.651013731956482,0.523220360279083,0.538792371749878,0.677001714706421,0.501369595527649,0.527140617370605,0.745488286018372,0.407884865999222,0.61143958568573,0.672473609447479,0.417038321495056,-0.148969992995262,0.977556109428406,-0.148970171809196,0.525721728801727,0.668736517429352,0.525745272636414,0.548408091068268,0.649353384971619,0.526867032051086,0.722528338432312,0.54879105091095,-0.420453667640686,-0.420527458190918,0.548685431480408,0.722565591335297,0.526824712753296,0.649384617805481,0.548411846160889,0.525721728801727,0.668736517429352,0.525745272636414,-0.148969992995262,0.977556109428406,-0.148970171809196,0.161598145961761,0.0305942557752132,0.986382365226746,0.549928784370422,0.651013731956482,0.523220360279083,0.526824712753296,0.649384617805481,0.548411846160889,-0.420527458190918,0.548685431480408,0.722565591335297,0.386577367782593,-0.0764303505420685,0.919084489345551,0.538792371749878,0.677001714706421,0.501369595527649,0.549928784370422,0.651013731956482,0.523220360279083,0.161598145961761,0.0305942557752132,0.986382365226746,0.986371517181396,0.03066111728549,0.161651700735092,0.523188829421997,0.651029050350189,0.549940645694733,0.50137585401535,0.677000105381012,0.538788616657257,0.919000864028931,-0.0765104070305824,0.386760503053665,0.722528338432312,0.54879105091095,-0.420453667640686,0.548408091068268,0.649353384971619,0.526867032051086,0.523188829421997,0.651029050350189,0.549940645694733,0.986371517181396,0.03066111728549,0.161651700735092,0.573433339595795,0.622901916503906,0.532134830951691,0.561349391937256,0.651950061321259,0.509752988815308,0.564163386821747,0.693283557891846,0.448416769504547,
- 0.626991450786591,0.611817896366119,0.48224550485611,0.555427312850952,0.613241255283356,0.561636686325073,0.573433339595795,0.622901916503906,0.532134830951691,0.626991450786591,0.611817896366119,0.48224550485611,0.586967587471008,0.557608783245087,0.586976528167725,0.555427312850952,0.613241255283356,0.561636686325073,0.586967587471008,0.557608783245087,0.586976528167725,0.497666746377945,0.598372220993042,0.627916038036346,0.524379909038544,0.629854440689087,0.572982728481293,0.509193122386932,0.661629915237427,0.55042552947998,0.524379909038544,0.629854440689087,0.572982728481293,0.497666746377945,0.598372220993042,0.627916038036346,0.450055718421936,0.66612297296524,0.594752132892609,0.508474826812744,0.671182155609131,0.539414465427399,0.509193122386932,0.661629915237427,0.55042552947998,0.450055718421936,0.66612297296524,0.594752132892609,0.446034938097,0.719236612319946,0.532683372497559,0.561349391937256,0.651950061321259,0.509752988815308,0.539384484291077,0.671183705329895,0.508504509925842,0.532699882984161,0.719231486320496,0.446023464202881,0.564163386821747,0.693283557891846,0.448416769504547,-0.0358708314597607,0.987235426902771,0.155175775289536,0.555427312850952,0.613241255283356,0.561636686325073,0.524379909038544,0.629854440689087,0.572982728481293,0.548169553279877,0.807939231395721,-0.216204285621643,-0.205151751637459,0.628649473190308,0.750141680240631,0.573433339595795,0.622901916503906,0.532134830951691,0.555427312850952,0.613241255283356,0.561636686325073,-0.0358708314597607,0.987235426902771,0.155175775289536,0.209522768855095,0.0911931693553925,0.973542094230652,0.561349391937256,0.651950061321259,0.509752988815308,0.573433339595795,0.622901916503906,0.532134830951691,-0.205151751637459,0.628649473190308,0.750141680240631,0.384176969528198,-0.0822608694434166,0.9195876121521,0.539384484291077,0.671183705329895,0.508504509925842,0.561349391937256,0.651950061321259,0.509752988815308,0.209522768855095,0.0911931693553925,0.973542094230652,0.962798237800598,0.270119369029999,0.00742615852504969,
- 0.509193122386932,0.661629915237427,0.55042552947998,0.508474826812744,0.671182155609131,0.539414465427399,0.919564008712769,-0.0824029594659805,0.384202867746353,0.548169553279877,0.807939231395721,-0.216204285621643,0.524379909038544,0.629854440689087,0.572982728481293,0.509193122386932,0.661629915237427,0.55042552947998,0.962798237800598,0.270119369029999,0.00742615852504969,0.566263794898987,0.627514183521271,0.534388661384583,0.552415311336517,0.647844791412354,0.524532556533813,0.56447434425354,0.693853080272675,0.447142899036407,0.635325193405151,0.608154237270355,0.475930958986282,0.553934097290039,0.61658102273941,0.559450626373291,0.566263794898987,0.627514183521271,0.534388661384583,0.635325193405151,0.608154237270355,0.475930958986282,0.593099176883698,0.544466614723206,0.59311842918396,0.553934097290039,0.61658102273941,0.559450626373291,0.593099176883698,0.544466614723206,0.59311842918396,0.475890010595322,0.60818475484848,0.635326683521271,0.530130743980408,0.631270110607147,0.566091477870941,0.524317145347595,0.650505542755127,0.549485445022583,0.530130743980408,0.631270110607147,0.566091477870941,0.475890010595322,0.60818475484848,0.635326683521271,0.447117030620575,0.693840146064758,0.564510643482208,0.527664184570313,0.655000746250153,0.540873825550079,0.524317145347595,0.650505542755127,0.549485445022583,0.447117030620575,0.693840146064758,0.564510643482208,0.449044018983841,0.717055022716522,0.533096253871918,0.552415311336517,0.647844791412354,0.524532556533813,0.540797293186188,0.655000984668732,0.527742326259613,0.533043384552002,0.717056691646576,0.449104219675064,0.56447434425354,0.693853080272675,0.447142899036407,-0.144696623086929,0.986977577209473,0.0702730119228363,0.553934097290039,0.61658102273941,0.559450626373291,0.530130743980408,0.631270110607147,0.566091477870941,0.512493908405304,0.78527957201004,-0.347399175167084,-0.335368067026138,0.583500683307648,0.739631831645966,0.566263794898987,0.627514183521271,0.534388661384583,0.553934097290039,0.61658102273941,0.559450626373291,-0.144696623086929,0.986977577209473,0.0702730119228363,
- 0.131108582019806,-0.021546857431531,0.99113392829895,0.552415311336517,0.647844791412354,0.524532556533813,0.566263794898987,0.627514183521271,0.534388661384583,-0.335368067026138,0.583500683307648,0.739631831645966,0.329081058502197,-0.205135941505432,0.921751022338867,0.540797293186188,0.655000984668732,0.527742326259613,0.552415311336517,0.647844791412354,0.524532556533813,0.131108582019806,-0.021546857431531,0.99113392829895,0.978940486907959,0.180210426449776,-0.0959156304597855,0.524317145347595,0.650505542755127,0.549485445022583,0.527664184570313,0.655000746250153,0.540873825550079,0.921712815761566,-0.205112501978874,0.329202592372894,0.512493908405304,0.78527957201004,-0.347399175167084,0.530130743980408,0.631270110607147,0.566091477870941,0.524317145347595,0.650505542755127,0.549485445022583,0.978940486907959,0.180210426449776,-0.0959156304597855,0.540174722671509,0.643657922744751,0.542140066623688,0.540734589099884,0.64230215549469,0.543188810348511,0.56294322013855,0.690422177314758,0.454326182603836,0.621908724308014,0.613933026790619,0.486123353242874,0.540990054607391,0.644169569015503,0.540717482566834,0.540174722671509,0.643657922744751,0.542140066623688,0.621908724308014,0.613933026790619,0.486123353242874,0.58431738615036,0.563123226165771,0.58435046672821,0.540990054607391,0.644169569015503,0.540717482566834,0.58431738615036,0.563123226165771,0.58435046672821,0.500559985637665,0.601349592208862,0.622750699520111,0.542528390884399,0.643356263637543,0.540144205093384,0.543249130249023,0.641828835010529,0.541235744953156,0.542528390884399,0.643356263637543,0.540144205093384,0.500559985637665,0.601349592208862,0.622750699520111,0.45589405298233,0.664912462234497,0.591651916503906,0.543272495269775,0.641359746456146,0.541768193244934,0.543249130249023,0.641828835010529,0.541235744953156,0.45589405298233,0.664912462234497,0.591651916503906,0.45216703414917,0.714812636375427,0.533467888832092,0.540734589099884,0.64230215549469,0.543188810348511,0.541737735271454,0.641359686851501,0.543302834033966,
- 0.533399701118469,0.71481853723526,0.452238172292709,0.56294322013855,0.690422177314758,0.454326182603836,-0.166621476411819,0.984606146812439,0.052801925688982,0.540990054607391,0.644169569015503,0.540717482566834,0.542528390884399,0.643356263637543,0.540144205093384,0.503848373889923,0.778813242912292,-0.373613297939301,-0.360958099365234,0.573054552078247,0.73574298620224,0.540174722671509,0.643657922744751,0.542140066623688,0.540990054607391,0.644169569015503,0.540717482566834,-0.166621476411819,0.984606146812439,0.052801925688982,0.11495590955019,-0.0443768911063671,0.992378950119019,0.540734589099884,0.64230215549469,0.543188810348511,0.540174722671509,0.643657922744751,0.542140066623688,-0.360958099365234,0.573054552078247,0.73574298620224,0.317563682794571,-0.229153260588646,0.92013156414032,0.541737735271454,0.641359686851501,0.543302834033966,0.540734589099884,0.64230215549469,0.543188810348511,0.11495590955019,-0.0443768911063671,0.992378950119019,0.979946792125702,0.161311224102974,-0.116974450647831,0.543249130249023,0.641828835010529,0.541235744953156,0.543272495269775,0.641359746456146,0.541768193244934,0.920122087001801,-0.229158028960228,0.31758788228035,0.503848373889923,0.778813242912292,-0.373613297939301,0.542528390884399,0.643356263637543,0.540144205093384,0.543249130249023,0.641828835010529,0.541235744953156,0.979946792125702,0.161311224102974,-0.116974450647831,0.62027508020401,0.517502665519714,0.589448750019073,0.642003774642944,0.567738354206085,0.515271246433258,0.627255618572235,0.659533083438873,0.414206027984619,0.711675465106964,0.456402987241745,0.534054636955261,0.565570831298828,0.538214027881622,0.624864220619202,0.62027508020401,0.517502665519714,0.589448750019073,0.711675465106964,0.456402987241745,0.534054636955261,0.606577038764954,0.428723156452179,0.669522881507874,0.565570831298828,0.538214027881622,0.624864220619202,0.606577038764954,0.428723156452179,0.669522881507874,0.415338099002838,0.571286678314209,0.707902371883392,0.500555813312531,0.602250099182129,0.621883153915405,
- 0.512137055397034,0.655834853649139,0.554613709449768,0.500555813312531,0.602250099182129,0.621883153915405,0.415338099002838,0.571286678314209,0.707902371883392,0.412794679403305,0.709282040596008,0.57141900062561,0.540616273880005,0.643726825714111,0.541617810726166,0.512137055397034,0.655834853649139,0.554613709449768,0.412794679403305,0.709282040596008,0.57141900062561,0.442054748535156,0.722086668014526,0.532145261764526,0.642003774642944,0.567738354206085,0.515271246433258,0.541580498218536,0.643726825714111,0.540653645992279,0.532123684883118,0.722086608409882,0.442080706357956,0.627255618572235,0.659533083438873,0.414206027984619,-0.0814272686839104,0.976472496986389,0.199677497148514,0.565570831298828,0.538214027881622,0.624864220619202,0.500555813312531,0.602250099182129,0.621883153915405,0.548158764839172,0.808000385761261,-0.216003313660622,-0.189825534820557,0.485872387886047,0.853167176246643,0.62027508020401,0.517502665519714,0.589448750019073,0.565570831298828,0.538214027881622,0.624864220619202,-0.0814272686839104,0.976472496986389,0.199677497148514,0.265940994024277,0.0371549613773823,0.963273048400879,0.642003774642944,0.567738354206085,0.515271246433258,0.62027508020401,0.517502665519714,0.589448750019073,-0.189825534820557,0.485872387886047,0.853167176246643,0.384113758802414,-0.082330159842968,0.919607698917389,0.541580498218536,0.643726825714111,0.540653645992279,0.642003774642944,0.567738354206085,0.515271246433258,0.265940994024277,0.0371549613773823,0.963273048400879,0.962757587432861,0.270260274410248,0.00756557285785675,0.512137055397034,0.655834853649139,0.554613709449768,0.540616273880005,0.643726825714111,0.541617810726166,0.919553637504578,-0.0823860540986061,0.384231328964233,0.548158764839172,0.808000385761261,-0.216003313660622,0.500555813312531,0.602250099182129,0.621883153915405,0.512137055397034,0.655834853649139,0.554613709449768,0.962757587432861,0.270260274410248,0.00756557285785675,0.563356161117554,0.632540285587311,0.531528532505035,0.559616506099701,0.660333752632141,0.500788033008575,
- 0.598769962787628,0.667949199676514,0.441948473453522,0.617280185222626,0.593010187149048,0.517014682292938,0.547519743442535,0.63127613067627,0.549283862113953,0.563356161117554,0.632540285587311,0.531528532505035,0.617280185222626,0.593010187149048,0.517014682292938,0.576471447944641,0.578981816768646,0.576594054698944,0.547519743442535,0.63127613067627,0.549283862113953,0.576471447944641,0.578981816768646,0.576594054698944,0.516982734203339,0.593055486679077,0.617263317108154,0.527781009674072,0.635878622531891,0.563121318817139,0.500464141368866,0.666388273239136,0.552686452865601,0.527781009674072,0.635878622531891,0.563121318817139,0.516982734203339,0.593055486679077,0.617263317108154,0.442001938819885,0.667896389961243,0.598789393901825,0.489743202924728,0.686289370059967,0.537734746932983,0.500464141368866,0.666388273239136,0.552686452865601,0.442001938819885,0.667896389961243,0.598789393901825,0.426341861486435,0.733044564723969,0.529979526996613,0.559616506099701,0.660333752632141,0.500788033008575,0.537712812423706,0.686289191246033,0.489767372608185,0.529928028583527,0.733051002025604,0.426394909620285,0.598769962787628,0.667949199676514,0.441948473453522,-0.0948135256767273,0.989439606666565,0.109634935855865,0.547519743442535,0.63127613067627,0.549283862113953,0.527781009674072,0.635878622531891,0.563121318817139,0.530188262462616,0.797594785690308,-0.28765082359314,-0.276157110929489,0.605735182762146,0.74620521068573,0.563356161117554,0.632540285587311,0.531528532505035,0.547519743442535,0.63127613067627,0.549283862113953,-0.0948135256767273,0.989439606666565,0.109634935855865,0.167511686682701,0.0302372314035892,0.985406279563904,0.559616506099701,0.660333752632141,0.500788033008575,0.563356161117554,0.632540285587311,0.531528532505035,-0.276157110929489,0.605735182762146,0.74620521068573,0.354992866516113,-0.149543657898903,0.922830820083618,0.537712812423706,0.686289191246033,0.489767372608185,0.559616506099701,0.660333752632141,0.500788033008575,0.167511686682701,0.0302372314035892,0.985406279563904,
- 0.973812222480774,0.222147107124329,-0.0483783110976219,0.500464141368866,0.666388273239136,0.552686452865601,0.489743202924728,0.686289370059967,0.537734746932983,0.922813534736633,-0.149539098143578,0.355040013790131,0.530188262462616,0.797594785690308,-0.28765082359314,0.527781009674072,0.635878622531891,0.563121318817139,0.500464141368866,0.666388273239136,0.552686452865601,0.973812222480774,0.222147107124329,-0.0483783110976219,0.529615342617035,0.649919807910919,0.545079708099365,0.534144401550293,0.639063954353333,0.553432166576386,0.565011382102966,0.695368647575378,0.444099843502045,0.630604326725006,0.610246121883392,0.479518294334412,0.536326169967651,0.653592467308044,0.534014225006104,0.529615342617035,0.649919807910919,0.545079708099365,0.630604326725006,0.610246121883392,0.479518294334412,0.588786244392395,0.553752422332764,0.588803112506866,0.536326169967651,0.653592467308044,0.534014225006104,0.588786244392395,0.553752422332764,0.588803112506866,0.495607197284698,0.596263468265533,0.631540536880493,0.547989428043365,0.647355556488037,0.5297532081604,0.553669989109039,0.635427892208099,0.538220167160034,0.547989428043365,0.647355556488037,0.5297532081604,0.495607197284698,0.596263468265533,0.631540536880493,0.445910692214966,0.666976511478424,0.596913814544678,0.553877592086792,0.631784796714783,0.54228001832962,0.553669989109039,0.635427892208099,0.538220167160034,0.445910692214966,0.666976511478424,0.596913814544678,0.441656053066254,0.722349643707275,0.532119274139404,0.534144401550293,0.639063954353333,0.553432166576386,0.542251348495483,0.631784975528717,0.553905487060547,0.532061576843262,0.722357451915741,0.441712826490402,0.565011382102966,0.695368647575378,0.444099843502045,-0.0356966145336628,0.987214088439941,0.155351683497429,0.536326169967651,0.653592467308044,0.534014225006104,0.547989428043365,0.647355556488037,0.5297532081604,0.548235774040222,0.807988405227661,-0.215852707624435,-0.205078840255737,0.628748595714569,0.750078678131104,0.529615342617035,0.649919807910919,0.545079708099365,
- 0.536326169967651,0.653592467308044,0.534014225006104,-0.0356966145336628,0.987214088439941,0.155351683497429,0.209366694092751,0.0910189971327782,0.973591923713684,0.534144401550293,0.639063954353333,0.553432166576386,0.529615342617035,0.649919807910919,0.545079708099365,-0.205078840255737,0.628748595714569,0.750078678131104,0.384145855903625,-0.0823307558894157,0.919594347476959,0.542251348495483,0.631784975528717,0.553905487060547,0.534144401550293,0.639063954353333,0.553432166576386,0.209366694092751,0.0910189971327782,0.973591923713684,0.962733924388886,0.270341068506241,0.00769621226936579,0.553669989109039,0.635427892208099,0.538220167160034,0.553877592086792,0.631784796714783,0.54228001832962,0.919534146785736,-0.0823691412806511,0.384281575679779,0.548235774040222,0.807988405227661,-0.215852707624435,0.547989428043365,0.647355556488037,0.5297532081604,0.553669989109039,0.635427892208099,0.538220167160034,0.962733924388886,0.270341068506241,0.00769621226936579,0.556043207645416,0.636051833629608,0.535027205944061,0.548216700553894,0.649236083030701,0.527210652828217,0.560696244239807,0.685053467750549,0.4651038646698,0.612608790397644,0.617715716362,0.493090122938156,0.55081969499588,0.629513084888458,0.548006415367126,0.556043207645416,0.636051833629608,0.535027205944061,0.612608790397644,0.617715716362,0.493090122938156,0.579504549503326,0.572989404201508,0.579532325267792,0.55081969499588,0.629513084888458,0.548006415367126,0.579504549503326,0.572989404201508,0.579532325267792,0.505779623985291,0.606648504734039,0.613322556018829,0.536066770553589,0.635163426399231,0.556057512760162,0.527205944061279,0.649228572845459,0.548229992389679,0.536066770553589,0.635163426399231,0.556057512760162,0.505779623985291,0.606648504734039,0.613322556018829,0.466478705406189,0.662595152854919,0.585973858833313,0.526752889156342,0.655784547328949,0.54081255197525,0.527205944061279,0.649228572845459,0.548229992389679,0.466478705406189,0.662595152854919,0.585973858833313,0.46322101354599,0.706642150878906,0.534867525100708,
- 0.548216700553894,0.649236083030701,0.527210652828217,0.540773272514343,0.655784666538239,0.526792943477631,0.534813940525055,0.706644415855408,0.46327942609787,0.560696244239807,0.685053467750549,0.4651038646698,0.750095725059509,0.628688097000122,-0.205201804637909,0.155319854617119,0.987222671508789,-0.0355990342795849,0.55081969499588,0.629513084888458,0.548006415367126,0.536066770553589,0.635163426399231,0.556057512760162,0.155319854617119,0.987222671508789,-0.0355990342795849,-0.215929165482521,0.807948648929596,0.54826432466507,0.556043207645416,0.636051833629608,0.535027205944061,0.55081969499588,0.629513084888458,0.548006415367126,-0.215929165482521,0.807948648929596,0.54826432466507,0.00762252602726221,0.270239055156708,0.96276319026947,0.548216700553894,0.649236083030701,0.527210652828217,0.556043207645416,0.636051833629608,0.535027205944061,0.00762252602726221,0.270239055156708,0.96276319026947,0.384118378162384,-0.0824024975299835,0.919599294662476,0.540773272514343,0.655784666538239,0.526792943477631,0.548216700553894,0.649236083030701,0.527210652828217,0.919585883617401,-0.0823998749256134,0.384151250123978,0.973597705364227,0.0908949226140976,0.209393471479416,0.527205944061279,0.649228572845459,0.548229992389679,0.526752889156342,0.655784547328949,0.54081255197525,0.973597705364227,0.0908949226140976,0.209393471479416,0.750095725059509,0.628688097000122,-0.205201804637909,0.536066770553589,0.635163426399231,0.556057512760162,0.527205944061279,0.649228572845459,0.548229992389679,-0.454484760761261,0.76606160402298,-0.454525232315063,-0.454484760761261,0.766061663627625,-0.454525232315063,-0.454511016607285,0.766061663627625,-0.45449897646904,-0.454495787620544,0.766061663627625,-0.45451420545578,-0.454454272985458,0.766061663627625,-0.454555660486221,-0.454490303993225,0.766061663627625,-0.454519748687744,0.650335848331451,0.584993183612823,0.484609484672546,0.588805437088013,0.688696980476379,0.423089563846588,0.536495327949524,0.801579475402832,-0.263900011777878,0.970684409141541,0.238517716526985,-0.0296826288104057,
- 0.609185516834259,0.533109605312347,0.587100625038147,0.650335848331451,0.584993183612823,0.484609484672546,0.970684409141541,0.238517716526985,-0.0296826288104057,0.700299918651581,-0.138117119669914,0.700359702110291,0.609185516834259,0.533109605312347,0.587100625038147,0.700299918651581,-0.138117119669914,0.700359702110291,0.0769373923540115,0.146130979061127,0.986268997192383,0.49291005730629,0.577554404735565,0.650746285915375,0.423096686601639,0.688697576522827,0.588799476623535,0.49291005730629,0.577554404735565,0.650746285915375,0.0769373923540115,0.146130979061127,0.986268997192383,-0.252390503883362,0.613875389099121,0.747967958450317,0.418714702129364,0.738257229328156,0.528823554515839,0.423096686601639,0.688697576522827,0.588799476623535,-0.252390503883362,0.613875389099121,0.747967958450317,-0.255529195070267,0.918489098548889,0.301799178123474,0.588805437088013,0.688696980476379,0.423089563846588,0.528798043727875,0.738260924816132,0.418740332126617,0.301865249872208,0.91846626996994,-0.25553286075592,0.536495327949524,0.801579475402832,-0.263900011777878,-0.45454078912735,0.766090035438538,-0.454421490430832,-0.454508811235428,0.766089975833893,-0.454453378915787,-0.454488098621368,0.766089975833893,-0.454474002122879,-0.454478114843369,0.766090035438538,-0.454484194517136,-0.454456657171249,0.766089975833893,-0.454505562782288,-0.454493492841721,0.766090035438538,-0.454468816518784,-0.0358544066548347,0.987224340438843,0.155250653624535,0.546702980995178,0.630479991436005,0.551008939743042,0.53319263458252,0.638615846633911,0.55486524105072,0.548166751861572,0.807966947555542,-0.216108173131943,-0.20522229373455,0.628712594509125,0.750069558620453,0.555102050304413,0.634529709815979,0.53780472278595,0.546702980995178,0.630479991436005,0.551008939743042,-0.0358544066548347,0.987224340438843,0.155250653624535,0.209316089749336,0.0910104289650917,0.97360360622406,0.550028681755066,0.646735787391663,0.528395116329193,0.555102050304413,0.634529709815979,0.53780472278595,-0.20522229373455,0.628712594509125,0.750069558620453,
- 0.384034007787704,-0.082412913441658,0.919633686542511,0.540827572345734,0.654836893081665,0.527914881706238,0.550028681755066,0.646735787391663,0.528395116329193,0.209316089749336,0.0910104289650917,0.97360360622406,0.962775588035584,0.270197331905365,0.00753513723611832,0.528148889541626,0.650811851024628,0.545438051223755,0.527856647968292,0.654836714267731,0.540884852409363,0.919578790664673,-0.082453265786171,0.384156733751297,0.548166751861572,0.807966947555542,-0.216108173131943,0.53319263458252,0.638615846633911,0.55486524105072,0.528148889541626,0.650811851024628,0.545438051223755,0.962775588035584,0.270197331905365,0.00753513723611832,0.53319263458252,0.638615846633911,0.55486524105072,0.546702980995178,0.630479991436005,0.551008939743042,0.609185516834259,0.533109605312347,0.587100625038147,0.49291005730629,0.577554404735565,0.650746285915375,0.546702980995178,0.630479991436005,0.551008939743042,0.555102050304413,0.634529709815979,0.53780472278595,0.650335848331451,0.584993183612823,0.484609484672546,0.609185516834259,0.533109605312347,0.587100625038147,0.555102050304413,0.634529709815979,0.53780472278595,0.550028681755066,0.646735787391663,0.528395116329193,0.588805437088013,0.688696980476379,0.423089563846588,0.650335848331451,0.584993183612823,0.484609484672546,0.550028681755066,0.646735787391663,0.528395116329193,0.540827572345734,0.654836893081665,0.527914881706238,0.528798043727875,0.738260924816132,0.418740332126617,0.588805437088013,0.688696980476379,0.423089563846588,0.527856647968292,0.654836714267731,0.540884852409363,0.528148889541626,0.650811851024628,0.545438051223755,0.423096686601639,0.688697576522827,0.588799476623535,0.418714702129364,0.738257229328156,0.528823554515839,0.528148889541626,0.650811851024628,0.545438051223755,0.53319263458252,0.638615846633911,0.55486524105072,0.49291005730629,0.577554404735565,0.650746285915375,0.423096686601639,0.688697576522827,0.588799476623535,0.546375453472137,0.538451015949249,0.641517221927643,0.654743313789368,0.532246530056,0.536679565906525,0.637749135494232,0.605529069900513,0.476036548614502,
- 0.597870707511902,0.435764521360397,0.672800123691559,0.51596873998642,0.638057291507721,0.571541130542755,0.546375453472137,0.538451015949249,0.641517221927643,0.597870707511902,0.435764521360397,0.672800123691559,0.524879038333893,0.579470038414001,0.623471319675446,0.51596873998642,0.638057291507721,0.571541130542755,0.524879038333893,0.579470038414001,0.623471319675446,0.509932100772858,0.610822379589081,0.605694055557251,0.539236903190613,0.64093804359436,0.546280145645142,0.537037670612335,0.645590126514435,0.542958498001099,0.539236903190613,0.64093804359436,0.546280145645142,0.509932100772858,0.610822379589081,0.605694055557251,0.47493714094162,0.660709500312805,0.581289768218994,0.536956489086151,0.646939098834991,0.541431069374084,0.537037670612335,0.645590126514435,0.542958498001099,0.47493714094162,0.660709500312805,0.581289768218994,0.472127437591553,0.699972093105316,0.535849690437317,0.654743313789368,0.532246530056,0.536679565906525,0.541390120983124,0.646939158439636,0.536997675895691,0.535764575004578,0.699976563453674,0.472217321395874,0.637749135494232,0.605529069900513,0.476036548614502,-0.171813994646072,0.975017428398132,0.14078725874424,0.51596873998642,0.638057291507721,0.571541130542755,0.539236903190613,0.64093804359436,0.546280145645142,0.521270871162415,0.791641891002655,-0.318715929985046,-0.283272832632065,0.429045259952545,0.857715964317322,0.546375453472137,0.538451015949249,0.641517221927643,0.51596873998642,0.638057291507721,0.571541130542755,-0.171813994646072,0.975017428398132,0.14078725874424,0.215779066085815,-0.0586934015154839,0.974676609039307,0.654743313789368,0.532246530056,0.536679565906525,0.546375453472137,0.538451015949249,0.641517221927643,-0.283272832632065,0.429045259952545,0.857715964317322,0.341781795024872,-0.178566962480545,0.922658681869507,0.541390120983124,0.646939158439636,0.536997675895691,0.654743313789368,0.532246530056,0.536679565906525,0.215779066085815,-0.0586934015154839,0.974676609039307,0.976952910423279,0.200604006648064,-0.0729457437992096,0.537037670612335,0.645590126514435,0.542958498001099,
- 0.536956489086151,0.646939098834991,0.541431069374084,0.922661483287811,-0.178518235683441,0.341799795627594,0.521270871162415,0.791641891002655,-0.318715929985046,0.539236903190613,0.64093804359436,0.546280145645142,0.537037670612335,0.645590126514435,0.542958498001099,0.976952910423279,0.200604006648064,-0.0729457437992096,0.584220707416534,0.622091054916382,0.521237909793854,0.570224404335022,0.67050713300705,0.474620163440704,0.643802165985107,0.682890295982361,0.34522408246994,0.693441033363342,0.533016383647919,0.484802216291428,0.556390583515167,0.613131165504456,0.560802757740021,0.584220707416534,0.622091054916382,0.521237909793854,0.693441033363342,0.533016383647919,0.484802216291428,0.613841831684113,0.496503859758377,0.61374443769455,0.556390583515167,0.613131165504456,0.560802757740021,0.613841831684113,0.496503859758377,0.61374443769455,0.484867662191391,0.533014535903931,0.693396687507629,0.513844192028046,0.628679811954498,0.583717405796051,0.474104672670364,0.680344820022583,0.558887898921967,0.513844192028046,0.628679811954498,0.583717405796051,0.484867662191391,0.533014535903931,0.693396687507629,0.345310568809509,0.682915449142456,0.643729090690613,0.460413873195648,0.708742737770081,0.534511685371399,0.474104672670364,0.680344820022583,0.558887898921967,0.345310568809509,0.682915449142456,0.643729090690613,0.321621477603912,0.797110319137573,0.511052668094635,0.570224404335022,0.67050713300705,0.474620163440704,0.534501433372498,0.70874285697937,0.460425704717636,0.511117875576019,0.797095894813538,0.321553647518158,0.643802165985107,0.682890295982361,0.34522408246994,-0.218124896287918,0.975859403610229,0.0109627479687333,0.556390583515167,0.613131165504456,0.560802757740021,0.513844192028046,0.628679811954498,0.583717405796051,0.482161045074463,0.760893940925598,-0.434236258268356,-0.421300828456879,0.545962929725647,0.724175453186035,0.584220707416534,0.622091054916382,0.521237909793854,0.556390583515167,0.613131165504456,0.560802757740021,-0.218124896287918,0.975859403610229,0.0109627479687333,
- 0.0757921934127808,-0.0989089235663414,0.99220597743988,0.570224404335022,0.67050713300705,0.474620163440704,0.584220707416534,0.622091054916382,0.521237909793854,-0.421300828456879,0.545962929725647,0.724175453186035,0.288932681083679,-0.285290271043777,0.913853049278259,0.534501433372498,0.70874285697937,0.460425704717636,0.570224404335022,0.67050713300705,0.474620163440704,0.0757921934127808,-0.0989089235663414,0.99220597743988,0.979239106178284,0.116038024425507,-0.166210919618607,0.474104672670364,0.680344820022583,0.558887898921967,0.460413873195648,0.708742737770081,0.534511685371399,0.913825631141663,-0.285340130329132,0.288970172405243,0.482161045074463,0.760893940925598,-0.434236258268356,0.513844192028046,0.628679811954498,0.583717405796051,0.474104672670364,0.680344820022583,0.558887898921967,0.979239106178284,0.116038024425507,-0.166210919618607,0.530081212520599,0.648001372814178,0.546907901763916,0.548412442207336,0.649541974067688,0.52662980556488,0.602384924888611,0.669305682182312,0.434928119182587,0.615358769893646,0.594470024108887,0.517628312110901,0.52955687046051,0.665451765060425,0.526064097881317,0.530081212520599,0.648001372814178,0.546907901763916,0.615358769893646,0.594470024108887,0.517628312110901,0.572945475578308,0.586036443710327,0.5729700922966,0.52955687046051,0.665451765060425,0.526064097881317,0.572945475578308,0.586036443710327,0.5729700922966,0.517603993415833,0.594499289989471,0.615350961685181,0.548867404460907,0.646241545677185,0.530204236507416,0.526575028896332,0.650909602642059,0.546841323375702,0.548867404460907,0.646241545677185,0.530204236507416,0.517603993415833,0.594499289989471,0.615350961685181,0.434941589832306,0.669315874576569,0.60236382484436,0.515262067317963,0.665844917297363,0.539588391780853,0.526575028896332,0.650909602642059,0.546841323375702,0.434941589832306,0.669315874576569,0.60236382484436,0.41777041554451,0.739777266979218,0.527444303035736,0.548412442207336,0.649541974067688,0.52662980556488,0.539570391178131,0.665844917297363,0.515280842781067,0.52739280462265,0.739782631397247,0.417826116085052,
- 0.602384924888611,0.669305682182312,0.434928119182587,0.00357272522523999,0.982708990573883,0.185122922062874,0.52955687046051,0.665451765060425,0.526064097881317,0.548867404460907,0.646241545677185,0.530204236507416,0.558520436286926,0.812381863594055,-0.167602926492691,-0.157363995909691,0.642057597637177,0.750332415103912,0.530081212520599,0.648001372814178,0.546907901763916,0.52955687046051,0.665451765060425,0.526064097881317,0.00357272522523999,0.982708990573883,0.185122922062874,0.245455503463745,0.136271014809608,0.959782183170319,0.548412442207336,0.649541974067688,0.52662980556488,0.530081212520599,0.648001372814178,0.546907901763916,-0.157363995909691,0.642057597637177,0.750332415103912,0.412089228630066,-0.012661824002862,0.911055505275726,0.539570391178131,0.665844917297363,0.515280842781067,0.548412442207336,0.649541974067688,0.52662980556488,0.245455503463745,0.136271014809608,0.959782183170319,0.963059723377228,0.223119840025902,0.150776490569115,0.526575028896332,0.650909602642059,0.546841323375702,0.515262067317963,0.665844917297363,0.539588391780853,0.911053836345673,-0.0126508921384811,0.412093490362167,0.558520436286926,0.812381863594055,-0.167602926492691,0.548867404460907,0.646241545677185,0.530204236507416,0.526575028896332,0.650909602642059,0.546841323375702,0.963059723377228,0.223119840025902,0.150776490569115,0.591157674789429,0.611312687397003,0.526145756244659,0.548609375953674,0.646119713783264,0.530619621276855,0.560680568218231,0.684117913246155,0.466497600078583,0.649978220462799,0.601337969303131,0.464672982692719,0.570454776287079,0.577610492706299,0.583907127380371,0.591157674789429,0.611312687397003,0.526145756244659,0.649978220462799,0.601337969303131,0.464672982692719,0.608233213424683,0.510012209415436,0.608226835727692,0.570454776287079,0.577610492706299,0.583907127380371,0.608233213424683,0.510012209415436,0.608226835727692,0.464704841375351,0.60133171081543,0.649961233139038,0.517529249191284,0.618923425674438,0.590844571590424,0.53046715259552,0.647826313972473,0.5467409491539,
- 0.517529249191284,0.618923425674438,0.590844571590424,0.464704841375351,0.60133171081543,0.649961233139038,0.466490179300308,0.684143722057343,0.560655355453491,0.550818979740143,0.634601593017578,0.54210638999939,0.53046715259552,0.647826313972473,0.5467409491539,0.466490179300308,0.684143722057343,0.560655355453491,0.487128704786301,0.688389241695404,0.537425339221954,0.548609375953674,0.646119713783264,0.530619621276855,0.542106091976166,0.634601533412933,0.550819337368011,0.53742527961731,0.688389539718628,0.48712819814682,0.560680568218231,0.684117913246155,0.466497600078583,-0.0357828475534916,0.987213969230652,0.155332192778587,0.570454776287079,0.577610492706299,0.583907127380371,0.517529249191284,0.618923425674438,0.590844571590424,0.548171401023865,0.807965040206909,-0.216103225946426,-0.205133184790611,0.628705441951752,0.750099956989288,0.591157674789429,0.611312687397003,0.526145756244659,0.570454776287079,0.577610492706299,0.583907127380371,-0.0357828475534916,0.987213969230652,0.155332192778587,0.20940500497818,0.0910237804055214,0.973583221435547,0.548609375953674,0.646119713783264,0.530619621276855,0.591157674789429,0.611312687397003,0.526145756244659,-0.205133184790611,0.628705441951752,0.750099956989288,0.384116053581238,-0.0824114456772804,0.919599592685699,0.542106091976166,0.634601533412933,0.550819337368011,0.548609375953674,0.646119713783264,0.530619621276855,0.20940500497818,0.0910237804055214,0.973583221435547,0.962800979614258,0.270110458135605,0.00738728791475296,0.53046715259552,0.647826313972473,0.5467409491539,0.550818979740143,0.634601593017578,0.54210638999939,0.919545471668243,-0.0824875459074974,0.384229302406311,0.548171401023865,0.807965040206909,-0.216103225946426,0.517529249191284,0.618923425674438,0.590844571590424,0.53046715259552,0.647826313972473,0.5467409491539,0.962800979614258,0.270110458135605,0.00738728791475296,0.572035253047943,0.623774349689484,0.532617509365082,0.560474872589111,0.651588618755341,0.511175394058228,0.576385915279388,0.725184142589569,0.376679420471191,
- 0.684798181056976,0.584567427635193,0.43512350320816,0.554863691329956,0.614525556564331,0.560789287090302,0.572035253047943,0.623774349689484,0.532617509365082,0.684798181056976,0.584567427635193,0.43512350320816,0.615903973579407,0.491177886724472,0.615959942340851,0.554863691329956,0.614525556564331,0.560789287090302,0.615903973579407,0.491177886724472,0.615959942340851,0.461736440658569,0.56154191493988,0.686636805534363,0.525093019008636,0.630432307720184,0.571692645549774,0.51056981086731,0.660849034786224,0.550088226795197,0.525093019008636,0.630432307720184,0.571692645549774,0.461736440658569,0.56154191493988,0.686636805534363,0.37952321767807,0.678298771381378,0.629184424877167,0.509932458400726,0.669985234737396,0.539526522159576,0.51056981086731,0.660849034786224,0.550088226795197,0.37952321767807,0.678298771381378,0.629184424877167,0.371973127126694,0.768175542354584,0.521097242832184,0.560474872589111,0.651588618755341,0.511175394058228,0.53947651386261,0.669985353946686,0.509985029697418,0.52101719379425,0.768183887004852,0.372068107128143,0.576385915279388,0.725184142589569,0.376679420471191,-0.144658640027046,0.986980259418488,0.0703131854534149,0.554863691329956,0.614525556564331,0.560789287090302,0.525093019008636,0.630432307720184,0.571692645549774,0.512494504451752,0.785243034362793,-0.347480565309525,-0.335404247045517,0.583471298217773,0.73963862657547,0.572035253047943,0.623774349689484,0.532617509365082,0.554863691329956,0.614525556564331,0.560789287090302,-0.144658640027046,0.986980259418488,0.0703131854534149,0.131123661994934,-0.0215769857168198,0.991131186485291,0.560474872589111,0.651588618755341,0.511175394058228,0.572035253047943,0.623774349689484,0.532617509365082,-0.335404247045517,0.583471298217773,0.73963862657547,0.329130619764328,-0.205109044909477,0.921739280223846,0.53947651386261,0.669985353946686,0.509985029697418,0.560474872589111,0.651588618755341,0.511175394058228,0.131123661994934,-0.0215769857168198,0.991131186485291,0.978949248790741,0.180144295096397,-0.0959498137235641,
- 0.51056981086731,0.660849034786224,0.550088226795197,0.509932458400726,0.669985234737396,0.539526522159576,0.921712636947632,-0.205120071768761,0.32919842004776,0.512494504451752,0.785243034362793,-0.347480565309525,0.525093019008636,0.630432307720184,0.571692645549774,0.51056981086731,0.660849034786224,0.550088226795197,0.978949248790741,0.180144295096397,-0.0959498137235641,0.559292197227478,0.529598236083984,0.637744426727295,0.65000194311142,0.53177273273468,0.542876839637756,0.639331638813019,0.591872870922089,0.49085807800293,0.616714119911194,0.419155418872833,0.666312575340271,0.523654997348785,0.612074434757233,0.592579483985901,0.559292197227478,0.529598236083984,0.637744426727295,0.616714119911194,0.419155418872833,0.666312575340271,0.541856467723846,0.539641439914703,0.644343614578247,0.523654997348785,0.612074434757233,0.592579483985901,0.541856467723846,0.539641439914703,0.644343614578247,0.486236661672592,0.613628089427948,0.622120916843414,0.535553514957428,0.630271017551422,0.562086284160614,0.538263380527496,0.643714487552643,0.543970823287964,0.535553514957428,0.630271017551422,0.562086284160614,0.486236661672592,0.613628089427948,0.622120916843414,0.488380968570709,0.671376585960388,0.557438433170319,0.537280976772308,0.646416664123535,0.541733026504517,0.538263380527496,0.643714487552643,0.543970823287964,0.488380968570709,0.671376585960388,0.557438433170319,0.495153844356537,0.681949615478516,0.538300454616547,0.65000194311142,0.53177273273468,0.542876839637756,0.541683673858643,0.64641660451889,0.537330865859985,0.5381840467453,0.681955099105835,0.495272934436798,0.639331638813019,0.591872870922089,0.49085807800293,-0.118953809142113,0.992065131664276,-0.0407051853835583,0.523654997348785,0.612074434757233,0.592579483985901,0.535553514957428,0.630271017551422,0.562086284160614,0.741148173809052,0.604025363922119,-0.29300644993782,-0.267445176839828,0.470533758401871,0.840875267982483,0.559292197227478,0.529598236083984,0.637744426727295,0.523654997348785,0.612074434757233,0.592579483985901,-0.118953809142113,0.992065131664276,-0.0407051853835583,
- 0.278328388929367,0.11592910438776,0.953464150428772,0.65000194311142,0.53177273273468,0.542876839637756,0.559292197227478,0.529598236083984,0.637744426727295,-0.267445176839828,0.470533758401871,0.840875267982483,0.410490274429321,-0.0168816410005093,0.91170871257782,0.541683673858643,0.64641660451889,0.537330865859985,0.65000194311142,0.53177273273468,0.542876839637756,0.278328388929367,0.11592910438776,0.953464150428772,0.96114444732666,0.164928659796715,0.221359178423882,0.538263380527496,0.643714487552643,0.543970823287964,0.537280976772308,0.646416664123535,0.541733026504517,0.911693930625916,-0.0168393366038799,0.410524904727936,0.741148173809052,0.604025363922119,-0.29300644993782,0.535553514957428,0.630271017551422,0.562086284160614,0.538263380527496,0.643714487552643,0.543970823287964,0.96114444732666,0.164928659796715,0.221359178423882,0.526870429515839,0.649369418621063,0.548385858535767,0.549948871135712,0.651027798652649,0.523181736469269,0.611434161663055,0.672478675842285,0.417038142681122,0.65147078037262,0.567340314388275,0.503697156906128,0.525722742080688,0.66873174905777,0.525750398635864,0.526870429515839,0.649369418621063,0.548385858535767,0.65147078037262,0.567340314388275,0.503697156906128,0.596961319446564,0.535851061344147,0.597076892852783,0.525722742080688,0.66873174905777,0.525750398635864,0.596961319446564,0.535851061344147,0.597076892852783,0.503669679164886,0.567320704460144,0.65150910615921,0.548406541347504,0.64934903383255,0.526873886585236,0.523153781890869,0.651038765907288,0.549962401390076,0.548406541347504,0.64934903383255,0.526873886585236,0.503669679164886,0.567320704460144,0.65150910615921,0.416963636875153,0.672456026077271,0.611509799957275,0.501325488090515,0.677008390426636,0.538825035095215,0.523153781890869,0.651038765907288,0.549962401390076,0.416963636875153,0.672456026077271,0.611509799957275,0.407850414514542,0.745485544204712,0.527171075344086,0.549948871135712,0.651027798652649,0.523181736469269,0.538843750953674,0.677009344100952,0.501304030418396,0.527161240577698,0.745487928390503,0.407858818769455,
- 0.611434161663055,0.672478675842285,0.417038142681122,-0.149000748991966,0.97756415605545,-0.148886248469353,0.525722742080688,0.66873174905777,0.525750398635864,0.548406541347504,0.64934903383255,0.526873886585236,0.722527325153351,0.548693180084229,-0.420582979917526,-0.420340955257416,0.548843264579773,0.722554266452789,0.526870429515839,0.649369418621063,0.548385858535767,0.525722742080688,0.66873174905777,0.525750398635864,-0.149000748991966,0.97756415605545,-0.148886248469353,0.16176925599575,0.0307448096573353,0.986349582672119,0.549948871135712,0.651027798652649,0.523181736469269,0.526870429515839,0.649369418621063,0.548385858535767,-0.420340955257416,0.548843264579773,0.722554266452789,0.386875092983246,-0.076428048312664,0.918959438800812,0.538843750953674,0.677009344100952,0.501304030418396,0.549948871135712,0.651027798652649,0.523181736469269,0.16176925599575,0.0307448096573353,0.986349582672119,0.986379861831665,0.0305480249226093,0.161622479557991,0.523153781890869,0.651038765907288,0.549962401390076,0.501325488090515,0.677008390426636,0.538825035095215,0.919005453586578,-0.0764329060912132,0.386764973402023,0.722527325153351,0.548693180084229,-0.420582979917526,0.548406541347504,0.64934903383255,0.526873886585236,0.523153781890869,0.651038765907288,0.549962401390076,0.986379861831665,0.0305480249226093,0.161622479557991,0.573384463787079,0.622922658920288,0.532163143157959,0.561313927173615,0.651957869529724,0.509782075881958,0.564179241657257,0.69328385591507,0.448396503925323,0.626966953277588,0.611833810806274,0.482257068157196,0.55543053150177,0.613247692584991,0.561626434326172,0.573384463787079,0.622922658920288,0.532163143157959,0.626966953277588,0.611833810806274,0.482257068157196,0.586978852748871,0.557618081569672,0.58695662021637,0.55543053150177,0.613247692584991,0.561626434326172,0.586978852748871,0.557618081569672,0.58695662021637,0.497629135847092,0.598379850387573,0.627938568592072,0.524362802505493,0.629839956760406,0.573014259338379,0.50918447971344,0.661628484725952,0.550435304641724,
- 0.524362802505493,0.629839956760406,0.573014259338379,0.497629135847092,0.598379850387573,0.627938568592072,0.450044274330139,0.666134476661682,0.594747841358185,0.508486688137054,0.671174049377441,0.539413392543793,0.50918447971344,0.661628484725952,0.550435304641724,0.450044274330139,0.666134476661682,0.594747841358185,0.445977449417114,0.719244480133057,0.532720863819122,0.561313927173615,0.651957869529724,0.509782075881958,0.539414644241333,0.671172857284546,0.508486866950989,0.532739698886871,0.719244122505188,0.445955574512482,0.564179241657257,0.69328385591507,0.448396503925323,-0.035785399377346,0.987212896347046,0.155338555574417,0.55543053150177,0.613247692584991,0.561626434326172,0.524362802505493,0.629839956760406,0.573014259338379,0.548171103000641,0.807966411113739,-0.21609890460968,-0.205132663249969,0.628727912902832,0.750081121921539,0.573384463787079,0.622922658920288,0.532163143157959,0.55543053150177,0.613247692584991,0.561626434326172,-0.035785399377346,0.987212896347046,0.155338555574417,0.209335565567017,0.0909713953733444,0.973603010177612,0.561313927173615,0.651957869529724,0.509782075881958,0.573384463787079,0.622922658920288,0.532163143157959,-0.205132663249969,0.628727912902832,0.750081121921539,0.384212225675583,-0.0824010744690895,0.919560313224792,0.539414644241333,0.671172857284546,0.508486866950989,0.561313927173615,0.651957869529724,0.509782075881958,0.209335565567017,0.0909713953733444,0.973603010177612,0.96277129650116,0.270211040973663,0.00757517665624619,0.50918447971344,0.661628484725952,0.550435304641724,0.508486688137054,0.671174049377441,0.539413392543793,0.919557809829712,-0.0823511555790901,0.384228944778442,0.548171103000641,0.807966411113739,-0.21609890460968,0.524362802505493,0.629839956760406,0.573014259338379,0.50918447971344,0.661628484725952,0.550435304641724,0.96277129650116,0.270211040973663,0.00757517665624619,0.566283941268921,0.627484023571014,0.53440272808075,0.552420914173126,0.647881388664246,0.524481475353241,0.564482152462006,0.693893134593964,0.447070717811584,
- 0.635355114936829,0.608151614665985,0.47589448094368,0.553947150707245,0.616584837436676,0.559433400630951,0.566283941268921,0.627484023571014,0.53440272808075,0.635355114936829,0.608151614665985,0.47589448094368,0.593081772327423,0.54446929693222,0.593133330345154,0.553947150707245,0.616584837436676,0.559433400630951,0.593081772327423,0.54446929693222,0.593133330345154,0.47589322924614,0.608187437057495,0.635321795940399,0.530155301094055,0.631262481212616,0.566076815128326,0.524320662021637,0.650513410568237,0.549472630023956,0.530155301094055,0.631262481212616,0.566076815128326,0.47589322924614,0.608187437057495,0.635321795940399,0.447111040353775,0.693840324878693,0.564515173435211,0.527674973011017,0.655009031295776,0.540853381156921,0.524320662021637,0.650513410568237,0.549472630023956,0.447111040353775,0.693840324878693,0.564515173435211,0.448988974094391,0.717072904109955,0.533118546009064,0.552420914173126,0.647881388664246,0.524481475353241,0.540811777114868,0.655009269714355,0.527717232704163,0.533049643039703,0.717078804969788,0.449061453342438,0.564482152462006,0.693893134593964,0.447070717811584,-0.14470961689949,0.986969709396362,0.0703562423586845,0.553947150707245,0.616584837436676,0.559433400630951,0.530155301094055,0.631262481212616,0.566076815128326,0.512453317642212,0.785289466381073,-0.347436547279358,-0.335342824459076,0.583530068397522,0.739620089530945,0.566283941268921,0.627484023571014,0.53440272808075,0.553947150707245,0.616584837436676,0.559433400630951,-0.14470961689949,0.986969709396362,0.0703562423586845,0.131150707602501,-0.0215502232313156,0.991128206253052,0.552420914173126,0.647881388664246,0.524481475353241,0.566283941268921,0.627484023571014,0.53440272808075,-0.335342824459076,0.583530068397522,0.739620089530945,0.329116404056549,-0.205062210559845,0.921754777431488,0.540811777114868,0.655009269714355,0.527717232704163,0.552420914173126,0.647881388664246,0.524481475353241,0.131150707602501,-0.0215502232313156,0.991128206253052,0.978939473628998,0.180217742919922,-0.0959118008613586,
- 0.524320662021637,0.650513410568237,0.549472630023956,0.527674973011017,0.655009031295776,0.540853381156921,0.921725392341614,-0.20509435236454,0.329179048538208,0.512453317642212,0.785289466381073,-0.347436547279358,0.530155301094055,0.631262481212616,0.566076815128326,0.524320662021637,0.650513410568237,0.549472630023956,0.978939473628998,0.180217742919922,-0.0959118008613586,0.540145874023438,0.643655896186829,0.542171239852905,0.540725290775299,0.642285764217377,0.543217480182648,0.562938511371613,0.690423965454102,0.454329133033752,0.621904134750366,0.613917529582977,0.486148625612259,0.54102236032486,0.644147753715515,0.540711224079132,0.540145874023438,0.643655896186829,0.542171239852905,0.621904134750366,0.613917529582977,0.486148625612259,0.584327399730682,0.563107073307037,0.584356009960175,0.54102236032486,0.644147753715515,0.540711224079132,0.584327399730682,0.563107073307037,0.584356009960175,0.500586807727814,0.601301729679108,0.622775435447693,0.5425044298172,0.643360376358032,0.540163338184357,0.54323935508728,0.641827821731567,0.541246712207794,0.5425044298172,0.643360376358032,0.540163338184357,0.500586807727814,0.601301729679108,0.622775435447693,0.455897450447083,0.66491174697876,0.591650247573853,0.543286204338074,0.641347467899323,0.541768908500671,0.54323935508728,0.641827821731567,0.541246712207794,0.455897450447083,0.66491174697876,0.591650247573853,0.452174335718155,0.714807271957397,0.533468842506409,0.540725290775299,0.642285764217377,0.543217480182648,0.541710376739502,0.641347467899323,0.543344616889954,0.533400535583496,0.714813590049744,0.452244877815247,0.562938511371613,0.690423965454102,0.454329133033752,-0.166595503687859,0.984608113765717,0.0528472475707531,0.54102236032486,0.644147753715515,0.540711224079132,0.5425044298172,0.643360376358032,0.540163338184357,0.503914177417755,0.778777360916138,-0.373599141836166,-0.361084312200546,0.572937726974487,0.73577207326889,0.540145874023438,0.643655896186829,0.542171239852905,0.54102236032486,0.644147753715515,0.540711224079132,-0.166595503687859,0.984608113765717,0.0528472475707531,
- 0.11488701403141,-0.0444905981421471,0.992381811141968,0.540725290775299,0.642285764217377,0.543217480182648,0.540145874023438,0.643655896186829,0.542171239852905,-0.361084312200546,0.572937726974487,0.73577207326889,0.317325532436371,-0.229237958788872,0.92019259929657,0.541710376739502,0.641347467899323,0.543344616889954,0.540725290775299,0.642285764217377,0.543217480182648,0.11488701403141,-0.0444905981421471,0.992381811141968,0.979963541030884,0.161258056759834,-0.116907432675362,0.54323935508728,0.641827821731567,0.541246712207794,0.543286204338074,0.641347467899323,0.541768908500671,0.920129776000977,-0.229267418384552,0.317486584186554,0.503914177417755,0.778777360916138,-0.373599141836166,0.5425044298172,0.643360376358032,0.540163338184357,0.54323935508728,0.641827821731567,0.541246712207794,0.979963541030884,0.161258056759834,-0.116907432675362,0.620258092880249,0.517560064792633,0.589416265487671,0.642023622989655,0.567775070667267,0.515205919742584,0.627256095409393,0.659598410129547,0.414101243019104,0.711684703826904,0.45638108253479,0.534061074256897,0.565520405769348,0.538224816322327,0.62490051984787,0.620258092880249,0.517560064792633,0.589416265487671,0.711684703826904,0.45638108253479,0.534061074256897,0.606573462486267,0.42874401807785,0.669512689113617,0.565520405769348,0.538224816322327,0.62490051984787,0.606573462486267,0.42874401807785,0.669512689113617,0.415318787097931,0.571310758590698,0.707894384860992,0.500572144985199,0.602247893810272,0.621872246265411,0.512157678604126,0.655849874019623,0.554576814174652,0.500572144985199,0.602247893810272,0.621872246265411,0.415318787097931,0.571310758590698,0.707894384860992,0.412812173366547,0.709318339824677,0.571361184120178,0.540586888790131,0.643739223480225,0.541632473468781,0.512157678604126,0.655849874019623,0.554576814174652,0.412812173366547,0.709318339824677,0.571361184120178,0.441932410001755,0.722124993801117,0.53219473361969,0.642023622989655,0.567775070667267,0.515205919742584,0.541577398777008,0.643739223480225,0.540642023086548,0.53204345703125,0.722138404846191,0.442092657089233,
- 0.627256095409393,0.659598410129547,0.414101243019104,-0.0814190879464149,0.976483941078186,0.199624747037888,0.565520405769348,0.538224816322327,0.62490051984787,0.500572144985199,0.602247893810272,0.621872246265411,0.548219263553619,0.807951807975769,-0.216031312942505,-0.190007448196411,0.485939979553223,0.853088319301605,0.620258092880249,0.517560064792633,0.589416265487671,0.565520405769348,0.538224816322327,0.62490051984787,-0.0814190879464149,0.976483941078186,0.199624747037888,0.265852332115173,0.0368156507611275,0.963310539722443,0.642023622989655,0.567775070667267,0.515205919742584,0.620258092880249,0.517560064792633,0.589416265487671,-0.190007448196411,0.485939979553223,0.853088319301605,0.384042620658875,-0.0824835151433945,0.919623672962189,0.541577398777008,0.643739223480225,0.540642023086548,0.642023622989655,0.567775070667267,0.515205919742584,0.265852332115173,0.0368156507611275,0.963310539722443,0.962783694267273,0.270169705152512,0.00748537573963404,0.512157678604126,0.655849874019623,0.554576814174652,0.540586888790131,0.643739223480225,0.541632473468781,0.919573187828064,-0.0825425013899803,0.384150832891464,0.548219263553619,0.807951807975769,-0.216031312942505,0.500572144985199,0.602247893810272,0.621872246265411,0.512157678604126,0.655849874019623,0.554576814174652,0.962783694267273,0.270169705152512,0.00748537573963404,0.563374519348145,0.632508754730225,0.531546711921692,0.55961811542511,0.660348892211914,0.500766456127167,0.598791658878326,0.667939424514771,0.441933870315552,0.617303371429443,0.593001067638397,0.516997396945953,0.547513067722321,0.631291270256042,0.549273014068604,0.563374519348145,0.632508754730225,0.531546711921692,0.617303371429443,0.593001067638397,0.516997396945953,0.576492130756378,0.57899284362793,0.576562345027924,0.547513067722321,0.631291270256042,0.549273014068604,0.576492130756378,0.57899284362793,0.576562345027924,0.516977787017822,0.593070209026337,0.617253422737122,0.527816593647003,0.635861873626709,0.563106834888458,0.500467717647552,0.666393995285034,0.552676439285278,
- 0.527816593647003,0.635861873626709,0.563106834888458,0.516977787017822,0.593070209026337,0.617253422737122,0.441983550786972,0.667911291122437,0.598786354064941,0.48975670337677,0.686295330524445,0.537714838981628,0.500467717647552,0.666393995285034,0.552676439285278,0.441983550786972,0.667911291122437,0.598786354064941,0.426333487033844,0.733053088188171,0.529974520206451,0.55961811542511,0.660348892211914,0.500766456127167,0.537694752216339,0.686295449733734,0.489778488874435,0.529927968978882,0.733058393001556,0.426382213830948,0.598791658878326,0.667939424514771,0.441933870315552,-0.0948332920670509,0.989436149597168,0.109649278223515,0.547513067722321,0.631291270256042,0.549273014068604,0.527816593647003,0.635861873626709,0.563106834888458,0.530138850212097,0.797577917575836,-0.28778874874115,-0.276168763637543,0.605731546878815,0.7462038397789,0.563374519348145,0.632508754730225,0.531546711921692,0.547513067722321,0.631291270256042,0.549273014068604,-0.0948332920670509,0.989436149597168,0.109649278223515,0.167482495307922,0.0302485153079033,0.985410928726196,0.55961811542511,0.660348892211914,0.500766456127167,0.563374519348145,0.632508754730225,0.531546711921692,-0.276168763637543,0.605731546878815,0.7462038397789,0.354894399642944,-0.149559155106544,0.922866225242615,0.537694752216339,0.686295449733734,0.489778488874435,0.55961811542511,0.660348892211914,0.500766456127167,0.167482495307922,0.0302485153079033,0.985410928726196,0.973836421966553,0.221986621618271,-0.048626609146595,0.500467717647552,0.666393995285034,0.552676439285278,0.48975670337677,0.686295330524445,0.537714838981628,0.922806918621063,-0.149638965725899,0.355015009641647,0.530138850212097,0.797577917575836,-0.28778874874115,0.527816593647003,0.635861873626709,0.563106834888458,0.500467717647552,0.666393995285034,0.552676439285278,0.973836421966553,0.221986621618271,-0.048626609146595,0.52959406375885,0.649935245513916,0.545081973075867,0.534124076366425,0.63903546333313,0.553484737873077,0.564996242523193,0.695358514785767,0.44413498044014,
- 0.630624651908875,0.610240519046783,0.479498773813248,0.536341071128845,0.653566777706146,0.534030616283417,0.52959406375885,0.649935245513916,0.545081973075867,0.630624651908875,0.610240519046783,0.479498773813248,0.588813364505768,0.55367648601532,0.588847398757935,0.536341071128845,0.653566777706146,0.534030616283417,0.588813364505768,0.55367648601532,0.588847398757935,0.495534598827362,0.596208453178406,0.631649374961853,0.547960162162781,0.647343456745148,0.529798328876495,0.553638339042664,0.635450303554535,0.538226246833801,0.547960162162781,0.647343456745148,0.529798328876495,0.495534598827362,0.596208453178406,0.631649374961853,0.445808589458466,0.666993975639343,0.596970558166504,0.553869068622589,0.631777942180634,0.542296767234802,0.553638339042664,0.635450303554535,0.538226246833801,0.445808589458466,0.666993975639343,0.596970558166504,0.441658735275269,0.722349047660828,0.532117962837219,0.534124076366425,0.63903546333313,0.553484737873077,0.54223644733429,0.631776869297028,0.553929328918457,0.532054007053375,0.722351014614105,0.441732406616211,0.564996242523193,0.695358514785767,0.44413498044014,-0.0359338410198689,0.987231016159058,0.155189782381058,0.536341071128845,0.653566777706146,0.534030616283417,0.547960162162781,0.647343456745148,0.529798328876495,0.548118650913239,0.807931542396545,-0.216362118721008,-0.205328702926636,0.628640234470367,0.750101149082184,0.52959406375885,0.649935245513916,0.545081973075867,0.536341071128845,0.653566777706146,0.534030616283417,-0.0359338410198689,0.987231016159058,0.155189782381058,0.209257706999779,0.0908493921160698,0.973631203174591,0.534124076366425,0.63903546333313,0.553484737873077,0.52959406375885,0.649935245513916,0.545081973075867,-0.205328702926636,0.628640234470367,0.750101149082184,0.383963704109192,-0.0824604257941246,0.919658780097961,0.54223644733429,0.631776869297028,0.553929328918457,0.534124076366425,0.63903546333313,0.553484737873077,0.209257706999779,0.0908493921160698,0.973631203174591,0.962820172309875,0.270043611526489,0.00734276417642832,
- 0.553638339042664,0.635450303554535,0.538226246833801,0.553869068622589,0.631777942180634,0.542296767234802,0.919581294059753,-0.0825669690966606,0.384126394987106,0.548118650913239,0.807931542396545,-0.216362118721008,0.547960162162781,0.647343456745148,0.529798328876495,0.553638339042664,0.635450303554535,0.538226246833801,0.962820172309875,0.270043611526489,0.00734276417642832,0.556052446365356,0.636073112487793,0.534992158412933,0.548233211040497,0.649264216423035,0.527158856391907,0.560714721679688,0.685078382492065,0.465044856071472,0.612620651721954,0.61772632598877,0.493062019348145,0.550809741020203,0.629496991634369,0.548034965991974,0.556052446365356,0.636073112487793,0.534992158412933,0.612620651721954,0.61772632598877,0.493062019348145,0.579494833946228,0.572970926761627,0.579560160636902,0.550809741020203,0.629496991634369,0.548034965991974,0.579494833946228,0.572970926761627,0.579560160636902,0.50573992729187,0.606633841991425,0.613369822502136,0.536032259464264,0.635147750377655,0.556108593940735,0.527171552181244,0.649236738681793,0.54825347661972,0.536032259464264,0.635147750377655,0.556108593940735,0.50573992729187,0.606633841991425,0.613369822502136,0.466447770595551,0.662605702877045,0.58598655462265,0.526753544807434,0.655790388584137,0.540804743766785,0.527171552181244,0.649236738681793,0.54825347661972,0.466447770595551,0.662605702877045,0.58598655462265,0.463191986083984,0.706663131713867,0.534864902496338,0.548233211040497,0.649264216423035,0.527158856391907,0.540787577629089,0.655790507793427,0.526771008968353,0.534745693206787,0.706671357154846,0.463317155838013,0.560714721679688,0.685078382492065,0.465044856071472,0.750066637992859,0.62874311208725,-0.205139368772507,0.155264243483543,0.987227082252502,-0.0357187204062939,0.550809741020203,0.629496991634369,0.548034965991974,0.536032259464264,0.635147750377655,0.556108593940735,0.155264243483543,0.987227082252502,-0.0357187204062939,-0.215919822454453,0.807955324649811,0.548258125782013,0.556052446365356,0.636073112487793,0.534992158412933,
- 0.550809741020203,0.629496991634369,0.548034965991974,-0.215919822454453,0.807955324649811,0.548258125782013,0.00742564350366592,0.270250529050827,0.962761402130127,0.548233211040497,0.649264216423035,0.527158856391907,0.556052446365356,0.636073112487793,0.534992158412933,0.00742564350366592,0.270250529050827,0.962761402130127,0.384181678295136,-0.0824252665042877,0.919570922851563,0.540787577629089,0.655790507793427,0.526771008968353,0.548233211040497,0.649264216423035,0.527158856391907,0.919582366943359,-0.0824284553527832,0.384153634309769,0.973567664623261,0.0910428762435913,0.209468975663185,0.527171552181244,0.649236738681793,0.54825347661972,0.526753544807434,0.655790388584137,0.540804743766785,0.973567664623261,0.0910428762435913,0.209468975663185,0.750066637992859,0.62874311208725,-0.205139368772507,0.536032259464264,0.635147750377655,0.556108593940735,0.527171552181244,0.649236738681793,0.54825347661972,-0.454497009515762,0.766067802906036,-0.454502552747726,-0.454497069120407,0.766067743301392,-0.454502612352371,-0.454501956701279,0.766067862510681,-0.454497635364532,-0.454504460096359,0.766067743301392,-0.454495221376419,-0.454504460096359,0.766067743301392,-0.454495221376419,-0.45449960231781,0.766067862510681,-0.454500168561935,-0.122852072119713,-0.0709002315998077,-0.989889144897461,-0.127153143286705,0.073543980717659,-0.989152848720551,-0.936687350273132,0.324489235877991,-0.131619095802307,-0.749357581138611,-0.648943066596985,-0.131666943430901,5.1314513257239e-005,-0.13931331038475,-0.990248382091522,-0.122852072119713,-0.0709002315998077,-0.989889144897461,-0.749357581138611,-0.648943066596985,-0.131666943430901,-1.99196110770572e-005,-0.990982711315155,-0.133990302681923,5.1314513257239e-005,-0.13931331038475,-0.990248382091522,-1.99196110770572e-005,-0.990982711315155,-0.133990302681923,0.749348402023315,-0.648969709873199,-0.131587535142899,0.122867673635483,-0.0708724036812782,-0.98988926410675,0.127179309725761,0.07349793612957,-0.989152908325195,0.122867673635483,-0.0708724036812782,-0.98988926410675,
- 0.749348402023315,-0.648969709873199,-0.131587535142899,0.936696946620941,0.324503809213638,-0.13151553273201,0.0859344229102135,0.148852676153183,-0.985118329524994,0.127179309725761,0.07349793612957,-0.989152908325195,0.936696946620941,0.324503809213638,-0.13151553273201,0.496575981378555,0.860185742378235,-0.11615888774395,-0.127153143286705,0.073543980717659,-0.989152848720551,-0.0858752802014351,0.148856118321419,-0.985122978687286,-0.496606677770615,0.860160112380981,-0.116217285394669,-0.936687350273132,0.324489235877991,-0.131619095802307,2.01686743821483e-005,0.879349648952484,-0.476176828145981,1.8656852262211e-005,0.0345337316393852,-0.999403536319733,-0.0187320187687874,0.0107736466452479,-0.99976658821106,-0.802758693695068,0.281254887580872,-0.525808095932007,0.802757620811462,0.281242430210114,-0.52581650018692,0.0187322925776243,0.010773416608572,-0.999766528606415,1.8656852262211e-005,0.0345337316393852,-0.999403536319733,2.01686743821483e-005,0.879349648952484,-0.476176828145981,0.577247083187103,-0.493069797754288,-0.650897860527039,-0.00753300357609987,0.00439085904508829,-0.999961972236633,0.0187322925776243,0.010773416608572,-0.999766528606415,0.802757620811462,0.281242430210114,-0.52581650018692,0.372296959161758,-0.644867777824402,-0.66748833656311,-0.0157284885644913,0.0272425264120102,-0.99950510263443,-0.00753300357609987,0.00439085904508829,-0.999961972236633,0.577247083187103,-0.493069797754288,-0.650897860527039,-0.577229797840118,-0.493082910776138,-0.650903224945068,0.00754415011033416,0.00437695160508156,-0.999962031841278,0.0157268773764372,0.0272423811256886,-0.999505221843719,-0.372260391712189,-0.644880175590515,-0.667496681213379,-0.802758693695068,0.281254887580872,-0.525808095932007,-0.0187320187687874,0.0107736466452479,-0.99976658821106,0.00754415011033416,0.00437695160508156,-0.999962031841278,-0.577229797840118,-0.493082910776138,-0.650903224945068,-0.0430606454610825,-0.0373390801250935,-0.99837452173233,-0.0538521483540535,0.0186554472893476,-0.998374700546265,-0.130500271916389,0.113019615411758,-0.98498547077179,
- -0.163126528263092,-0.0565109699964523,-0.984985411167145,0.00646517472341657,-0.0559915974736214,-0.998410403728485,-0.0430606454610825,-0.0373390801250935,-0.99837452173233,-0.163126528263092,-0.0565109699964523,-0.984985411167145,-2.78778611573216e-006,-0.169607058167458,-0.985511839389801,0.00646517472341657,-0.0559915974736214,-0.998410403728485,-2.78778611573216e-006,-0.169607058167458,-0.985511839389801,0.146855697035789,-0.0847970768809319,-0.985516548156738,0.0507801175117493,-0.0239877235144377,-0.998421728610992,0.0430866964161396,0.0373153761029243,-0.998374283313751,0.0507801175117493,-0.0239877235144377,-0.998421728610992,0.146855697035789,-0.0847970768809319,-0.985516548156738,0.163091257214546,0.0565004423260689,-0.984991908073425,0.0323125869035721,0.0559697523713112,-0.997909545898438,0.0430866964161396,0.0373153761029243,-0.998374283313751,0.163091257214546,0.0565004423260689,-0.984991908073425,0.0974472761154175,0.168801620602608,-0.980821192264557,-0.0538521483540535,0.0186554472893476,-0.998374700546265,-0.0322588980197906,0.0559693165123463,-0.997911274433136,-0.0974528416991234,0.168801262974739,-0.980820655822754,-0.130500271916389,0.113019615411758,-0.98498547077179,0.133453130722046,0.693194806575775,-0.708287596702576,0.00646517472341657,-0.0559915974736214,-0.998410403728485,0.0507801175117493,-0.0239877235144377,-0.998421728610992,-0.533670723438263,0.462179869413376,-0.70822685956955,0.667006313800812,0.231014341115952,-0.708332479000092,-0.0430606454610825,-0.0373390801250935,-0.99837452173233,0.00646517472341657,-0.0559915974736214,-0.998410403728485,0.133453130722046,0.693194806575775,-0.708287596702576,0.533615589141846,-0.462070524692535,-0.708339750766754,-0.0538521483540535,0.0186554472893476,-0.998374700546265,-0.0430606454610825,-0.0373390801250935,-0.99837452173233,0.667006313800812,0.231014341115952,-0.708332479000092,0.374574571847916,-0.648495018482208,-0.662682592868805,-0.0322588980197906,0.0559693165123463,-0.997911274433136,-0.0538521483540535,0.0186554472893476,-0.998374700546265,
- 0.533615589141846,-0.462070524692535,-0.708339750766754,-0.667084395885468,-0.23108859360218,-0.708234846591949,0.0430866964161396,0.0373153761029243,-0.998374283313751,0.0323125869035721,0.0559697523713112,-0.997909545898438,-0.374436348676682,-0.648575067520142,-0.662682414054871,-0.533670723438263,0.462179869413376,-0.70822685956955,0.0507801175117493,-0.0239877235144377,-0.998421728610992,0.0430866964161396,0.0373153761029243,-0.998374283313751,-0.667084395885468,-0.23108859360218,-0.708234846591949,-0.0270837135612965,-0.0235051792114973,-0.999356865882874,-0.023404935374856,0.00813216157257557,-0.999693036079407,-0.105488672852516,0.0912792906165123,-0.9902223944664,-0.143173485994339,-0.0498100221157074,-0.988443434238434,0.00469197053462267,-0.0406288765370846,-0.999163329601288,-0.0270837135612965,-0.0235051792114973,-0.999356865882874,-0.143173485994339,-0.0498100221157074,-0.988443434238434,5.08274970343336e-005,-0.154974475502968,-0.987918496131897,0.00469197053462267,-0.0406288765370846,-0.999163329601288,5.08274970343336e-005,-0.154974475502968,-0.987918496131897,0.143132016062737,-0.0497272051870823,-0.98845362663269,0.0305223558098078,-0.0175777729600668,-0.999379575252533,0.0210672579705715,0.0121932066977024,-0.999703705310822,0.0305223558098078,-0.0175777729600668,-0.999379575252533,0.143132016062737,-0.0497272051870823,-0.98845362663269,0.105467826128006,0.0911721363663673,-0.99023449420929,0.0108939576894045,0.0188683457672596,-0.999762713909149,0.0210672579705715,0.0121932066977024,-0.999703705310822,0.105467826128006,0.0911721363663673,-0.99023449420929,0.0754935145378113,0.130765303969383,-0.988534867763519,-0.023404935374856,0.00813216157257557,-0.999693036079407,-0.0107850907370448,0.0188683904707432,-0.999763906002045,-0.0752911865711212,0.130773335695267,-0.988549292087555,-0.105488672852516,0.0912792906165123,-0.9902223944664,0.150685518980026,0.782759726047516,-0.603805541992188,0.00469197053462267,-0.0406288765370846,-0.999163329601288,0.0305223558098078,-0.0175777729600668,-0.999379575252533,
- -0.602576494216919,0.521846473217011,-0.603802800178528,0.753194630146027,0.260876387357712,-0.603855490684509,-0.0270837135612965,-0.0235051792114973,-0.999356865882874,0.00469197053462267,-0.0406288765370846,-0.999163329601288,0.150685518980026,0.782759726047516,-0.603805541992188,0.60258162021637,-0.521799981594086,-0.603837907314301,-0.023404935374856,0.00813216157257557,-0.999693036079407,-0.0270837135612965,-0.0235051792114973,-0.999356865882874,0.753194630146027,0.260876387357712,-0.603855490684509,0.415886491537094,-0.720085561275482,-0.555441439151764,-0.0107850907370448,0.0188683904707432,-0.999763906002045,-0.023404935374856,0.00813216157257557,-0.999693036079407,0.60258162021637,-0.521799981594086,-0.603837907314301,-0.753221869468689,-0.260933071374893,-0.603797078132629,0.0210672579705715,0.0121932066977024,-0.999703705310822,0.0108939576894045,0.0188683457672596,-0.999762713909149,-0.415783524513245,-0.720151960849762,-0.555432498455048,-0.602576494216919,0.521846473217011,-0.603802800178528,0.0305223558098078,-0.0175777729600668,-0.999379575252533,0.0210672579705715,0.0121932066977024,-0.999703705310822,-0.753221869468689,-0.260933071374893,-0.603797078132629,0.00157456507440656,0.00131647591479123,-0.999997913837433,0.00194372481200844,-0.000673347385600209,-0.999997973442078,-0.0748897194862366,0.0649481937289238,-0.995074570178986,-0.093620590865612,-0.0325034745037556,-0.995077311992645,-0.000234218692639843,0.00202860846184194,-0.999997913837433,0.00157456507440656,0.00131647591479123,-0.999997913837433,-0.093620590865612,-0.0325034745037556,-0.995077311992645,5.11565303895622e-005,-0.0973187312483788,-0.995253264904022,-0.000234218692639843,0.00202860846184194,-0.999997913837433,5.11565303895622e-005,-0.0973187312483788,-0.995253264904022,0.0842729061841965,-0.0486560426652431,-0.995254158973694,-0.00184317003004253,0.000870675256010145,-0.999997973442078,-0.00156311097089201,-0.00135373661760241,-0.999997854232788,-0.00184317003004253,0.000870675256010145,-0.999997973442078,0.0842729061841965,-0.0486560426652431,-0.995254158973694,
- 0.093624085187912,0.0324328429996967,-0.995079278945923,-0.00117091229185462,-0.00202817772515118,-0.999997317790985,-0.00156311097089201,-0.00135373661760241,-0.999997854232788,0.093624085187912,0.0324328429996967,-0.995079278945923,0.0560974441468716,0.0971684530377388,-0.993685722351074,0.00194372481200844,-0.000673347385600209,-0.999997973442078,0.00122539687436074,-0.00202819611877203,-0.99999725818634,-0.0558904521167278,0.0971741452813149,-0.993696928024292,-0.0748897194862366,0.0649481937289238,-0.995074570178986,0.153804630041122,0.799126029014587,-0.58115553855896,-0.000234218692639843,0.00202860846184194,-0.999997913837433,-0.00184317003004253,0.000870675256010145,-0.999997973442078,-0.615155220031738,0.532754361629486,-0.581168472766876,0.769012451171875,0.266386985778809,-0.581083476543427,0.00157456507440656,0.00131647591479123,-0.999997913837433,-0.000234218692639843,0.00202860846184194,-0.999997913837433,0.153804630041122,0.799126029014587,-0.58115553855896,0.615209639072418,-0.532787680625916,-0.581080436706543,0.00194372481200844,-0.000673347385600209,-0.999997973442078,0.00157456507440656,0.00131647591479123,-0.999997913837433,0.769012451171875,0.266386985778809,-0.581083476543427,0.423099100589752,-0.732803761959076,-0.532903134822845,0.00122539687436074,-0.00202819611877203,-0.99999725818634,0.00194372481200844,-0.000673347385600209,-0.999997973442078,0.615209639072418,-0.532787680625916,-0.581080436706543,-0.768958866596222,-0.266384124755859,-0.58115553855896,-0.00156311097089201,-0.00135373661760241,-0.999997854232788,-0.00117091229185462,-0.00202817772515118,-0.999997317790985,-0.423064470291138,-0.732818007469177,-0.53291118144989,-0.615155220031738,0.532754361629486,-0.581168472766876,-0.00184317003004253,0.000870675256010145,-0.999997973442078,-0.00156311097089201,-0.00135373661760241,-0.999997854232788,-0.768958866596222,-0.266384124755859,-0.58115553855896,-0.0183607637882233,-0.154006749391556,-0.987899243831635,-0.090061716735363,-0.0940156877040863,-0.991488814353943,-0.148891851305962,0.0280713737010956,-0.988455057144165,
- -0.118667587637901,-0.21825835108757,-0.96864926815033,0.0423664972186089,-0.125367283821106,-0.991205394268036,-0.0183607637882233,-0.154006749391556,-0.987899243831635,-0.118667587637901,-0.21825835108757,-0.96864926815033,0.0455873049795628,-0.245653837919235,-0.968285143375397,0.0423664972186089,-0.125367283821106,-0.991205394268036,0.0455873049795628,-0.245653837919235,-0.968285143375397,0.202024102210999,-0.0711112320423126,-0.976795554161072,0.0834149420261383,-0.0474710576236248,-0.995383620262146,0.0290054697543383,0.0169881414622068,-0.999434947967529,0.0834149420261383,-0.0474710576236248,-0.995383620262146,0.202024102210999,-0.0711112320423126,-0.976795554161072,0.109428770840168,0.0937623381614685,-0.989562511444092,0.000544922833796591,0.000943891296628863,-0.999999463558197,0.0290054697543383,0.0169881414622068,-0.999434947967529,0.109428770840168,0.0937623381614685,-0.989562511444092,0.0621872805058956,0.107720710337162,-0.992234408855438,-0.090061716735363,-0.0940156877040863,-0.991488814353943,-0.000544955080840737,0.000943891063798219,-0.999999463558197,-0.0621946528553963,0.107720576226711,-0.99223393201828,-0.148891851305962,0.0280713737010956,-0.988455057144165,0.19804336130619,0.685668110847473,-0.700455605983734,0.0423664972186089,-0.125367283821106,-0.991205394268036,0.0834149420261383,-0.0474710576236248,-0.995383620262146,-0.53366357088089,0.462179481983185,-0.708232522010803,0.730540752410889,0.0657336413860321,-0.67969799041748,-0.0183607637882233,-0.154006749391556,-0.987899243831635,0.0423664972186089,-0.125367283821106,-0.991205394268036,0.19804336130619,0.685668110847473,-0.700455605983734,0.48581850528717,-0.525811851024628,-0.698213636875153,-0.090061716735363,-0.0940156877040863,-0.991488814353943,-0.0183607637882233,-0.154006749391556,-0.987899243831635,0.730540752410889,0.0657336413860321,-0.67969799041748,0.374498665332794,-0.648613333702087,-0.662609696388245,-0.000544955080840737,0.000943891063798219,-0.999999463558197,-0.090061716735363,-0.0940156877040863,-0.991488814353943,
- 0.48581850528717,-0.525811851024628,-0.698213636875153,-0.667087435722351,-0.231089949607849,-0.708231449127197,0.0290054697543383,0.0169881414622068,-0.999434947967529,0.000544922833796591,0.000943891296628863,-0.999999463558197,-0.374465435743332,-0.648625433444977,-0.662616491317749,-0.53366357088089,0.462179481983185,-0.708232522010803,0.0834149420261383,-0.0474710576236248,-0.995383620262146,0.0290054697543383,0.0169881414622068,-0.999434947967529,-0.667087435722351,-0.231089949607849,-0.708231449127197,-0.021779352799058,-0.012654235586524,-0.999682724475861,-0.0404139123857021,0.0232217758893967,-0.998913168907166,-0.108201406896114,0.0376901738345623,-0.993414342403412,-0.06919065117836,-0.0597086772322655,-0.99581503868103,0.00118168583139777,-0.0143255693838,-0.999896764755249,-0.021779352799058,-0.012654235586524,-0.999682724475861,-0.06919065117836,-0.0597086772322655,-0.99581503868103,-2.44711168306821e-006,-0.0785346329212189,-0.996911406517029,0.00118168583139777,-0.0143255693838,-0.999896764755249,-2.44711168306821e-006,-0.0785346329212189,-0.996911406517029,0.0691586807370186,-0.0596819669008255,-0.995818853378296,0.0241647586226463,-0.00841875933110714,-0.999672532081604,0.0358649604022503,0.0309479795396328,-0.9988774061203,0.0241647586226463,-0.00841875933110714,-0.999672532081604,0.0691586807370186,-0.0596819669008255,-0.995818853378296,0.108161449432373,0.0376789942383766,-0.993419051170349,0.0329873710870743,0.0571331456303597,-0.997821509838104,0.0358649604022503,0.0309479795396328,-0.9988774061203,0.108161449432373,0.0376789942383766,-0.993419051170349,0.0714943408966064,0.123832128942013,-0.989724338054657,-0.0404139123857021,0.0232217758893967,-0.998913168907166,-0.0329517796635628,0.0571329966187477,-0.997822642326355,-0.0714952498674393,0.123831987380981,-0.989724278450012,-0.108201406896114,0.0376901738345623,-0.993414342403412,0.143051356077194,0.743254661560059,-0.653535544872284,0.00118168583139777,-0.0143255693838,-0.999896764755249,0.0241647586226463,-0.00841875933110714,-0.999672532081604,
- -0.572174310684204,0.495505630970001,-0.653521835803986,0.715208649635315,0.247733980417252,-0.653532385826111,-0.021779352799058,-0.012654235586524,-0.999682724475861,0.00118168583139777,-0.0143255693838,-0.999896764755249,0.143051356077194,0.743254661560059,-0.653535544872284,0.572161853313446,-0.495480090379715,-0.653552114963531,-0.0404139123857021,0.0232217758893967,-0.998913168907166,-0.021779352799058,-0.012654235586524,-0.999682724475861,0.715208649635315,0.247733980417252,-0.653532385826111,0.397847265005112,-0.688953042030334,-0.605855882167816,-0.0329517796635628,0.0571329966187477,-0.997822642326355,-0.0404139123857021,0.0232217758893967,-0.998913168907166,0.572161853313446,-0.495480090379715,-0.653552114963531,-0.715196967124939,-0.247747778892517,-0.653539955615997,0.0358649604022503,0.0309479795396328,-0.9988774061203,0.0329873710870743,0.0571331456303597,-0.997821509838104,-0.397804111242294,-0.688984751701355,-0.605848133563995,-0.572174310684204,0.495505630970001,-0.653521835803986,0.0241647586226463,-0.00841875933110714,-0.999672532081604,0.0358649604022503,0.0309479795396328,-0.9988774061203,-0.715196967124939,-0.247747778892517,-0.653539955615997,0.0109401866793633,0.00942896865308285,-0.999895691871643,0.0136515805497766,-0.00472919223830104,-0.999895691871643,-0.0833655148744583,0.0722379237413406,-0.993897318840027,-0.104212746024132,-0.03613306209445,-0.993898510932922,-0.00163854728452861,0.0141910584643483,-0.999898016452789,0.0109401866793633,0.00942896865308285,-0.999895691871643,-0.104212746024132,-0.03613306209445,-0.993898510932922,2.42746900767088e-005,-0.108307905495167,-0.994117438793182,-0.00163854728452861,0.0141910584643483,-0.999898016452789,2.42746900767088e-005,-0.108307905495167,-0.994117438793182,0.0938230976462364,-0.0541668124496937,-0.994114279747009,-0.0128427240997553,0.0060666766948998,-0.99989914894104,-0.0108954189345241,-0.00943577568978071,-0.999896228313446,-0.0128427240997553,0.0060666766948998,-0.99989914894104,0.0938230976462364,-0.0541668124496937,-0.994114279747009,
- 0.104223474860191,0.0361028239130974,-0.993898391723633,-0.00819186400622129,-0.0141888661310077,-0.999865829944611,-0.0108954189345241,-0.00943577568978071,-0.999896228313446,0.104223474860191,0.0361028239130974,-0.993898391723633,0.0624088756740093,0.108093343675137,-0.992179930210114,0.0136515805497766,-0.00472919223830104,-0.999895691871643,0.00824478082358837,-0.0141888959333301,-0.999865353107452,-0.0623120963573456,0.108096860349178,-0.992185592651367,-0.0833655148744583,0.0722379237413406,-0.993897318840027,0.133446469902992,0.693253815174103,-0.708231091499329,-0.00163854728452861,0.0141910584643483,-0.999898016452789,-0.0128427240997553,0.0060666766948998,-0.99989914894104,-0.533676028251648,0.462183952331543,-0.708220243453979,0.667109370231628,0.231066733598709,-0.708218336105347,0.0109401866793633,0.00942896865308285,-0.999895691871643,-0.00163854728452861,0.0141910584643483,-0.999898016452789,0.133446469902992,0.693253815174103,-0.708231091499329,0.53369265794754,-0.462148457765579,-0.708230912685394,0.0136515805497766,-0.00472919223830104,-0.999895691871643,0.0109401866793633,0.00942896865308285,-0.999895691871643,0.667109370231628,0.231066733598709,-0.708218336105347,0.374559611082077,-0.64856344461441,-0.662624061107636,0.00824478082358837,-0.0141888959333301,-0.999865353107452,0.0136515805497766,-0.00472919223830104,-0.999895691871643,0.53369265794754,-0.462148457765579,-0.708230912685394,-0.667089939117432,-0.231085449457169,-0.70823061466217,-0.0108954189345241,-0.00943577568978071,-0.999896228313446,-0.00819186400622129,-0.0141888661310077,-0.999865829944611,-0.374472171068192,-0.648609399795532,-0.662628412246704,-0.533676028251648,0.462183952331543,-0.708220243453979,-0.0128427240997553,0.0060666766948998,-0.99989914894104,-0.0108954189345241,-0.00943577568978071,-0.999896228313446,-0.667089939117432,-0.231085449457169,-0.70823061466217,-0.0143184261396527,-0.00828773621469736,-0.999863147735596,-0.0143109560012817,0.00830449163913727,-0.99986320734024,-0.0659399777650833,0.0571507848799229,-0.996185660362244,
- -0.0824307128787041,-0.0285907573997974,-0.996186673641205,-0.0018671719590202,-0.0165462717413902,-0.999861419200897,-0.0143184261396527,-0.00828773621469736,-0.999863147735596,-0.0824307128787041,-0.0285907573997974,-0.996186673641205,2.51399687840603e-005,-0.0856734439730644,-0.99632328748703,-0.0018671719590202,-0.0165462717413902,-0.999861419200897,2.51399687840603e-005,-0.0856734439730644,-0.99632328748703,0.0741882771253586,-0.0428335554897785,-0.996323943138123,0.0136448638513684,-0.0094535481184721,-0.999862253665924,0.0143291186541319,0.00827299989759922,-0.999863147735596,0.0136448638513684,-0.0094535481184721,-0.999862253665924,0.0741882771253586,-0.0428335554897785,-0.996323943138123,0.0824201703071594,0.0285509005188942,-0.996188640594482,0.00955352559685707,0.0165480077266693,-0.999817430973053,0.0143291186541319,0.00827299989759922,-0.999863147735596,0.0824201703071594,0.0285509005188942,-0.996188640594482,0.0494004562497139,0.0855663418769836,-0.995107114315033,-0.0143109560012817,0.00830449163913727,-0.99986320734024,-0.00951773300766945,0.0165479816496372,-0.999817848205566,-0.0492999777197838,0.0855686962604523,-0.99511182308197,-0.0659399777650833,0.0571507848799229,-0.996185660362244,-0.667235016822815,0.231141269207001,-0.708075761795044,-0.133393555879593,0.693369805812836,-0.708127498626709,-0.0018671719590202,-0.0165462717413902,-0.999861419200897,0.0136448638513684,-0.0094535481184721,-0.999862253665924,-0.133393555879593,0.693369805812836,-0.708127498626709,0.533736884593964,0.462170034646988,-0.708183467388153,-0.0143184261396527,-0.00828773621469736,-0.999863147735596,-0.0018671719590202,-0.0165462717413902,-0.999861419200897,0.533736884593964,0.462170034646988,-0.708183467388153,0.66713684797287,-0.231059610843658,-0.708194851875305,-0.0143109560012817,0.00830449163913727,-0.99986320734024,-0.0143184261396527,-0.00828773621469736,-0.999863147735596,0.66713684797287,-0.231059610843658,-0.708194851875305,0.374563813209534,-0.648635685443878,-0.662550866603851,-0.00951773300766945,0.0165479816496372,-0.999817848205566,
- -0.0143109560012817,0.00830449163913727,-0.99986320734024,-0.374503970146179,-0.648693144321442,-0.662528514862061,-0.533769845962524,-0.462271481752396,-0.708092391490936,0.0143291186541319,0.00827299989759922,-0.999863147735596,0.00955352559685707,0.0165480077266693,-0.999817430973053,-0.533769845962524,-0.462271481752396,-0.708092391490936,-0.667235016822815,0.231141269207001,-0.708075761795044,0.0136448638513684,-0.0094535481184721,-0.999862253665924,0.0143291186541319,0.00827299989759922,-0.999863147735596,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.08620151877403e-005,0.997735261917114,-0.0672641545534134,8.91554100235226e-006,0.991000354290009,-0.133859634399414,-1.90129526345117e-006,0.997734427452087,-0.0672767460346222,-3.63355457011494e-006,0.997714102268219,0.0675771310925484,-8.92376283445628e-006,0.990982711315155,0.133990302681923,-5.36488369107246e-006,0.997714936733246,0.0675643682479858,-0.0187320187687874,0.0107736466452479,-0.99976658821106,1.8656852262211e-005,0.0345337316393852,-0.999403536319733,5.1314513257239e-005,-0.13931331038475,-0.990248382091522,0.122867673635483,-0.0708724036812782,-0.98988926410675,1.8656852262211e-005,0.0345337316393852,-0.999403536319733,0.0187322925776243,0.010773416608572,-0.999766528606415,-0.122852072119713,-0.0709002315998077,-0.989889144897461,5.1314513257239e-005,-0.13931331038475,-0.990248382091522,0.0187322925776243,0.010773416608572,-0.999766528606415,-0.00753300357609987,0.00439085904508829,-0.999961972236633,-0.127153143286705,0.073543980717659,-0.989152848720551,-0.122852072119713,-0.0709002315998077,-0.989889144897461,-0.00753300357609987,0.00439085904508829,-0.999961972236633,-0.0157284885644913,0.0272425264120102,-0.99950510263443,-0.0858752802014351,0.148856118321419,-0.985122978687286,-0.127153143286705,0.073543980717659,-0.989152848720551,0.0157268773764372,0.0272423811256886,-0.999505221843719,0.00754415011033416,0.00437695160508156,-0.999962031841278,0.127179309725761,0.07349793612957,-0.989152908325195,0.0859344229102135,0.148852676153183,-0.985118329524994,
- 0.00754415011033416,0.00437695160508156,-0.999962031841278,-0.0187320187687874,0.0107736466452479,-0.99976658821106,0.122867673635483,-0.0708724036812782,-0.98988926410675,0.127179309725761,0.07349793612957,-0.989152908325195
- }
- BinormalsW: *4403 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *13209 {
- a: 0.00014196042320691,-0.000119263728265651,1,0.000141801894642413,-0.000119130476377904,1,0.000141643322422169,-0.000118997275421862,1,0.000141801865538582,-0.00011913052003365,1,0.000366805616067722,0.000436689559137449,0.999999940395355,0.000366489519365132,0.000436207541497424,0.999999940395355,0.00036685768282041,0.000436645816080272,0.999999940395355,0.00036717375041917,0.000437127833720297,0.999999940395355,1.12858078864519e-005,-9.47970147535671e-006,1,1.13031428554677e-005,-9.49426157603739e-006,1,1.12858106149361e-005,-9.4796978373779e-006,1,1.12684756459203e-005,-9.46513682720251e-006,1,-5.29105564055499e-005,4.44471734226681e-005,1,-5.2755367505597e-005,4.43168755737133e-005,1,-5.26002113474533e-005,4.41865340690129e-005,1,-5.27554002474062e-005,4.43168319179676e-005,1,5.16670806973707e-005,-4.33416898886207e-005,1,5.19418899784796e-005,-4.33265959145501e-005,1,5.20955363754183e-005,-4.34556968684774e-005,1,5.18207307322882e-005,-4.3470790842548e-005,1,1.01795230875723e-005,-8.48445051815361e-006,1,1.03884176496649e-005,-8.47996125230566e-006,1,1.05086828625645e-005,-8.58098337630508e-006,1,1.02997892099665e-005,-8.58547173265833e-006,1,-3.41174745699391e-005,-4.06103790737689e-005,1,-3.40964070346672e-005,-4.05852988478728e-005,1,-3.41174745699391e-005,-4.06103790737689e-005,1,-3.41385457431898e-005,-4.06354592996649e-005,1,5.45941329619382e-005,-4.5803881221218e-005,1,5.46391966054216e-005,-4.58417416666634e-005,1,5.46653427591082e-005,-4.57191199529916e-005,1,5.46202791156247e-005,-4.56812595075462e-005,1,0.000140214673592709,-0.000117750467325095,1,0.00014036608627066,-0.00011775377788581,1,0.000140456482768059,-0.000117829709779471,1,0.000140305070090108,-0.000117826399218757,1,-8.16054161987267e-005,6.85802442603745e-005,1,-8.15677485661581e-005,6.85488121234812e-005,1,-8.15301900729537e-005,6.85172562953085e-005,1,-8.15678649814799e-005,6.85486811562441e-005,1,-8.20958593976684e-005,6.89611551933922e-005,1,-8.20731074782088e-005,6.89421285642311e-005,1,-8.2050399214495e-005,6.89230582793243e-005,1,
- -8.20731511339545e-005,6.89420849084854e-005,1,-1.22524525068002e-005,-1.45841913763434e-005,1,-1.21534258141764e-005,-1.44663254104671e-005,1,-1.22524497783161e-005,-1.45841950143222e-005,1,-1.23514764709398e-005,-1.47020609801984e-005,1,-1.91986364370678e-005,1.61332172865514e-005,1,-1.91969047591556e-005,1.61317620950285e-005,1,-1.9198650988983e-005,1.61332027346361e-005,1,-1.92003826668952e-005,1.6134657926159e-005,1,-1.66392328537768e-005,1.3977399248688e-005,1,-1.66105601238087e-005,1.39533467518049e-005,1,-1.65819037647452e-005,1.3929272427049e-005,1,-1.66105764947133e-005,1.39533267429215e-005,1,-7.70998085499741e-005,6.46159969619475e-005,1,-7.69637190387584e-005,6.45016698399559e-005,1,-7.68276368035004e-005,6.43873427179642e-005,1,-7.6963726314716e-005,6.45016698399559e-005,1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,1.27835932062226e-007,3.13331610657386e-010,-1,9.28121579590879e-008,2.27486765536078e-010,-1,5.77883874086638e-008,1.41641892659194e-010,-1,9.28121579590879e-008,2.27486696147139e-010,-1,-1.16036780184459e-007,4.53781285614241e-005,-1,-1.16190797427862e-007,4.54383625765331e-005,-1,-1.16335428401726e-007,4.54985929536633e-005,-1,-1.16181425369177e-007,4.54383625765331e-005,-1,-1.37529241328593e-006,0,-1,-1.37634333441383e-006,0,-1,-1.37529241328593e-006,0,-1,-1.37424160584487e-006,0,-1,0,0.000117478572065011,-1,0,5.8809502661461e-005,-1,0,1.40429904149642e-007,-1,0,5.8809502661461e-005,-1,9.15992472982907e-007,-0,1,1.06717948256119e-007,-0,1,-7.0255657647067e-007,-0,1,1.06717948256119e-007,-0,1,1.1526570915521e-006,-6.2644113540955e-007,1,0,-6.50534275337122e-007,1,1.50666096487839e-007,-5.68816176382825e-007,1,1.09172424345161e-006,-2.08406987667331e-007,1,0.643276631832123,0.765633821487427,0,0.643267095088959,0.765641987323761,0,0.64325749874115,0.765649914741516,-0,0.643267095088959,0.765641987323761,0,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,9.75469163222442e-008,1.16114335924067e-007,1,9.44477704933888e-008,1.12425276199701e-007,1,9.75469163222442e-008,1.16114321713212e-007,1,1.006460621511e-007,1.19803388543005e-007,1,
- 0.64323878288269,0.765665650367737,-0,0.64323878288269,0.765665650367737,-0,0.64323878288269,0.765665650367737,-0,0.64323878288269,0.765665650367737,-0,-4.4804689736111e-008,3.76492153009167e-008,1,-6.01667125010863e-008,5.05578654497185e-008,1,-4.4804689736111e-008,3.76492153009167e-008,1,-2.94426687474925e-008,2.47405669284717e-008,1,0.643267095088959,0.765641868114471,0,0.643268167972565,0.765641093254089,0,0.643269121646881,0.765640139579773,-0,0.643268167972565,0.765641093254089,0,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,0.643274247646332,0.765635848045349,-0,0.643253207206726,0.765653491020203,-0,0.64323216676712,0.765671193599701,-0,0.643253207206726,0.765653491020203,-0,0.643265426158905,0.765643239021301,0,0.643271327018738,0.765638291835785,0,0.643277227878571,0.765633463859558,-0,0.643271327018738,0.765638291835785,0,2.32704557845409e-008,-1.95553333526277e-008,1,4.65408191985262e-008,-3.91105814401271e-008,1,6.98111790597977e-008,-5.86658330803402e-008,1,4.65408120930988e-008,-3.91105849928408e-008,1,-4.89879425913387e-008,4.11602059102734e-008,1,-3.65277834646349e-008,3.06910443725883e-008,1,-2.40676243379312e-008,2.02218792821895e-008,1,-3.65277834646349e-008,3.06910443725883e-008,1,3.89296559433205e-008,4.63371421233205e-008,1,5.83944625986987e-008,6.9505688315985e-008,1,7.78592692540769e-008,9.26742274032222e-008,1,5.83944625986987e-008,6.9505688315985e-008,1,0.643280923366547,0.76563024520874,0,0.643267810344696,0.765641391277313,0,0.643254697322845,0.765652418136597,-0,0.643267810344696,0.765641391277313,0,5.23472010627302e-007,6.23118580733717e-007,1,1.22072481190116e-006,1.52613779391686e-007,1,1.86121349088353e-006,-3.85454995921464e-007,1,1.16396563498711e-006,8.50500327942427e-008,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-1.75135696167672e-007,-9.14492837011949e-009,1,3.69050852100372e-008,-2.12293457479973e-007,1,2.61267871337623e-007,-4.0077287621898e-007,1,4.92273173335889e-008,-1.97625269038326e-007,1,1.68949782164418e-007,3.21316008466965e-007,1,1.00438683148241e-007,2.26289628812992e-007,1,2.52872780492908e-008,1.36842231768242e-007,1,
- 9.37984196980324e-008,2.3186859721136e-007,1,0.64322167634964,0.765680134296417,-0,0.643248856067657,0.765657305717468,-0,0.643276035785675,0.765634477138519,-0,0.643248856067657,0.765657305717468,-0,-4.65610376920722e-008,3.91097110252758e-008,1,-4.65610376920722e-008,3.91097110252758e-008,1,-4.65610376920722e-008,3.91097145779895e-008,1,-4.65610376920722e-008,3.91097145779895e-008,1,1.17012561418051e-007,5.97795022372338e-008,1,8.66989324777023e-008,8.95382967769365e-009,1,4.91233684840608e-008,-3.57706966269689e-008,1,7.94369867662681e-008,1.50550008015671e-008,1,0.643259644508362,0.765648245811462,0,0.643260598182678,0.765647292137146,0,0.643261671066284,0.765646398067474,-0,0.643260598182678,0.765647292137146,0,1.0858045840223e-007,-1.65116020411915e-007,1,3.94925905311538e-008,-1.23806103147217e-007,1,-2.13587796338288e-008,-7.26908098158674e-008,1,4.77290953426746e-008,-1.1400076971313e-007,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-5.63103519368724e-008,1.21133609809476e-007,1,-6.95029100938882e-008,5.83901247352969e-008,1,-4.63353586610538e-008,3.89268208778049e-008,1,-3.31427720823285e-008,1.01670337926407e-007,1,3.89291159308414e-008,4.63371740977436e-008,1,3.89291159308414e-008,4.63371740977436e-008,1,3.89291159308414e-008,4.63371740977436e-008,1,3.89291159308414e-008,4.63371740977436e-008,1,0.643254041671753,0.76565283536911,-0,0.643249034881592,0.765657067298889,-0,0.643243968486786,0.765661299228668,-0,0.643249034881592,0.765657067298889,-0,0,0,1,0,0,1,0,0,1,0,0,1,4.94690830521449e-008,1.16526415183671e-007,1,7.78605127038645e-008,9.26729413208705e-008,1,7.78605127038645e-008,9.26729413208705e-008,1,4.94690794994312e-008,1.16526422289098e-007,1,0.643255770206451,0.765651345252991,0,0.643261969089508,0.765646278858185,0,0.643268167972565,0.765641093254089,-0,0.643261969089508,0.765646278858185,0,2.32704522318272e-008,-1.95555482918053e-008,1,4.65408120930988e-008,-3.91110113184823e-008,1,6.98111719543704e-008,-5.86664761215161e-008,1,4.65408085403851e-008,-3.91110148711959e-008,1,-4.65475338273791e-008,3.91105601238451e-008,1,
- -1.18433796103545e-008,8.04137982868269e-008,1,-1.18433876039603e-008,8.04137840759722e-008,1,-4.65475338273791e-008,3.91105601238451e-008,1,3.89296666014616e-008,4.63369609349229e-008,1,5.83944625986987e-008,6.95054254151728e-008,1,7.78592692540769e-008,9.2673886342709e-008,1,5.83944768095535e-008,6.95054112043181e-008,1,0.643256068229675,0.765651106834412,0,0.643256068229675,0.765651106834412,0,0.643256068229675,0.765651106834412,-0,0.643256068229675,0.765651106834412,0,-3.10779135759276e-008,-3.69980668324388e-008,1,0,0,1,0,0,1,-3.10779171286413e-008,-3.69980703851525e-008,1,-0,-0,1,3.26272662221072e-008,3.8842436822506e-008,1,3.26272733275346e-008,3.8842447480647e-008,1,-0,-0,1,5.21348191284687e-008,-4.37936442665432e-008,1,5.10486941607269e-008,-4.28812612085494e-008,1,4.99625549821303e-008,-4.1968895914124e-008,1,5.10486799498722e-008,-4.28812789721178e-008,1,7.78565194536895e-008,9.26734173845034e-008,1,7.78565194536895e-008,9.26734173845034e-008,1,7.78565194536895e-008,9.26734173845034e-008,1,7.78565194536895e-008,9.26734173845034e-008,1,0.643265545368195,0.765643179416656,-0,0.64325737953186,0.765650033950806,-0,0.643249273300171,0.76565682888031,-0,0.64325737953186,0.765650033950806,-0,-4.65475302746654e-008,3.91067658256361e-008,1,-4.65475302746654e-008,3.91067658256361e-008,1,-1.5483982096498e-008,7.60808234190336e-008,1,-1.54839838728549e-008,7.60808234190336e-008,1,6.25215577088056e-008,1.05557205642981e-007,1,7.78573507886904e-008,9.26731615891185e-008,1,7.78573507886904e-008,9.26731615891185e-008,1,6.25215506033783e-008,1.05557212748408e-007,1,0.643263339996338,0.765645027160645,0,0.643256545066834,0.765650749206543,0,0.643249690532684,0.765656471252441,-0,0.643256545066834,0.765650749206543,0,6.98312163649462e-008,-5.86637973754023e-008,1,4.65541845073858e-008,-3.91092136453608e-008,1,2.32771419916844e-008,-1.95546476788877e-008,1,4.65541774019584e-008,-3.91092243035018e-008,1,-0,-0,1,2.9975947057892e-008,3.56762619446727e-008,1,2.99759399524646e-008,3.5676258391959e-008,1,-0,-0,1,-9.26704899484321e-008,7.78559154923641e-008,1,
- -6.95029029884608e-008,5.83920218844014e-008,1,-4.63353551083401e-008,3.89280856438745e-008,1,-6.95029314101703e-008,5.83919899099783e-008,1,3.89291159308414e-008,4.63361438107768e-008,1,3.8929119483555e-008,4.63361402580631e-008,1,3.8929119483555e-008,4.63361402580631e-008,1,3.89291159308414e-008,4.63361438107768e-008,1,0.643262445926666,0.765645742416382,-0,0.64325737953186,0.765649974346161,-0,0.643252372741699,0.76565420627594,-0,0.64325737953186,0.765649974346161,-0,0,0,1,0,0,1,0,0,1,0,0,1,7.78581252802724e-008,9.26729626371525e-008,1,7.78581394911271e-008,9.26729413208705e-008,1,7.78581394911271e-008,9.26729413208705e-008,1,7.78581252802724e-008,9.26729626371525e-008,1,0.64325338602066,0.765653371810913,0,0.643254995346069,0.765652000904083,0,0.643256664276123,0.765650629997253,-0,0.643254995346069,0.765652000904083,0,2.32704735481093e-008,-1.95555216464527e-008,1,4.65408120930988e-008,-3.91110113184823e-008,1,6.98111719543704e-008,-5.86664761215161e-008,1,4.65408511729493e-008,-3.91109651332044e-008,1,-4.65407801186757e-008,3.91122476628425e-008,1,-4.65407410388252e-008,3.9112297400834e-008,1,-4.65407410388252e-008,3.9112297400834e-008,1,-4.65407801186757e-008,3.91122476628425e-008,1,3.89296737068889e-008,4.6336605663555e-008,1,5.83944625986987e-008,6.95048996135483e-008,1,7.78592692540769e-008,9.26731829054006e-008,1,5.83944910204082e-008,6.95048782972663e-008,1,0.643256068229675,0.765651106834412,0,0.64325749874115,0.765649914741516,0,0.643258929252625,0.765648722648621,-0,0.64325749874115,0.765649914741516,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,5.21273690878843e-008,-4.37968168398584e-008,1,5.10412974108476e-008,-4.28844941779971e-008,1,4.99553145516529e-008,-4.19720613820118e-008,1,5.10413862286896e-008,-4.28843875965867e-008,1,7.78565123482622e-008,9.2673190010828e-008,1,7.78564981374075e-008,9.26732042216827e-008,1,7.78564981374075e-008,9.26732042216827e-008,1,7.78565123482622e-008,9.2673190010828e-008,1,0.643266499042511,0.76564234495163,-0,0.643258333206177,0.765649199485779,-0,0.643250286579132,0.765656113624573,-0,
- 0.643258333206177,0.765649199485779,-0,-4.65407801186757e-008,3.91097181307032e-008,1,-4.65407801186757e-008,3.91097181307032e-008,1,-4.65408014349578e-008,3.91096932617074e-008,1,-4.65408014349578e-008,3.91096932617074e-008,1,7.78631985554057e-008,9.26717120819376e-008,1,7.78632198716878e-008,9.26716907656555e-008,1,7.78632198716878e-008,9.26716907656555e-008,1,7.78631985554057e-008,9.26717120819376e-008,1,0.643252849578857,0.765653789043427,0,0.643268465995789,0.765640676021576,0,0.64328408241272,0.765627562999725,-0,0.643268465995789,0.765640676021576,0,6.98110582675326e-008,-5.86567203697541e-008,1,4.65406841954064e-008,-3.91045702485826e-008,1,2.32703918356947e-008,-1.95523259804986e-008,1,4.65407374861115e-008,-3.91045062997364e-008,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,1,-9.26704544212953e-008,7.78567965653565e-008,1,-6.95029029884608e-008,5.83926507147225e-008,1,-4.63353551083401e-008,3.89285048640886e-008,1,-6.95029029884608e-008,5.83926507147225e-008,1,3.8930767942702e-008,4.63363498681701e-008,1,3.8930767942702e-008,4.63363498681701e-008,1,3.8930767942702e-008,4.63363498681701e-008,1,3.8930767942702e-008,4.63363498681701e-008,1,0.64326000213623,0.765647947788239,-0,0.643263339996338,0.765645027160645,-0,0.643266677856445,0.76564222574234,-0,0.643263339996338,0.765645027160645,-0,0,0,1,0,0,1,0,0,1,0,0,1,1.00243632061847e-007,1.19317093094651e-007,1,1.00243632061847e-007,1.19317093094651e-007,1,1.00243632061847e-007,1.19317093094651e-007,1,1.00243632061847e-007,1.19317093094651e-007,1,0.643263280391693,0.765645086765289,0,0.643261075019836,0.765646934509277,0,0.643258810043335,0.765648782253265,-0,0.643261075019836,0.765646934509277,0,2.32738308625358e-008,-1.9554489583129e-008,1,4.65475622490885e-008,-3.91088974538434e-008,1,6.98212971883549e-008,-5.86633071009146e-008,1,4.65475622490885e-008,-3.91088974538434e-008,1,-1.19092639749852e-007,-4.72499124271053e-008,1,-4.3942613103809e-008,-1.10382906370887e-007,1,3.12074206476609e-008,-1.73515900314669e-007,1,-4.39426202092363e-008,-1.10382920581742e-007,1,0.639645040035248,0.768670558929443,0,
- 0.63961386680603,0.768696367740631,-0,0.639645040035248,0.768670558929443,0,0.639676094055176,0.768644571304321,0,0.64325487613678,0.765652120113373,-0,0.643278062343597,0.765632748603821,-0,0.64330118894577,0.765613198280334,-0,0.643278062343597,0.765632748603821,-0,0.643253982067108,0.765652894973755,0,0.643255949020386,0.765651226043701,0,0.643257856369019,0.765649616718292,-0,0.643255949020386,0.765651226043701,0,-7.47065911355094e-008,6.27746672421381e-008,1,-5.55386563405591e-008,4.66681804311975e-008,1,-3.63707215456088e-008,3.05616936202568e-008,1,-5.55386563405591e-008,4.66681804311975e-008,1,-0.642569661140442,-0.766227424144745,-8.15556745692447e-007,-0.642569661140442,-0.766227245330811,-8.15560156297579e-007,-0.642569780349731,-0.766227185726166,-8.15564192180318e-007,-0.642569661140442,-0.766227245330811,-8.15559246802877e-007,-0.643249690532684,-0.765656471252441,0,-0.64324951171875,-0.765656590461731,0,-0.643249332904816,-0.765656769275665,0,-0.64324951171875,-0.765656590461731,0,-0.643245875835419,-0.765659689903259,-9.66178870243084e-009,-0.643245995044708,-0.765659689903259,-9.67197077983428e-009,-0.643246054649353,-0.765659511089325,-9.60014201467629e-009,-0.643245995044708,-0.765659689903259,-9.65324975510384e-009,-0.643170893192291,-0.765722215175629,0.000922380073461682,-0.645164608955383,-0.764043509960175,-0.000380543962819502,-0.648053348064423,-0.761569499969482,-0.00622526369988918,-0.646712481975555,-0.762708485126495,-0.00622211815789342,-0.645164608955383,-0.764043509960175,-0.000380543962819502,-0.643170893192291,-0.765722215175629,0.000922380073461682,-0.64208984375,-0.766623973846436,0.00288867484778166,-0.642061233520508,-0.766647934913635,0.00288864225149155,-0.644623696804047,-0.764490067958832,-0.00391826359555125,-0.644623756408691,-0.764499366283417,-0.000987632549367845,-0.643249571323395,-0.765655398368835,0.00136949319858104,-0.64324963092804,-0.765655338764191,0.00135727343149483,-0.644554376602173,-0.764557719230652,0.00101190817076713,-0.646193861961365,-0.763173043727875,-0.000702246616128832,
- -0.643775165081024,-0.765205979347229,0.00367715442553163,-0.643765091896057,-0.765214323997498,0.00367713952437043,-0.643752038478851,-0.765233337879181,-0.00117799232248217,-0.64375251531601,-0.765230298042297,-0.00227509229443967,-0.643243908882141,-0.765649437904358,0.00429456727579236,-0.643243849277496,-0.765649437904358,0.00428251549601555,0.000878321123309433,0.00104531401302665,-0.999999165534973,0.000878400984220207,0.00104540900792927,-0.999999165534973,0.000878321065101773,0.00104531401302665,-0.999999165534973,0.000878241204190999,0.00104521890170872,-0.999999165534973,0.00122557079885155,-0.00102976313792169,-0.99999874830246,0.00122504367027432,-0.00102932017762214,-0.99999874830246,0.00121325254440308,-0.0010194128844887,-0.99999874830246,0.00120198854710907,-0.00100994855165482,-0.999998867511749,0.00121735862921923,-0.00102286296896636,-0.99999874830246,-0.000912474119104445,-0.00108612177427858,-0.999998986721039,-0.000901621242519468,-0.00107320584356785,-0.999998986721039,-0.000907754292711616,-0.00108050613198429,-0.999998986721039,-3.89633584063631e-007,-4.20651218746571e-007,1,-2.79116363799403e-007,-2.89102530359742e-007,1,-1.47357440027918e-007,-1.75399506474605e-007,1,-2.57874717135564e-007,-3.0694815222887e-007,1,-3.95155439036898e-007,4.00271943590269e-007,1,-4.48716434675589e-007,4.45341413524147e-007,1,-5.35988192496006e-007,4.50283778263838e-007,1,-4.82391328660015e-007,4.05257026159234e-007,1,1.53369285271765e-007,1.82543956839254e-007,1,2.30053458949442e-007,2.7381537393012e-007,1,3.06737661048828e-007,3.65086776810131e-007,1,2.30053473160297e-007,2.7381537393012e-007,1,2.14386545849266e-007,-1.80110973246883e-007,1,6.43156056412408e-007,-5.40329835985176e-007,1,1.07192545328871e-006,-9.00548855042871e-007,1,6.43155942725571e-007,-5.40329949672014e-007,1,-1.5649763440706e-007,1.70691350831476e-007,-1,-6.85371688291525e-008,9.69262288208483e-008,-1,0,0,-1,-8.79605224213265e-008,7.37650509563537e-008,-1,-1.96309724032062e-008,1.64930380464057e-008,-1,-1.96309759559199e-008,1.64930433754762e-008,-1,
- 0,-0,-1,0,-0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,0.642965912818909,0.765894889831543,-0.000166377809364349,0.643273115158081,0.765636801719666,1.96309954958451e-008,0.643273830413818,0.765636205673218,1.96310168121272e-008,0.640176713466644,0.768227696418762,-7.59256727178581e-005,0.646208703517914,0.763160705566406,-9.97681672743056e-006,0.643272519111633,0.765637338161469,-2.06476073572048e-007,0.643272519111633,0.765637338161469,-0,0.646208703517914,0.763160884380341,-9.77857962425333e-006,0.640176177024841,0.76822817325592,-7.59426548029296e-005,0.643273234367371,0.765636682510376,1.96309990485588e-008,0.643272459506989,0.765637338161469,1.96309741795631e-008,0.642965316772461,0.765895366668701,-0.000166413694387302,0.640101134777069,0.768290638923645,-0.000373761693481356,0.643273651599884,0.765636324882507,-2.90842933736712e-007,0.643273651599884,0.765636324882507,-3.8778989619459e-007,0.640099227428436,0.768292248249054,-0.000373903603758663,0.642965912818909,0.765894889831543,-0.000166377809364349,0.640176713466644,0.768227696418762,-7.59256727178581e-005,0.642812430858612,0.766023635864258,-0.000374200084479526,0.651585936546326,0.758574724197388,-0.00042658718302846,0.646208703517914,0.763160705566406,-9.97681672743056e-006,0.646208703517914,0.763160884380341,-9.77857962425333e-006,0.651587426662445,0.758573532104492,-1.91602030099602e-005,0.651587426662445,0.758573532104492,-1.93501964531606e-005,0.640176177024841,0.76822817325592,-7.59426548029296e-005,0.642965316772461,0.765895366668701,-0.000166413694387302,0.651585400104523,0.758575201034546,-0.000426669081207365,0.642811954021454,0.766023993492126,-0.000374281371477991,0.640101134777069,0.768290638923645,-0.000373761693481356,0.640099227428436,0.768292248249054,-0.000373903603758663,0.633951961994171,0.773372232913971,-0.000747679441701621,0.633951961994171,0.773372232913971,-0.000747492536902428,-7.69447183301963e-007,-1.83016823029902e-006,1,6.23552637080138e-007,-8.56988890518551e-007,1,1.68946974099526e-006,4.78944343740295e-007,1,
- -8.59635846950368e-008,-9.28353529161541e-007,1,-1.7139361716545e-006,7.89067200912541e-007,-1,-7.94252059677092e-007,6.72125850087468e-007,-1,-3.62559575250998e-007,6.79800393754704e-007,-1,-1.08750441540906e-006,7.6751132382924e-007,-1,0.76582258939743,-0.643051981925964,-0,0.765777945518494,-0.643105089664459,-0,0.765758454799652,-0.643128275871277,-0,0.765775680541992,-0.643107950687408,-0,0.00808108691126108,-0.00678534107282758,0.99994432926178,0.00749486032873392,-0.00629298156127334,0.99995219707489,0.00690840044990182,-0.00580088933929801,0.999959409236908,0.00749463029205799,-0.00629325490444899,0.99995219707489,0.766032457351685,-0.642802059650421,-0,0.766062021255493,-0.642766773700714,-0,0.765998601913452,-0.642842233181,-0,0.766018331050873,-0.642818868160248,-0,0.766018331050873,-0.642818868160248,-0,0.765998601913452,-0.642842233181,-0,0.765961349010468,-0.642886698246002,-0,0.765986084938049,-0.642857313156128,-0,4.38610953779062e-007,2.83722272342857e-007,-1,1.08794472453155e-006,7.47046669857809e-007,-1,9.2918338623349e-007,7.057814741529e-007,-1,6.29552005193545e-007,4.45495828671483e-007,-1,7.42044164780964e-007,6.08209631991485e-007,-1,0.765986084938049,-0.642857313156128,-0,0.765961349010468,-0.642886698246002,-0,0.765922248363495,-0.642933249473572,-0,0.765949189662933,-0.642901122570038,-0,-1.36783501147875e-006,-1.77005381374329e-006,1,-1.39305575430626e-006,-1.61913783358614e-006,1,-1.30969874589937e-006,-1.55942370838602e-006,1,-1.2818919685742e-006,-1.69114287018601e-006,1,2.64471822220003e-007,3.1489940965912e-007,-1,4.38610953779062e-007,2.83722272342857e-007,-1,7.42044164780964e-007,6.08209631991485e-007,-1,3.02252885830967e-007,3.5988443869428e-007,-1,0.765949189662933,-0.642901122570038,-0,0.765922248363495,-0.642933249473572,-0,0.76585590839386,-0.643012285232544,-0,0.765907406806946,-0.64295095205307,-0,-1.39305575430626e-006,-1.61913783358614e-006,1,-1.29452780583961e-006,-1.50730579662195e-006,1,-1.21387256513117e-006,-1.44531747992005e-006,1,-1.30969874589937e-006,-1.55942370838602e-006,1,
- 2.01504406049935e-007,2.39923508615902e-007,-1,2.64471822220003e-007,3.1489940965912e-007,-1,3.02252885830967e-007,3.5988443869428e-007,-1,2.45583123614779e-007,2.9240635512906e-007,-1,0.765907406806946,-0.64295095205307,-0,0.76585590839386,-0.643012285232544,-0,0.765777945518494,-0.643105089664459,-0,0.76582258939743,-0.643051981925964,-0,-1.29452780583961e-006,-1.50730579662195e-006,1,-7.69447183301963e-007,-1.83016823029902e-006,1,-8.59635846950368e-008,-9.28353529161541e-007,1,-1.21387256513117e-006,-1.44531747992005e-006,1,-7.94252059677092e-007,6.72125850087468e-007,-1,2.01504406049935e-007,2.39923508615902e-007,-1,2.45583123614779e-007,2.9240635512906e-007,-1,-3.62559575250998e-007,6.79800393754704e-007,-1,-0.647634148597717,-0.761930227279663,-0.00568353664129972,-0.647634208202362,-0.761930465698242,-0.00567025318741798,-0.647634208202362,-0.761930465698242,-0.00566717889159918,-0.644623756408691,-0.764499366283417,-0.000987632549367845,-0.644623696804047,-0.764490067958832,-0.00391826359555125,-0.647372901439667,-0.762132287025452,-0.00791938975453377,-0.648659944534302,-0.761037290096283,-0.00792322400957346,-0.646193861961365,-0.763173043727875,-0.000702246616128832,-0.644554376602173,-0.764557719230652,0.00101190817076713,-0.64375251531601,-0.765230298042297,-0.00227509229443967,-0.643752038478851,-0.765233337879181,-0.00117799232248217,-0.645035743713379,-0.764123558998108,-0.00664037372916937,-0.645035743713379,-0.764123439788818,-0.00665694801136851,-0.645035684108734,-0.764123439788818,-0.006659553386271,-0.640995383262634,-0.767544686794281,-0.000230065576033667,-0.643862843513489,-0.765140891075134,-0.000252635276410729,-0.646721363067627,-0.762726426124573,-0.000275201891781762,-0.643862843513489,-0.765140891075134,-0.000252635596552864,0.766102075576782,-0.642718911170959,-0,0.76617169380188,-0.642635941505432,-0,0.766062021255493,-0.642766773700714,-0,0.766032457351685,-0.642802059650421,-0,5.10766426486953e-007,6.08227310294751e-007,-1,5.09609662913135e-007,6.06820094617433e-007,-1,4.96413804285112e-007,5.9124306517333e-007,-1,
- 4.53419630730423e-007,5.40035671292571e-007,-1,0,-0,-1,0,0,-1,0,0,-1,0,0,-1,1.11342885134036e-007,2.72906419684915e-010,-1,1.11342885134036e-007,2.72906419684915e-010,-1,1.11342885134036e-007,2.7290639192934e-010,-1,1.11342885134036e-007,2.7290639192934e-010,-1,9.72128599840971e-010,-3.80137691990967e-007,-1,6.4808614030909e-010,-2.53425298524235e-007,-1,3.24018617492428e-010,-1.26712919268357e-007,-1,6.48035847206074e-010,-2.53425298524235e-007,-1,-1,0,-0,-1,6.00144801410352e-007,0,-1,1.2002896028207e-006,0,-1,6.00144801410352e-007,0,-1.39392000164662e-008,0,-1,-2.09087982483425e-008,0,-1,-2.78783964802187e-008,0,-1,-2.09087982483425e-008,0,-1,0,1.2217529388181e-007,-1,0,1.2217529388181e-007,-1,0,1.2217529388181e-007,-1,0,1.2217529388181e-007,-1,8.06106527306838e-007,-1.32714149003732e-007,1,7.6093573397884e-007,-1.22975706062789e-007,1,3.20789581564895e-007,-5.96965662680304e-007,1,3.25902931308519e-007,-6.09013682151272e-007,1,-7.85500617439538e-007,-0,1,4.956190196026e-007,-0,1,1.77673859980132e-006,-0,1,4.956190196026e-007,-0,1,8.94099855486274e-007,0,1,8.64296850977553e-007,0,1,7.6093573397884e-007,-1.22975706062789e-007,1,8.06106527306838e-007,-1.32714149003732e-007,1,2.44140642280399e-006,-5.92649143982271e-007,1,1.1526570915521e-006,-6.19587353867246e-007,1,1.33709272631677e-006,-7.84007340826065e-007,1,2.39430983128841e-006,-6.38827600596414e-007,1,4.69879864795075e-007,-5.1497045205906e-007,1,8.04755643457611e-007,-7.48083209600736e-007,1,2.39430983128841e-006,-6.38827600596414e-007,1,1.33709272631677e-006,-7.84007340826065e-007,1,3.25902931308519e-007,-6.09013682151272e-007,1,3.20789581564895e-007,-5.96965662680304e-007,1,8.04755643457611e-007,-7.48083209600736e-007,1,4.69879864795075e-007,-5.1497045205906e-007,1,1,-0.000449147424660623,-0,1,-0.000131331471493468,-0,1,3.37867078314957e-007,-0,1,-0.000257809238974005,0,1,-6.56029733363539e-005,0,1,-0.000195544620510191,0,0.99999988079071,-0.000480390095617622,0,-0,6.22886375367671e-007,1,0,6.48839773020882e-007,1,0,6.74793227517512e-007,1,0,6.48839773020882e-007,1,
- -2.04169755306793e-005,-2.43007234530523e-005,1,-2.03790823434247e-005,-2.43325612245826e-005,1,-2.03792533284286e-005,-2.43324175244197e-005,1,1.47471055242931e-005,-1.23927675304003e-005,1,1.46195525303483e-005,-1.22855781228282e-005,1,1.44920168168028e-005,-1.2178370525362e-005,1,1.46195689012529e-005,-1.22855590234394e-005,1,2.49125259870198e-005,2.96528451144695e-005,1,2.53081962000579e-005,3.01238069368992e-005,1,2.57038682320854e-005,3.05947687593289e-005,1,2.53081962000579e-005,3.01238069368992e-005,1,3.86525571229868e-005,-3.246897176723e-005,1,3.86472711397801e-005,-3.24645370710641e-005,1,3.91642606700771e-005,-3.18383972626179e-005,1,3.9169543015305e-005,-3.18428428727202e-005,1,4.8223586190943e-007,-4.05122108304568e-007,1,5.65674099561875e-007,-4.75217859730037e-007,1,5.72155727240897e-007,-6.36921129171242e-007,1,4.88716523250332e-007,-5.6682648619244e-007,1,-9.02393003343605e-005,-0.000107407649920788,1,-9.0636545792222e-005,-0.000107880478026345,1,-9.09945883904584e-005,-0.00010838625166798,1,-9.05973283806816e-005,-0.00010791343083838,1,-7.03179248375818e-005,5.90669260418508e-005,1,-7.03638070262969e-005,5.91054595133755e-005,1,-7.04459671396762e-005,5.91008138144389e-005,1,-7.04000849509612e-005,5.90622730669566e-005,1,0.000173428910784423,-0.000145300989970565,1,0.000173270207596943,-0.000145167694427073,1,0.00017326908709947,-0.000145491241710261,1,0.000173427775735036,-0.000145624566357583,1,8.4332496044226e-006,1.00380575531744e-005,1,8.38641699374421e-006,9.98231189441867e-006,1,8.33958074508701e-006,9.92656896414701e-006,1,8.3864142652601e-006,9.98231462290278e-006,1,1.01396308309631e-005,-8.51951517688576e-006,1,1.01956593425712e-005,-8.56659062264953e-006,1,1.02516869446845e-005,-8.61366606841329e-006,1,1.01956593425712e-005,-8.56659062264953e-006,1,-0.000236956737353466,-0.000281797052593902,0.999999940395355,-0.000237006868701428,-0.000281856715446338,0.999999940395355,-0.000236967680393718,-0.000281991437077522,0.999999940395355,-0.000236917563597672,-0.000281931745121256,0.999999940395355,
- -7.68517056712881e-005,6.45830950816162e-005,1,-7.69677862990648e-005,6.46806583972648e-005,1,-7.70839033066295e-005,6.47781926090829e-005,1,-7.69678154028952e-005,6.46806365693919e-005,1,0.000193998886970803,0.000230911464313976,0.999999940395355,0.000194472435396165,0.000231475103646517,0.999999940395355,0.000194945809198543,0.000232038888498209,0.999999940395355,0.000194472260773182,0.000231475249165669,0.999999940395355,-4.42829114035703e-005,3.69892186427023e-005,1,-4.41938391304575e-005,3.69143999705557e-005,1,-4.40334697486833e-005,3.69244589819573e-005,1,-4.41225420217961e-005,3.69992812920827e-005,1,-1.97160534298746e-006,1.65616677350044e-006,1,-1.97941062651807e-006,1.66272320711869e-006,1,-1.98721772903809e-006,1.6692780491212e-006,1,-1.97941244550748e-006,1.66272138812928e-006,1,6.32318842690438e-005,7.53561762394384e-005,1,6.33210001979023e-005,7.54622305976227e-005,1,6.34399184491485e-005,7.5543241109699e-005,1,6.33508170722052e-005,7.54371794755571e-005,1,3.37245801347308e-005,-2.83313711406663e-005,1,3.36901794071309e-005,-2.83024710370228e-005,1,3.36557932314463e-005,-2.82735527434852e-005,1,3.36901939590462e-005,-2.83024528471287e-005,1,-0.000189381069503725,0.000159105853526853,1,-0.000189347469131462,0.000159077608259395,1,-0.000189380982192233,0.00015910598449409,1,-0.000189414597116411,0.000159134229761548,1,-6.27578920102678e-005,-7.46988080209121e-005,1,-6.27513582003303e-005,-7.46910300222225e-005,1,-6.27448243903928e-005,-7.4683252023533e-005,1,-6.27513582003303e-005,-7.46910300222225e-005,1,-5.23483176948503e-005,4.39701216237154e-005,1,-5.23840935784392e-005,4.40001676906832e-005,1,-5.24198767379858e-005,4.40302064816933e-005,1,-5.23841008543968e-005,4.40001567767467e-005,1,3.13251512125134e-005,3.72857321053743e-005,1,3.1249008316081e-005,3.71950955013745e-005,1,3.1172876333585e-005,3.71044479834381e-005,1,3.12490228679962e-005,3.71950809494592e-005,1,6.11539144301787e-005,-5.13910199515522e-005,1,6.1157850723248e-005,-5.13943268742878e-005,1,6.11617142567411e-005,-5.1397717470536e-005,1,
- 6.11577779636718e-005,-5.13944105478004e-005,1,0.000123462552437559,0.000146952967043035,1,0.0001234995725099,0.000146997015690431,1,0.000123536519822665,0.000147041122545488,1,0.000123499514302239,0.000146997073898092,1,0.000129838153952733,-0.000109060638351366,1,0.000129867534269579,-0.000109085318399593,1,0.000129897031001747,-0.000109109867480583,1,0.000129867650684901,-0.000109085187432356,1,6.76540068411668e-008,-5.68418307977936e-008,1,5.89414987928194e-008,-4.95217165052964e-008,1,5.02288841630616e-008,-4.22017336632052e-008,1,5.89413744478406e-008,-4.95218657192709e-008,1,-6.1115984863136e-005,-7.27394290152006e-005,1,-6.14208620390855e-005,-7.31022955733351e-005,1,-6.17257610429078e-005,-7.34651548555121e-005,1,-6.14208765910007e-005,-7.31022882973775e-005,1,-5.06355972902384e-005,4.25449688918889e-005,1,-5.06172800669447e-005,4.25295729655772e-005,1,-5.05988900840748e-005,4.25142534368206e-005,1,-5.06172145833261e-005,4.25296457251534e-005,1,-7.30204919818789e-005,6.13481533946469e-005,1,-7.30066967662424e-005,6.13365627941675e-005,1,-7.30204919818789e-005,6.13481679465622e-005,1,-7.3034294473473e-005,6.13597585470416e-005,1,-6.86380808474496e-005,-8.16946194390766e-005,1,-6.86050188960508e-005,-8.16552783362567e-005,1,-6.85719714965671e-005,-8.16159299574792e-005,1,-6.86050261720084e-005,-8.16552783362567e-005,1,3.1283652788261e-005,-2.62806315731723e-005,1,3.12914708047174e-005,-2.62871981249191e-005,1,3.1299285183195e-005,-2.62937664956553e-005,1,3.12914671667386e-005,-2.62871999439085e-005,1,-0.000357253040419891,-0.000425228179665282,0.999999940395355,-0.000358700286597013,-0.000426950864493847,0.999999940395355,-0.000360147561877966,-0.000428673491114751,0.999999940395355,-0.000358700286597013,-0.000426950864493847,0.999999940395355,-2.16410626308061e-006,1.81826567313692e-006,1,-2.18166292142996e-006,1.83301676770498e-006,1,-2.19921980715299e-006,1.84776786227303e-006,1,-2.18166292142996e-006,1.83301676770498e-006,1,0.00122707069385797,-0.00103102531284094,-0.999998807907104,0.00122707162518054,-0.00103102414868772,-0.999998807907104,
- 0.00122707162518054,-0.00103102426510304,-0.999998807907104,-0.000896904617547989,-0.00106759159825742,-0.999999046325684,-0.000896902522072196,-0.00106759334448725,-0.999999046325684,-0.000896904559340328,-0.00106759159825742,-0.999999046325684,-2.38091857340805e-007,-1.35547082891208e-007,1,-2.50701305049006e-007,-1.50556104472344e-007,1,-2.11733322430518e-007,-2.08896537401415e-007,1,-1.99123888933173e-007,-1.93887530031134e-007,1,-5.40338078280911e-007,6.68499069433892e-007,1,-5.48697869362513e-007,6.75522187520983e-007,1,-6.29055250556121e-007,5.9684413145078e-007,1,-6.2073132767182e-007,5.89778437642963e-007,1,-0.000256012455793098,-0.000304712593788281,1,4.64250774712127e-007,5.52563108158211e-007,1,-0.000256012543104589,-0.00030471250647679,1,-0.000512489292304963,-0.00060997752007097,0.999999701976776,-5.48920143046416e-005,4.61159979749937e-005,1,-0.00011006116255885,9.24648338695988e-005,1,-5.4892007028684e-005,4.61160088889301e-005,1,2.77137530702021e-007,-2.32829492574638e-007,1,5.67559873161372e-005,-4.75136366731022e-005,-1,2.83984154521022e-005,-2.37324675254058e-005,-1,1.94232967487551e-008,2.31611121392916e-008,-1,2.83770132227801e-005,-2.37579879467376e-005,-1,-0.000118936215585563,-0.000141481024911627,-1,-0.000237831191043369,-0.000282996683381498,-0.999999940395355,-0.000118914598715492,-0.000141499185701832,-1,-1.96309724032062e-008,1.64930380464057e-008,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.643272995948792,0.765637040138245,-0,0.64327198266983,0.765637755393982,-0,0.643272995948792,0.765637040138245,-0,0.643273890018463,0.765636146068573,-0,0.643271923065186,0.765637934207916,-6.56168749977454e-013,0.643271923065186,0.765637934207916,-1.31417820625757e-007,0.643271863460541,0.765637874603271,-2.62835129660743e-007,0.643271863460541,0.765637874603271,-1.31418005366868e-007,0.643271565437317,0.765638113021851,8.19088711523364e-007,0.643272161483765,0.765637636184692,8.19089564174647e-007,0.643272757530212,0.765637099742889,8.19090303139092e-007,0.643272161483765,0.765637636184692,8.19089564174647e-007,
- 0.643273949623108,0.765636086463928,-2.59084174558666e-007,0.643274009227753,0.765636086463928,-9.44184834483774e-013,0.643273949623108,0.765636086463928,-2.59084174558666e-007,0.643273949623108,0.765636086463928,-5.18167780683143e-007,0.0029434512834996,0.00350333075039089,0.99998950958252,-0.000124600832350552,-0.00015002406144049,1,0.00226854649372399,0.00269944244064391,0.999993801116943,0.0030051521025598,0.00357719091698527,0.999989092350006,2.59994594671298e-005,3.45961962011643e-005,-1,-0.00513410801067948,-0.00611005257815123,-0.999968111515045,-0.00513912877067924,-0.00611727358773351,-0.999968111515045,-0.00410797027871013,-0.00488828867673874,-0.999979615211487,0.00756402872502804,-0.0063506425358355,0.999951243400574,0.0073236245661974,-0.00614873412996531,0.999954342842102,0.00708300899714231,-0.00594707624986768,0.999957323074341,0.00732341315597296,-0.00614898651838303,0.999954342842102,0.00017762380593922,0.000211161677725613,1,0.000112743960926309,0.000134241883642972,1,0.000177530440851115,0.000211238628253341,1,-1.10205219243653e-005,-1.31218894239282e-005,-1,-1.24752759802504e-005,-1.54020581248915e-005,-1,-1.26276854643947e-005,-1.52739048644435e-005,-1,0.000112743960926309,0.000134241883642972,1,8.87901205715025e-006,1.07478263089433e-005,1,4.80076341773383e-005,5.72009230381809e-005,1,0.000177530440851115,0.000211238628253341,1,-1.41631016958854e-006,-1.68635722275212e-006,-1,-1.10205219243653e-005,-1.31218894239282e-005,-1,-1.26276854643947e-005,-1.52739048644435e-005,-1,-9.29596990317805e-006,-1.10684586616117e-005,-1,8.87901205715025e-006,1.07478263089433e-005,1,0.0014711213298142,0.00175166921690106,0.99999737739563,3.4600689104991e-005,4.12319313909393e-005,1,4.80076341773383e-005,5.72009230381809e-005,1,-0.00238771992735565,-0.0028429594822228,-0.999993085861206,-1.41631016958854e-006,-1.68635722275212e-006,-1,-9.29596990317805e-006,-1.10684586616117e-005,-1,4.73895715913386e-006,5.64249194212607e-006,-1,0.0014711213298142,0.00175166921690106,0.99999737739563,0.0029434512834996,0.00350333075039089,0.99998950958252,
- 0.0030051521025598,0.00357719091698527,0.999989092350006,3.4600689104991e-005,4.12319313909393e-005,1,-0.00513410801067948,-0.00611005257815123,-0.999968111515045,-0.00238771992735565,-0.0028429594822228,-0.999993085861206,4.73895715913386e-006,5.64249194212607e-006,-1,-0.00513912877067924,-0.00611727358773351,-0.999968111515045,2.25678803644769e-007,-6.50273705105064e-007,1,7.47060653338849e-007,-2.41034740611212e-007,1,9.29169232222193e-007,-1.52974720890597e-007,1,3.22388700624288e-007,-6.02446732500539e-007,1,7.47060653338849e-007,-2.41034740611212e-007,1,1.05193157651229e-006,0,1,1.26503664432676e-006,0,1,9.29169232222193e-007,-1.52974720890597e-007,1,1.50666096487839e-007,-5.68816176382825e-007,1,3.91955154555035e-007,-5.74648822748713e-007,1,4.77899334327958e-007,-5.2985205911682e-007,1,1.09172424345161e-006,-2.08406987667331e-007,1,3.91955154555035e-007,-5.74648822748713e-007,1,2.25678803644769e-007,-6.50273705105064e-007,1,3.22388700624288e-007,-6.02446732500539e-007,1,4.77899334327958e-007,-5.2985205911682e-007,1,-0,-0.000312128337100148,0.999999940395355,-0,-0.000312154705170542,0.999999940395355,-0,-0.000312181044137105,0.999999940395355,-0,-0.000312154705170542,0.999999940395355,1.00774109057511e-007,1.19948353471955e-007,1,7.80198874394955e-008,9.28646812781153e-008,1,5.52656658214801e-008,6.57810304005579e-008,1,7.80198945449229e-008,9.28646812781153e-008,1,0,0,1,0,0,1,0,0,1,0,0,1,4.99157799538352e-008,-4.19440588927955e-008,1,5.13035054439115e-008,-4.31101589981608e-008,1,5.26912309339878e-008,-4.42762591035262e-008,1,5.13035054439115e-008,-4.31101589981608e-008,1,8.74378969228928e-008,1.04071446571652e-007,1,9.08671040633635e-008,1.08152988786969e-007,1,9.42963112038342e-008,1.12234545213141e-007,1,9.08671040633635e-008,1.08152988786969e-007,1,2.56552823429956e-008,-2.15518056734254e-008,1,3.89680963053252e-008,-3.27352758233701e-008,1,5.2280906714941e-008,-4.39187459733148e-008,1,3.89680963053252e-008,-3.27352758233701e-008,1,-7.69669981082188e-008,6.46534985548897e-008,1,-1.01980958788772e-007,8.56656257042232e-008,1,
- -7.69669981082188e-008,6.46534985548897e-008,1,-5.19530338749519e-008,4.36413714055561e-008,1,4.09948128776705e-008,4.87975064800139e-008,1,4.23177368702454e-008,5.03722361600012e-008,1,4.36406679682477e-008,5.19469622872748e-008,1,4.23177368702454e-008,5.03722361600012e-008,1,0,0,1,0,0,1,0,0,1,0,0,1,7.64636922667705e-008,1.39313218738835e-008,1,5.80681458473009e-008,-8.06421507348887e-009,1,7.89836960279899e-008,1.68297855651645e-008,1,7.73368213913272e-008,1.4869645070803e-008,1,1.15651793919369e-007,6.09242007953981e-008,1,3.17421072395518e-005,1.36456520749562e-007,1,3.21524203172885e-005,-2.08335507068114e-007,1,3.25627333950251e-005,-5.53127563307498e-007,1,3.21524203172885e-005,-2.08335507068114e-007,1,-8.08745213021211e-008,6.79191174413063e-008,1,-7.9686508058785e-008,6.69214088588888e-008,1,-8.08745213021211e-008,6.79191174413063e-008,1,-8.20625416508847e-008,6.89168260237238e-008,1,6.25486507033202e-008,7.44401233987446e-008,1,3.12743253516601e-008,3.72200616993723e-008,1,-0,0,1,3.12743253516601e-008,3.72200616993723e-008,1,0,0,1,0,0,1,0,0,1,0,0,1,1.10690123733548e-007,1.31751733079e-007,1,8.65847198383563e-008,1.03059669243066e-007,1,6.24793230485921e-008,7.43676054071329e-008,1,8.65847198383563e-008,1.03059669243066e-007,1,6.46292619421729e-008,-5.43045395318131e-008,1,4.88586593405671e-008,-4.10533331773877e-008,1,3.30880531862476e-008,-2.78021339283896e-008,1,4.88586593405671e-008,-4.10533367301014e-008,1,-0.000907754292711616,-0.00108050613198429,-0.999998986721039,-0.000901621242519468,-0.00107320584356785,-0.999998986721039,-0.000895860488526523,-0.00106634886469692,-0.999999046325684,-0.000902216823305935,-0.00107391481287777,-0.999998986721039,-0.000914259639102966,-0.00108824938070029,-0.999998986721039,-0.00120169448200613,0.00100957904942334,-0.999998867511749,-0.00120170915033668,0.00100959138944745,-0.999998867511749,-0.00120169459842145,0.00100957881659269,-0.999998867511749,-0.0012016799300909,0.00100956647656858,-0.999998867511749,-0.64775151014328,-0.761851608753204,-0.000321017345413566,
- -0.644953966140747,-0.764221489429474,-0.000296892743790522,-0.642147600650787,-0.766580998897552,-0.000272764329565689,-0.644953966140747,-0.764221489429474,-0.000296892743790522,-1.67669566053519e-006,-1.99653254639998e-006,1,-1.28045394376386e-006,-1.76305127297383e-006,1,-1.54683743858186e-006,-2.02240221369721e-006,1,-1.80960375928407e-006,-2.1548926270043e-006,1,9.2918338623349e-007,7.057814741529e-007,-1,5.09609662913135e-007,6.06820094617433e-007,-1,5.10766426486953e-007,6.08227310294751e-007,-1,6.29552005193545e-007,4.45495828671483e-007,-1,-1.28045394376386e-006,-1.76305127297383e-006,1,-1.05966978480865e-006,-1.58859779730847e-006,1,-1.36783501147875e-006,-1.77005381374329e-006,1,-1.2818919685742e-006,-1.69114287018601e-006,1,-1.54683743858186e-006,-2.02240221369721e-006,1,2.53327525570057e-005,5.60491707801702e-006,1,2.01959319383604e-005,-5.67905090065324e-007,1,1.50591122292099e-005,-6.74072862238972e-006,1,2.01959319383604e-005,-5.67905090065324e-007,1,-0.641205430030823,-0.767368495464325,-0.00111769663635641,-0.641205728054047,-0.767368733882904,-0.000692655798047781,-0.641205489635468,-0.76736843585968,-0.00111769663635641,-0.641205072402954,-0.767368018627167,-0.00154273735824972,-0.646209001541138,-0.763160288333893,-0.00072865653783083,-0.646208703517914,-0.763159930706024,-0.00115556281525642,-0.6462082862854,-0.763159453868866,-0.00158246885985136,-0.646208703517914,-0.763159930706024,-0.00115556281525642,-1.85551766662684e-006,-2.20992660615593e-006,1,-1.67669566053519e-006,-1.99653254639998e-006,1,-1.80960375928407e-006,-2.1548926270043e-006,1,-1.99347823581775e-006,-2.37423864746233e-006,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-3.35715503751999e-006,-1.64010777181645e-010,-1,-3.35715526489366e-006,2.02615701994091e-015,-1,-3.35715526489366e-006,1.64014801740109e-010,-1,-3.35715526489366e-006,2.019218126037e-015,-1,2.84887846646598e-007,-0,-1,2.37406567293874e-007,0,-1,1.89925302152005e-007,0,-1,2.37406567293874e-007,0,-1,-1.53724940332722e-007,0,-1,-1.53724940332722e-007,0,-1,-1.53724940332722e-007,0,-1,
- -1.53724940332722e-007,0,-1,-2.47257260578061e-015,-8.53192219096854e-008,-1,-4.94514436452827e-015,-1.70638443819371e-007,-1,-2.47257239402237e-015,-8.53192219096854e-008,-1,-0,0,-1,1,-6.15899239164719e-007,-0,1,-6.15899239164719e-007,0,1,-6.15899239164719e-007,0,1,-6.15899239164719e-007,0,-5.52742107049224e-015,1.90730617077861e-007,-1,-4.94513674123174e-015,1.70638188023986e-007,-1,-5.52742107049224e-015,1.90730617077861e-007,-1,-6.10970497623626e-015,2.10823060342591e-007,-1,-1,-0,0,-1,-1.00599481811514e-005,-8.10808978712885e-006,-1,-2.01198963623028e-005,-1.62161795742577e-005,-1,-1.00599481811514e-005,-8.10808978712885e-006,-1,5.79257975914516e-005,4.92962753924076e-005,-1,5.77069986320566e-005,4.91124555992428e-005,-1,5.74881996726617e-005,4.89286321680993e-005,-1,5.77069949940778e-005,4.91124592372216e-005,-1,-0.000139005031087436,0.000164866069098935,-1,-0.00013880712504033,0.000164630560902879,-1,-0.000138609248097055,0.000164395023602992,-1,-0.000138807110488415,0.000164630560902879,-1,-9.67636538007355e-007,1.15155012281321e-006,-1,-9.60483589551586e-007,1.14303793452564e-006,-1,-9.53330754782655e-007,1.13452563255123e-006,-1,-9.60483703238424e-007,1.14303770715196e-006,-1,6.10181341471616e-005,5.12657097715419e-005,-1,6.08231603109743e-005,5.11018952238373e-005,-1,6.06281828368083e-005,5.09380806761328e-005,-1,6.08231566729955e-005,5.11018952238373e-005,-1,3.96546383854002e-005,-4.7205132432282e-005,-1,3.96751202060841e-005,-4.72295105282683e-005,-1,3.96955983887892e-005,-4.72538886242546e-005,-1,3.96751202060841e-005,-4.72295141662471e-005,-1,4.96688044222537e-005,-5.91279967920855e-005,-1,4.96942047902849e-005,-5.91582393099088e-005,-1,4.96688044222537e-005,-5.91279967920855e-005,-1,4.96434004162438e-005,-5.90977542742621e-005,-1,-4.06547078455333e-005,-3.41540981025901e-005,-1,-4.06284671043977e-005,-3.41320519510191e-005,-1,-4.06022263632622e-005,-3.41100057994481e-005,-1,-4.06284671043977e-005,-3.41320555889979e-005,-1,3.01830150419846e-005,-3.59371806553099e-005,-1,3.02250500681112e-005,-3.59872283297591e-005,
- -1,3.02670869132271e-005,-3.60372760042083e-005,-1,3.02250500681112e-005,-3.59872283297591e-005,-1,-6.17468413111055e-006,-5.18787555847666e-006,-1,-5.96928293816745e-006,-5.0153003030573e-006,-1,-5.763881290477e-006,-4.84272595713264e-006,-1,-5.96928293816745e-006,-5.0153003030573e-006,-1,8.91921354195802e-006,-1.06136976683047e-005,-1,8.92499156179838e-006,-1.06205716292607e-005,-1,8.93076776264934e-006,-1.06274464997114e-005,-1,8.92499065230368e-006,-1.06205725387554e-005,-1,0.00016517867334187,0.000138773117214441,-1,0.000164980679983273,0.000138606803375296,-1,0.000164782715728506,0.000138440460432321,-1,0.000164980694535188,0.000138606788823381,-1,4.47556558356155e-005,-5.29252647538669e-005,-1,4.50109364464879e-005,-5.32291560375597e-005,-1,4.52662097814027e-005,-5.35330473212525e-005,-1,4.50109364464879e-005,-5.32291523995809e-005,-1,9.94179117697058e-007,-1.34684887598269e-006,-1,7.70819156059588e-007,-1.080974470824e-006,-1,5.47458967048442e-007,-8.15100179352157e-007,-1,7.7081904237275e-007,-1.080974470824e-006,-1,-5.05618554598186e-005,-4.23644632974174e-005,-1,-5.03190967720002e-005,-4.21605036535766e-005,-1,-5.00763417221606e-005,-4.19565440097358e-005,-1,-5.0319100409979e-005,-4.21605000155978e-005,-1,2.50558287007152e-006,-2.98283634947438e-006,-1,2.46356285060756e-006,-2.93281300400849e-006,-1,2.42154305851727e-006,-2.88278943116893e-006,-1,2.46356307798123e-006,-2.93281277663482e-006,-1,6.55699404887855e-005,-7.98341498011723e-005,-1,6.62817765260115e-005,-8.06815369287506e-005,-1,6.55699404887855e-005,-7.98341498011723e-005,-1,6.48581044515595e-005,-7.89867626735941e-005,-1,-4.57272653875407e-006,-3.84166833100608e-006,-1,-4.55240478913765e-006,-3.82459484171704e-006,-1,-4.53208258477389e-006,-3.80752203454904e-006,-1,-4.55240478913765e-006,-3.82459529646439e-006,-1,2.08878354897024e-005,-2.48598516918719e-005,-1,2.09127338166581e-005,-2.4889484848245e-005,-1,2.09376321436139e-005,-2.49191180046182e-005,-1,2.09127338166581e-005,-2.4889484848245e-005,-1,-0.000145484300446697,-0.000122230732813478,
- -1,-0.000145128055009991,-0.000121931458124891,-1,-0.000144771824125201,-0.000121632168884389,-1,-0.000145128069561906,-0.000121931443572976,-1,5.16674881509971e-005,-6.14827367826365e-005,-1,5.16621585120447e-005,-6.14763994235545e-005,-1,5.16568288730923e-005,-6.1470054788515e-005,-1,5.16621585120447e-005,-6.14763994235545e-005,-1,-4.10704669775441e-005,-3.45050430041738e-005,-1,-4.11341825383715e-005,-3.45585795002989e-005,-1,-4.11978980991989e-005,-3.46121087204665e-005,-1,-4.11341825383715e-005,-3.45585722243413e-005,-1,-2.38951979554258e-005,2.84470079350285e-005,-1,-2.39099190366687e-005,2.84645357169211e-005,-1,-2.39246401179116e-005,2.84820598608349e-005,-1,-2.39099190366687e-005,2.84645338979317e-005,-1,-1.05345441170357e-006,1.14490501346154e-006,-1,-1.07881942312815e-006,1.17510148811562e-006,-1,-1.10418454823957e-006,1.20529796276969e-006,-1,-1.07881942312815e-006,1.17510160180245e-006,-1,6.46160915493965e-005,5.42857997061219e-005,-1,6.44762912997976e-005,5.4168347560335e-005,-1,6.43364983261563e-005,5.40509026905056e-005,-1,6.44762912997976e-005,5.41683511983138e-005,-1,2.04939333343646e-005,-2.43951617449056e-005,-1,2.05454143724637e-005,-2.44564416789217e-005,-1,2.05968935915735e-005,-2.45177216129377e-005,-1,2.05454143724637e-005,-2.44564416789217e-005,-1,-0.000170762228663079,0.000203254458028823,-1,-0.000170728701050393,0.000203214542125352,-1,-0.000170762228663079,0.000203254458028823,-1,-0.000170795756275766,0.000203294359380379,-1,-2.16792818719114e-006,-1.82137614501698e-006,-1,-2.17435172089608e-006,-1.82677263182995e-006,-1,-2.18077525460103e-006,-1.8321693460166e-006,-1,-2.17435172089608e-006,-1.82677285920363e-006,-1,1.91823110071709e-005,-2.28374083235394e-005,-1,1.9125422113575e-005,-2.27696800720878e-005,-1,1.90685332199791e-005,-2.27019500016468e-005,-1,1.9125422113575e-005,-2.27696800720878e-005,-1,-3.3094944228651e-005,-2.79157211480197e-005,-1,-3.30050352204125e-005,-2.78401839750586e-005,-1,-3.29151262121741e-005,-2.7764648621087e-005,-1,-3.30050352204125e-005,-2.7840185794048e-005,
- -1,-4.27350678364746e-005,5.07626718899701e-005,-1,-4.26866972702555e-005,5.07051081513055e-005,-1,-4.26383230660576e-005,5.06475444126409e-005,-1,-4.26866936322767e-005,5.07051081513055e-005,-1,-0.000102127705758903,-8.58024650369771e-005,-1,-0.000102103163953871,-8.57818522490561e-005,-1,-0.000102078629424796,-8.57612467370927e-005,-1,-0.000102103171229828,-8.57818522490561e-005,-1,3.11446274281479e-005,-3.7078294553794e-005,-1,3.1184586987365e-005,-3.71258611266967e-005,-1,3.12245356326457e-005,-3.71734313375782e-005,-1,3.11845833493862e-005,-3.71258611266967e-005,-1,2.9017394354014e-006,-3.45365992870939e-006,-1,2.90741422759311e-006,-3.46041451848578e-006,-1,2.9130892471585e-006,-3.46716888088849e-006,-1,2.90741445496678e-006,-3.4604142911121e-006,-1,-6.52201269986108e-005,-5.47982745047193e-005,-1,-6.52173475828022e-005,-5.47959352843463e-005,-1,-6.52145754429512e-005,-5.4793603339931e-005,-1,-6.52173475828022e-005,-5.4795942560304e-005,-1,1.6727495676605e-005,-1.99083824554691e-005,-1,1.67176258401014e-005,-1.98966336029116e-005,-1,1.67077560035978e-005,-1.98848847503541e-005,-1,1.67176258401014e-005,-1.98966336029116e-005,-1,4.47429629275575e-005,-5.32561170984991e-005,-1,4.47239181085024e-005,-5.32334452145733e-005,-1,4.47429629275575e-005,-5.32561170984991e-005,-1,4.47620113845915e-005,-5.32787889824249e-005,-1,6.19073398411274e-005,5.20131652592681e-005,-1,6.18600606685504e-005,5.19734421686735e-005,-1,6.18127887719311e-005,5.19337227160577e-005,-1,6.18600606685504e-005,5.19734458066523e-005,-1,2.06022741622292e-005,-2.54247097473126e-005,-1,2.10036268981639e-005,-2.59025000559632e-005,-1,2.14049778151093e-005,-2.63802940025926e-005,-1,2.10036232601851e-005,-2.5902503693942e-005,-1,0.000160321971634403,0.000134693676955067,-1,0.000159452203661203,0.000133962923428044,-1,0.000158582435688004,0.000133232184452936,-1,0.000159452203661203,0.000133962937979959,-1,1.22121741696901e-006,-1.45349758895463e-006,-1,1.25235703762883e-006,-1.49056018017291e-006,-1,1.28349677197548e-006,-1.52762277139118e-006,-1,1.25235715131566e-006,-1.49056018017291e-006,
- -1,8.77829370438121e-006,-1.04527271105326e-005,-1,8.56674068927532e-006,-1.02008207250037e-005,-1,8.77829370438121e-006,-1.04527271105326e-005,-1,8.9898467194871e-006,-1.07046334960614e-005,-1,-0.000159075949341059,-0.000133663983433507,-1,-0.000158758397446945,-0.000133397174067795,-1,-0.000158440860104747,-0.000133130335598253,-1,-0.000158758397446945,-0.00013339715951588,-1,-1.62772048497573e-005,1.93731739273062e-005,-1,-1.627634264878e-005,1.9372149836272e-005,-1,-1.62754822667921e-005,1.93711239262484e-005,-1,-1.627634264878e-005,1.9372149836272e-005,-1,6.96096903993748e-005,5.84819463256281e-005,-1,6.98758813086897e-005,5.87055837968364e-005,-1,7.01420722180046e-005,5.89292212680448e-005,-1,6.98758813086897e-005,5.87055837968364e-005,-1,-1.29752388602356e-005,1.54421468323562e-005,-1,-1.29677400764194e-005,1.5433221051353e-005,-1,-1.29602394736139e-005,1.54242970893392e-005,-1,-1.29677391669247e-005,1.5433221051353e-005,0.999998807907104,-0.00102179555688053,0.00121581659186631,0.999998867511749,-0.00101304135750979,0.00120539788622409,0.999998807907104,-0.00102179555688053,0.00121581659186631,0.999998807907104,-0.00103054963983595,0.00122623529750854,0.999999225139618,-0.000953035370912403,-0.000800467329099774,0.999999165534973,-0.00100952864158899,-0.000847928458824754,0.999999046325684,-0.00106602197047323,-0.000895389763172716,0.999999165534973,-0.00100952864158899,-0.000847928575240076,0.999998867511749,0.00100809952709824,-0.00119735510088503,0.999998807907104,0.00102219998370856,-0.00121413893066347,0.999998807907104,0.00103630044031888,-0.00123092299327254,0.999998807907104,0.00102219998370856,-0.00121413904707879,-1,-3.84933002806065e-007,-3.23392157497437e-007,-1,-3.95510028283752e-007,-3.32278204950853e-007,-1,-3.84932974384355e-007,-3.23392185919147e-007,-1,-3.74355977328378e-007,-3.14506138465731e-007,-1,3.72705414974916e-007,-4.4364372797645e-007,-1,3.84419990950846e-007,-4.57587958635486e-007,-1,3.72705414974916e-007,-4.4364372797645e-007,-1,3.60990838998987e-007,-4.29699497317415e-007,-1,-1.57934864546405e-005,-1.32693185150856e-005,
- -1,-7.71386112319306e-006,-6.48100558464648e-006,-1,3.6576494721885e-007,3.07307203684104e-007,-1,-7.71386112319306e-006,-6.48100558464648e-006,-1,-4.06136138053625e-007,4.83424571484647e-007,-1,-0.000228938588406891,0.000272506003966555,-0.999999761581421,-0.000457470974652097,0.000544528535101563,-1,-0.000228938588406891,0.000272506003966555,1,1.19983133117785e-005,-1.4307279343484e-005,1,5.34964925691384e-008,-6.37914041590193e-008,1,1.19983124022838e-005,-1.4307279343484e-005,1,2.39431283262093e-005,-2.8550768547575e-005,1,-0,0,1,4.41156553279143e-005,3.70639354514424e-005,1,8.82313106558286e-005,7.41278709028848e-005,1,4.41156553279143e-005,3.70639354514424e-005,1,-0,-0,1,-0,-0,1,-0,-0,1,-0,-0,-0.999993443489075,-0.00276171928271651,-0.00231893942691386,-0.999996304512024,-0.00210256222635508,-0.00176495034247637,-1,6.51101508992724e-005,5.56229460926261e-005,-0.999993622303009,-0.00271868030540645,-0.00228264019824564,0.999987602233887,0.00381528749130666,0.00320258736610413,0.99998140335083,0.00466981856152415,0.00392102403566241,0.999980807304382,0.0047480883076787,0.00398646807298064,1,0.000107816646050196,8.8753062300384e-005,-0.999944746494293,-0.00675809802487493,0.00805132370442152,-0.999944865703583,-0.00675070052966475,0.00804251525551081,-0.999944746494293,-0.00675809802487493,0.00805132370442152,-0.999944627285004,-0.00676549598574638,0.00806013215333223,-1,0.000344698462868109,0.000289479765342548,-1,0.000106606596091297,8.95356279215775e-005,-1,1.16407391033135e-005,9.77672607405111e-006,-1,0.000225655778194778,0.000189512909855694,1,0.000180416944203898,0.000151653162902221,1,0.000125144797493704,0.00010509742423892,1,0.000125097212730907,0.000105057464679703,1,0.000152808846905828,0.000128329877043143,1,0.000144345714943483,0.000121399432828184,-1,0.000106606596091297,8.95356279215775e-005,-1,3.57031349267345e-005,2.99857547361171e-005,-1,3.87359141313937e-005,3.25327528116759e-005,-1,1.16407391033135e-005,9.77672607405111e-006,1,8.06155148893595e-005,6.79428849252872e-005,1,0.000180416944203898,0.000151653162902221,
- 1,0.000144345714943483,0.000121399432828184,1,1.38978994073113e-005,1.19113483378896e-005,-1,3.57031349267345e-005,2.99857547361171e-005,-1,1.7709773601382e-005,1.48737581184832e-005,-1,-2.34734234254574e-005,-1.97144654521253e-005,-1,3.87359141313937e-005,3.25327528116759e-005,1,1.0916644896497e-005,9.32461261982098e-006,1,8.06155148893595e-005,6.79428849252872e-005,1,1.38978994073113e-005,1.19113483378896e-005,1,-3.7216490454739e-005,-3.11267249344382e-005,-1,1.7709773601382e-005,1.48737581184832e-005,-1,-4.36238115071319e-005,-3.66381391359027e-005,-0.999998509883881,-0.00135945482179523,-0.00114175933413208,-1,-2.34734234254574e-005,-1.97144654521253e-005,1,-8.23131267679855e-005,-6.90920787747018e-005,1,1.0916644896497e-005,9.32461261982098e-006,1,-3.7216490454739e-005,-3.11267249344382e-005,0.999996185302734,0.00211953721009195,0.00178016186691821,-1,-4.36238115071319e-005,-3.66381391359027e-005,-0.999993443489075,-0.00276171928271651,-0.00231893942691386,-0.999993622303009,-0.00271868030540645,-0.00228264019824564,-0.999998509883881,-0.00135945482179523,-0.00114175933413208,0.99998140335083,0.00466981856152415,0.00392102403566241,1,-8.23131267679855e-005,-6.90920787747018e-005,0.999996185302734,0.00211953721009195,0.00178016186691821,0.999980807304382,0.0047480883076787,0.00398646807298064,0.000226951524382457,-0.767544567584991,-0.640995562076569,0.000252050580456853,-0.765145897865295,-0.643857002258301,0.00027714591124095,-0.762736439704895,-0.646709382534027,0.000252050784183666,-0.765145897865295,-0.643857002258301,-1,-1.4066226583509e-007,7.32874241293757e-007,-1,-2.80052972811973e-007,7.58258863697847e-007,-1,-7.45517354516778e-007,2.33922150982835e-007,-1,-6.61987201056036e-007,3.14500368858717e-007,-1,0,6.00242060500022e-007,-1,0,7.37853156351775e-007,-1,-2.80052972811973e-007,7.58258863697847e-007,-1,-1.4066226583509e-007,7.32874241293757e-007,-1,-6.11715563536563e-007,5.6780896784403e-007,-1,-8.17696843569138e-007,8.56395843129576e-007,-1,-9.73212195276574e-007,1.01327805168694e-006,-1,-6.0563269244085e-007,1.00809063496854e-006,
- -1,-6.61987201056036e-007,3.14500368858717e-007,-1,-7.45517354516778e-007,2.33922150982835e-007,-1,-8.17696843569138e-007,8.56395843129576e-007,-1,-6.11715563536563e-007,5.6780896784403e-007,-1,0.000228527977014892,-0,-1,0.000228527977014892,0,-1,0.000228527977014892,0,-1,0.000228527977014892,0,-1,-7.06782316228782e-007,8.41165103793173e-007,-1,-7.35864887246862e-007,8.75777232067776e-007,-1,-7.64947458264942e-007,9.10389417185797e-007,-1,-7.35864887246862e-007,8.75777232067776e-007,-1,0.000122900237329304,0.000103247577499133,-1,0.000122850731713697,0.000103205966297537,-1,0.000122900237329304,0.000103247577499133,-1,0.000122949772048742,0.000103289181424771,-1,-5.23117450939026e-005,6.225462857401e-005,-1,-5.23486523889005e-005,6.22985535301268e-005,-1,-5.23855633218773e-005,6.2342471210286e-005,-1,-5.23486523889005e-005,6.22985535301268e-005,-1,6.4039406424854e-005,-7.62292620493099e-005,-1,6.40735379420221e-005,-7.62698764447123e-005,-1,6.41076694591902e-005,-7.63104981160723e-005,-1,6.40735379420221e-005,-7.62698764447123e-005,-1,-5.06148353451863e-005,6.0240719903959e-005,-1,-5.06055366713554e-005,6.0229649534449e-005,-1,-5.05962343595456e-005,6.02185828029178e-005,-1,-5.06055366713554e-005,6.0229649534449e-005,-1,-1.67479611263843e-005,1.99351816263516e-005,-1,-1.67923899425659e-005,1.99880651052808e-005,-1,-1.68368205777369e-005,2.00409504031995e-005,-1,-1.67923899425659e-005,1.99880651052808e-005,-1,-7.08706647856161e-005,-6.00194434809964e-005,-1,-7.07261642673984e-005,-5.98980295762885e-005,-1,-7.08706720615737e-005,-6.00194398430176e-005,-1,-7.1015179855749e-005,-6.01408501097467e-005,-1,3.30272341670934e-005,-3.89659617212601e-005,-1,3.31045448547229e-005,-3.90579953091219e-005,-1,3.31818482663948e-005,-3.91500325349625e-005,-1,3.31045412167441e-005,-3.90579953091219e-005,-1,-3.83123369829264e-005,4.54441833426245e-005,-1,-3.83742153644562e-005,4.55178451375104e-005,-1,-3.84360973839648e-005,4.55915105703752e-005,-1,-3.83742153644562e-005,4.55178487754893e-005,-1,-1.59408828039886e-005,1.89721358765382e-005,
- -1,-1.5937395801302e-005,1.89679849427193e-005,-1,-1.5933906979626e-005,1.89638340089004e-005,-1,-1.5937395801302e-005,1.89679849427193e-005,-1,-5.33124293724541e-005,6.3468141888734e-005,-1,-5.3356616263045e-005,6.35207470622845e-005,-1,-5.34007995156571e-005,6.35733595117927e-005,-1,-5.33566126250662e-005,6.35207543382421e-005,-1,-0.000102810990938451,-8.63732711877674e-005,-1,-0.000102455087471753,-8.60742657096125e-005,-1,-0.000102810990938451,-8.63732711877674e-005,-1,-0.000103166894405149,-8.66722693899646e-005,-1,-2.52829559030943e-005,3.00289830192924e-005,-1,-2.52567861025454e-005,2.99978382827248e-005,-1,-2.52306199399754e-005,2.99666899081785e-005,-1,-2.52567879215349e-005,2.9997834644746e-005,-1,-7.64305059419712e-006,9.09650407265872e-006,-1,-7.66874472901691e-006,9.12708310352173e-006,-1,-7.69443886383669e-006,9.15766395337414e-006,-1,-7.66874472901691e-006,9.12708401301643e-006,-1,-8.80943989614025e-005,0.00010480285709491,-1,-8.80798179423437e-005,0.000104785489384085,-1,-8.8065215095412e-005,0.000104768143501133,-1,-8.80798033904284e-005,0.000104785503936,-1,-4.30938089266419e-005,5.13017912453506e-005,-1,-4.31193329859525e-005,5.13321720063686e-005,-1,-4.31448534072842e-005,5.13625564053655e-005,-1,-4.31193329859525e-005,5.13321720063686e-005,-1,-4.59469129054924e-006,-3.86008741770638e-006,-1,-4.39524637840805e-006,-3.69253029930405e-006,-1,-4.59469174529659e-006,-3.86008741770638e-006,-1,-4.79413665743778e-006,-4.02764499085606e-006,-1,-2.78891075140564e-005,3.31882292812224e-005,-1,-2.7904692615266e-005,3.3206775697181e-005,-1,-2.79202777164755e-005,3.32253221131396e-005,-1,-2.7904692615266e-005,3.3206775697181e-005,-1,4.62024472653866e-005,-5.50012919120491e-005,-1,4.62158568552695e-005,-5.50172553630546e-005,-1,4.62292628071737e-005,-5.50332188140601e-005,-1,4.62158532172907e-005,-5.50172553630546e-005,-1,-7.1940194175113e-005,8.53960882523097e-005,-1,-7.18802912160754e-005,8.53247765917331e-005,-1,-7.18203809810802e-005,8.52534722071141e-005,-1,-7.18802912160754e-005,8.53247765917331e-005,-1,1.31325941765681e-005,-1.56289297592593e-005,
- -1,1.30773296405096e-005,-1.55631569214165e-005,-1,1.30220641949563e-005,-1.54973877215525e-005,-1,1.30773296405096e-005,-1.55631569214165e-005,-0.00288920383900404,-0.766672134399414,-0.642032325267792,-0.0028892366681248,-0.766648054122925,-0.642061114311218,-0.00288927042856812,-0.76662403345108,-0.642089903354645,-0.0028892366681248,-0.766648054122925,-0.642061114311218,-0.00135729426983744,-0.765655755996704,-0.643249154090881,-0.00136913720052689,-0.765655696392059,-0.643249213695526,-0.00135729426983744,-0.765655755996704,-0.643249154090881,-0.00134545133914799,-0.765655696392059,-0.643249213695526,-0.00367650669068098,-0.765205979347229,-0.643775045871735,-0.00367652135901153,-0.765197694301605,-0.643784880638123,-0.00367650669068098,-0.765205979347229,-0.643775045871735,-0.00367649272084236,-0.765214264392853,-0.643765211105347,-0.00427149049937725,-0.765649378299713,-0.643243968486786,-0.00428254529833794,-0.765649318695068,-0.643243908882141,-0.00429359963163733,-0.765649259090424,-0.643243968486786,-0.00428254529833794,-0.765649318695068,-0.643244028091431,0.999999165534973,0.00104715011548251,0.000882556312717497,0.999999165534973,0.00104761554393917,0.000882947468198836,0.999999165534973,0.00104715011548251,0.000882556370925158,0.999999165534973,0.00104668468702585,0.000882165273651481,1,-3.37955334828166e-008,-2.56712446855545e-008,1,-6.75910669656332e-008,-5.1342489371109e-008,1,-3.37955334828166e-008,-2.56712446855545e-008,1,0,-0,0,0.765636146068573,0.643273890018463,0,0.765637218952179,0.643272638320923,0,0.765636146068573,0.643273890018463,0,0.765635073184967,0.643275141716003,1.5691179555688e-007,0.76563686132431,0.643272995948792,3.13825353259745e-007,0.765636920928955,0.643273115158081,1.56911411863803e-007,0.765636920928955,0.643273115158081,-2.48747203390742e-012,0.765636920928955,0.643273115158081,-0,0.765637576580048,0.643272221088409,-0,0.765637040138245,0.643272817134857,-0,0.765636503696442,0.643273413181305,-0,0.765637040138245,0.643272817134857,6.24379993041657e-007,0.765635669231415,0.643274426460266,
- 4.83841063214641e-007,0.765635669231415,0.643274486064911,3.43301280736341e-007,0.76563572883606,0.643274426460266,4.83840494780452e-007,0.76563572883606,0.643274426460266,0.000329249654896557,-0.761909604072571,-0.647683262825012,0.000299963518045843,-0.7642502784729,-0.644919693470001,0.000270673161139712,-0.766580998897552,-0.642147600650787,0.000299963081488386,-0.7642502784729,-0.644919693470001,0.00151358998846263,-0.767367959022522,-0.641205370426178,0.00110571354161948,-0.767368316650391,-0.641205668449402,0.000697837152983993,-0.76736855506897,-0.641205906867981,0.00110571354161948,-0.767368376255035,-0.641205608844757,0.00114126037806273,-0.763160526752472,-0.646207988262177,0.00153617362957448,-0.763160049915314,-0.646207690238953,0.00114126037806273,-0.763160526752472,-0.646207988262177,0.000746347068343312,-0.763160824775696,-0.646208345890045,1,6.12353390216924e-010,2.49833590260096e-007,1,1.025659002174e-009,4.18457830164698e-007,1,6.12353390216924e-010,2.49833590260096e-007,1,1.99047819893217e-010,8.12093716717754e-008,1,-3.36816701747011e-005,8.61343636415768e-008,1,-3.35924196406268e-005,8.59061231039959e-008,1,-3.35031727445312e-005,8.56778896718424e-008,1,-3.35924196406268e-005,8.59061231039959e-008,1,4.16211221032897e-014,-4.4759966044694e-007,1,4.16088740068724e-014,-4.47467982667149e-007,1,4.15966326867186e-014,-4.47336304887358e-007,1,4.16088773950041e-014,-4.47467982667149e-007,1,-0.000241738191107288,0,1,-0.000120824537589215,0,1,8.91101237243674e-008,0,1,-0.000120824537589215,0,-1,0,-1.49365831703108e-007,-1,0,-6.02028876528493e-007,-1,0,-1.05469189293217e-006,-1,0,-6.02028876528493e-007,-1,-9.73212195276574e-007,1.01327805168694e-006,-1,-5.32744195425039e-007,7.62070158089045e-007,-1,-1.33162004090082e-007,7.62059130465786e-007,-1,-6.0563269244085e-007,1.00809063496854e-006,-1,0.000344758736900985,0.000289469608105719,-1,0.000344698462868109,0.000289479765342548,-1,0.000225655778194778,0.000189512909855694,0,-0.765649914741516,-0.64325749874115,0,-0.765641808509827,-0.643267154693604,0,-0.765633642673492,-0.643276870250702,
- 0,-0.765641808509827,-0.643267154693604,0,-0.765669226646423,-0.643234670162201,0,-0.765669345855713,-0.643234372138977,0,-0.765669584274292,-0.643234074115753,0,-0.765669345855713,-0.643234372138977,0,-0.765640318393707,-0.643268942832947,0,-0.765641570091248,-0.643267571926117,0,-0.765642642974854,-0.643266141414642,0,-0.765641570091248,-0.643267571926117,0,-0.765666842460632,-0.643237352371216,0,-0.765649199485779,-0.643258333206177,0,-0.76563161611557,-0.643279433250427,0,-0.765649199485779,-0.643258333206177,0,-0.765635907649994,-0.643274307250977,0,-0.765639901161194,-0.643269419670105,0,-0.765644013881683,-0.643264532089233,0,-0.765639901161194,-0.643269419670105,0,-0.765652418136597,-0.643254697322845,0,-0.765636682510376,-0.643273234367371,0,-0.76562112569809,-0.643291771411896,0,-0.765636682510376,-0.643273234367371,0,-0.765640258789063,-0.643269002437592,0,-0.765659809112549,-0.643245875835419,0,-0.765679180622101,-0.643222630023956,0,-0.765659809112549,-0.643245875835419,0,-0.765645980834961,-0.643262207508087,0,-0.765647411346436,-0.643260478973389,0,-0.765648901462555,-0.643258690834045,0,-0.765647411346436,-0.643260478973389,0,-0.7656569480896,-0.643249154090881,0,-0.765652716159821,-0.643254160881042,0,-0.765648484230042,-0.643259227275848,0,-0.765652716159821,-0.643254160881042,0,-0.765643417835236,-0.643265247344971,0,-0.765647768974304,-0.643260061740875,0,-0.765652120113373,-0.64325487613678,0,-0.765647768974304,-0.643260061740875,0,-0.765651106834412,-0.643256068229675,0,-0.765650987625122,-0.643256187438965,0,-0.765650928020477,-0.643256306648254,0,-0.765650987625122,-0.643256187438965,0,-0.765660285949707,-0.643245160579681,0,-0.765653729438782,-0.643252968788147,0,-0.765647113323212,-0.643260836601257,0,-0.765653729438782,-0.643252968788147,0,-0.765656650066376,-0.64324951171875,0,-0.765651226043701,-0.643255949020386,0,-0.765645802021027,-0.643262445926666,0,-0.765651226043701,-0.643255949020386,0,-0.765649855136871,-0.643257558345795,0,-0.765645623207092,-0.643262624740601,0,-0.765641391277313,-0.643267631530762,
- 0,-0.765645623207092,-0.643262624740601,0,-0.765653073787689,-0.643253743648529,0,-0.765653610229492,-0.643253087997437,0,-0.765654146671295,-0.643252491950989,0,-0.765653610229492,-0.643253087997437,0,-0.765648722648621,-0.643258929252625,0,-0.765649795532227,-0.643257617950439,0,-0.765650928020477,-0.643256306648254,0,-0.765649795532227,-0.643257617950439,0,-0.765659511089325,-0.643246114253998,0,-0.765652894973755,-0.643253922462463,0,-0.76564633846283,-0.643261790275574,0,-0.765652894973755,-0.643253922462463,0,-0.76562774181366,-0.643283903598785,0,-0.765641152858734,-0.643267929553986,0,-0.765654563903809,-0.643251955509186,0,-0.765641152858734,-0.643267929553986,0,-0.765637874603271,-0.643271863460541,0,-0.765640676021576,-0.643268465995789,0,-0.76564347743988,-0.643265128135681,0,-0.765640676021576,-0.643268465995789,0,-0.765650689601898,-0.643256545066834,0,-0.76564884185791,-0.64325886964798,0,-0.765646934509277,-0.643261194229126,0,-0.76564884185791,-0.64325886964798,0,-0.765608966350555,-0.643306374549866,0,-0.765628337860107,-0.643283188343048,0,-0.765647768974304,-0.643260061740875,0,-0.765628337860107,-0.643283188343048,0,-0.765652060508728,-0.643254935741425,0,-0.76565283536911,-0.643254041671753,0,-0.765653610229492,-0.643253087997437,0,-0.76565283536911,-0.643254041671753,-0,0.765658318996429,0.643247485160828,-0,0.765734195709229,0.643157303333282,-0,0.765809893608093,0.643067002296448,-0,0.765734195709229,0.643157303333282,-2.43689797230218e-008,-0.765622198581696,-0.643290638923645,-4.29987103700569e-008,-0.765602707862854,-0.643313825130463,-6.15651529756178e-008,-0.765583157539368,-0.643336951732636,-4.29612718733097e-008,-0.765602707862854,-0.643313825130463,0,-0.766584753990173,-0.642143189907074,0,-0.766764044761658,-0.641929149627686,0,-0.766943275928497,-0.641715049743652,0,-0.766764044761658,-0.641929149627686,0,-0.023248678073287,0.999729812145233,0,-0.0232294555753469,0.999730229377747,-0,-0.0232102312147617,0.999730706214905,0,-0.0232294555753469,0.999730229377747,-0,0.643083512783051,-0.765796065330505,
- 0,0.643075346946716,-0.765802979469299,0,0.643035113811493,-0.765836715698242,0,0.643077552318573,-0.765801131725311,-8.06677780929022e-006,0.642804563045502,-0.766030251979828,-8.07468495622743e-006,0.643613576889038,-0.765350699424744,-1.67946745932568e-005,0.645244300365448,-0.763976275920868,-1.6771267837612e-005,0.644021511077881,-0.765007436275482,0,0.642835557460785,-0.766004264354706,0,0.642812073230743,-0.766023933887482,-8.07468495622743e-006,0.643613576889038,-0.765350699424744,-8.06677780929022e-006,0.642804563045502,-0.766030251979828,0,0.642880439758301,-0.765966594219208,0,0.64285147190094,-0.765990912914276,0,0.642812073230743,-0.766023933887482,0,0.642835557460785,-0.766004264354706,0,0.64292323589325,-0.765930652618408,0,0.642893552780151,-0.765955567359924,0,0.64285147190094,-0.765990912914276,0,0.642880439758301,-0.765966594219208,0,0.642998099327087,-0.76586776971817,0,0.642939686775208,-0.765916764736176,0,0.642893552780151,-0.765955567359924,0,0.64292323589325,-0.765930652618408,0,0.643077552318573,-0.765801131725311,0,0.643035113811493,-0.765836715698242,0,0.642939686775208,-0.765916764736176,0,0.642998099327087,-0.76586776971817,0,-2.05505799044658e-007,-1,0,-0.000207146164029837,-1,0,-5.91616014844476e-007,-1,0,6.14856276115461e-007,-1,0,-5.1571173571574e-006,-1,0,0.0004554403712973,-1,0,-0.00061588321113959,-0.999999821186066,0,-0.00107749411836267,-0.999999523162842,-1,0.000121044758998323,0.000130824686493725,-1,0.000136148752062581,0.000112847701529972,-1,0.000151252752402797,9.48707311181352e-005,-1,0.000136148766614497,0.000112847716081887,2.71851695288206e-005,-0.768645167350769,-0.639675378799438,2.71845165116247e-005,-0.768634498119354,-0.639688193798065,2.71838653134182e-005,-0.768623828887939,-0.639701008796692,2.71845165116247e-005,-0.768634498119354,-0.639688193798065,-1,-6.37322955299169e-005,0.000251474732067436,-1,-6.37322882539593e-005,0.000251474702963606,-1,-6.37322882539593e-005,0.000251474702963606,-0.514994263648987,-0.659483671188354,-0.547596871852875,-0.523706257343292,-0.647201657295227,-0.553950905799866,
- -0.529482960700989,-0.640622019767761,-0.556103587150574,-0.539863646030426,-0.622138023376465,-0.567002356052399,-0.554704189300537,-0.643279910087585,-0.527725636959076,-0.531629502773285,-0.666968941688538,-0.522036731243134,-0.523706257343292,-0.647201657295227,-0.553950905799866,-0.514994263648987,-0.659483671188354,-0.547596871852875,-0.510132014751434,-0.64950305223465,-0.563836097717285,-0.537697792053223,-0.652505874633789,-0.5339635014534,-0.537785708904266,-0.652223110198975,-0.534220457077026,-0.516000509262085,-0.648960471153259,-0.559100687503815,-0.521273136138916,-0.655468463897705,-0.546475410461426,-0.52524733543396,-0.647529363632202,-0.552106022834778,-0.536119878292084,-0.663641035556793,-0.521685719490051,-0.555050611495972,-0.642468750476837,-0.528348982334137,-0.534619987010956,-0.631549298763275,-0.561539709568024,-0.534180998802185,-0.630631983280182,-0.562986671924591,-0.54739236831665,-0.644230723381042,-0.534161508083344,-0.547233998775482,-0.644431173801422,-0.534081757068634,-0.560721635818481,-0.619086444377899,-0.54983925819397,-0.560732781887054,-0.618981838226318,-0.549945533275604,-0.54887580871582,-0.603424429893494,-0.578458547592163,-0.548852026462555,-0.60342401266098,-0.578481554985046,-0.559372007846832,-0.634867966175079,-0.532959282398224,-0.535349190235138,-0.626548945903778,-0.566425323486328,-0.548485994338989,-0.602545440196991,-0.579743146896362,-0.558118581771851,-0.626591980457306,-0.543954193592072,-0.573554694652557,-0.637212038040161,-0.514777541160584,-0.570933759212494,-0.650366306304932,-0.501057326793671,-0.562956035137177,-0.650697708129883,-0.50958114862442,-0.569590151309967,-0.637454032897949,-0.518863618373871,-0.547407805919647,-0.604574978351593,-0.578648209571838,-0.550312638282776,-0.599089860916138,-0.581590414047241,-0.573950827121735,-0.61509770154953,-0.540587902069092,-0.571125209331512,-0.607974529266357,-0.551527857780457,-0.571125209331512,-0.607974529266357,-0.551527857780457,-0.573950827121735,-0.61509770154953,-0.540587902069092,-0.531629502773285,-0.666968941688538,-0.522036731243134,
- -0.554704189300537,-0.643279910087585,-0.527725636959076,-0.573554694652557,-0.637212038040161,-0.514777541160584,-0.569590151309967,-0.637454032897949,-0.518863618373871,-0.537785708904266,-0.652223110198975,-0.534220457077026,-0.537697792053223,-0.652505874633789,-0.5339635014534,-0.559372007846832,-0.634867966175079,-0.532959282398224,-0.558118581771851,-0.626591980457306,-0.543954193592072,-0.555050611495972,-0.642468750476837,-0.528348982334137,-0.536119878292084,-0.663641035556793,-0.521685719490051,-0.54739236831665,-0.644230723381042,-0.534161508083344,-0.560732781887054,-0.618981838226318,-0.549945533275604,-0.560721635818481,-0.619086444377899,-0.54983925819397,-0.547233998775482,-0.644431173801422,-0.534081757068634,-0.539739310741425,-0.625347077846527,-0.563580095767975,-0.533760726451874,-0.625174045562744,-0.569435656070709,-0.510132014751434,-0.64950305223465,-0.563836097717285,-0.516000509262085,-0.648960471153259,-0.559100687503815,-0.536482691764832,-0.625954747200012,-0.566009759902954,-0.523496508598328,-0.648774743080139,-0.552306711673737,-0.52524733543396,-0.647529363632202,-0.552106022834778,-0.521273136138916,-0.655468463897705,-0.546475410461426,-0.548072934150696,-0.603610575199127,-0.579025506973267,-0.534180998802185,-0.630631983280182,-0.562986671924591,-0.534619987010956,-0.631549298763275,-0.561539709568024,-0.54808521270752,-0.603610754013062,-0.579013586044312,-0,0.0282029658555985,-0.999602198600769,-0,0.028375593945384,-0.999597311019897,-0,0.0285482220351696,-0.999592423439026,-0,0.028375593945384,-0.999597311019897,0.642489790916443,0.766282320022583,-0.00427551893517375,0.642361760139465,0.766389787197113,-0.00427384627982974,0.642489790916443,0.766282320022583,-0.00427551940083504,0.642617881298065,0.766175031661987,-0.00427719345316291,0.642226934432983,0.76647287607193,-0.00799482595175505,0.642246305942535,0.766476631164551,-0.00577318947762251,0.642262578010559,0.766476511955261,-0.00355152413249016,0.642246305942535,0.766476631164551,-0.00577318947762251,0.641443371772766,0.767117977142334,-0.00896665267646313,
- 0.64161491394043,0.766974449157715,-0.00896979123353958,0.641786456108093,0.766830921173096,-0.00897293165326118,0.64161491394043,0.766974449157715,-0.00896979216486216,0.641927540302277,0.766728460788727,-0.00752320932224393,0.641902089118958,0.766721248626709,-0.0100141828879714,0.641927540302277,0.766728401184082,-0.00752320885658264,0.641948938369751,0.766731023788452,-0.00503218686208129,0.040039699524641,-0.663436114788055,0.747160971164703,0.747179508209229,-0.663415968418121,0.0400263667106628,0.831453382968903,-0.55558830499649,0.00263139978051186,0.179184526205063,-0.636046290397644,0.750558435916901,-0.697674930095673,0.00831281486898661,0.716366171836853,0.040039699524641,-0.663436114788055,0.747160971164703,0.179184526205063,-0.636046290397644,0.750558435916901,-0.707112967967987,0.000209537014598027,0.707100510597229,-0.697674930095673,0.00831281486898661,0.716366171836853,-0.707112967967987,0.000209537014598027,0.707100510597229,-0.747128188610077,0.663470149040222,-0.0400850884616375,-0.741712808609009,0.669915556907654,-0.0327928960323334,-0.0400788374245167,0.663444876670837,-0.747150957584381,-0.741712808609009,0.669915556907654,-0.0327928960323334,-0.747128188610077,0.663470149040222,-0.0400850884616375,-0.0765149891376495,0.75788539648056,-0.647885262966156,0.741966366767883,0.0576806329190731,-0.667951285839081,-0.0400788374245167,0.663444876670837,-0.747150957584381,-0.0765149891376495,0.75788539648056,-0.647885262966156,0.659872770309448,0.393761932849884,-0.639937043190002,0.747179508209229,-0.663415968418121,0.0400263667106628,0.667955636978149,-0.0576485618948936,-0.741964936256409,0.639912486076355,-0.393779516220093,-0.659886121749878,0.831453382968903,-0.55558830499649,0.00263139978051186,0.707135856151581,4.87070828967262e-005,-0.70707768201828,0.707144856452942,3.36387965944596e-005,-0.707068800926209,0.707148194313049,2.79704545391724e-005,-0.707065403461456,0.707144200801849,3.46737979270983e-005,-0.707069396972656,0.707147598266602,2.89610325125977e-005,-0.707065999507904,0.707141160964966,3.98517295252532e-005,-0.707072377204895,
- -0.708686769008636,-0.134629398584366,0.692559123039246,-0.708786427974701,-0.00190922745969146,0.705420434474945,-0.748802483081818,0.661476194858551,-0.0417621172964573,-0.82883632183075,0.559383869171143,-0.0109588531777263,0.0684762597084045,-0.755355298519135,0.651727974414825,0.0383628197014332,-0.66540139913559,0.74549925327301,-0.708786427974701,-0.00190922745969146,0.705420434474945,-0.708686769008636,-0.134629398584366,0.692559123039246,0.725538492202759,-0.681960761547089,-0.0923226401209831,0.745497226715088,-0.665401160717011,0.0384072586894035,0.0383628197014332,-0.66540139913559,0.74549925327301,0.0684762597084045,-0.755355298519135,0.651727974414825,0.921136915683746,-0.0337515473365784,-0.387772679328918,0.702171683311462,-0.00600931607186794,-0.711982309818268,0.745497226715088,-0.665401160717011,0.0384072586894035,0.725538492202759,-0.681960761547089,-0.0923226401209831,-0.171688959002495,0.632764101028442,-0.75507116317749,-0.0416994541883469,0.661450386047363,-0.748828768730164,0.71198844909668,0.00602100091055036,-0.702165365219116,0.38785719871521,0.0336958318948746,-0.921103358268738,-0.82883632183075,0.559383869171143,-0.0109588531777263,-0.748802483081818,0.661476194858551,-0.0417621172964573,-0.0416994541883469,0.661450386047363,-0.748828768730164,-0.171688959002495,0.632764101028442,-0.75507116317749,-0.748802483081818,0.661476194858551,-0.0417621172964573,-0.708786427974701,-0.00190922745969146,0.705420434474945,-0.697674930095673,0.00831281486898661,0.716366171836853,-0.741712808609009,0.669915556907654,-0.0327928960323334,-0.708786427974701,-0.00190922745969146,0.705420434474945,0.0383628197014332,-0.66540139913559,0.74549925327301,0.040039699524641,-0.663436114788055,0.747160971164703,-0.697674930095673,0.00831281486898661,0.716366171836853,0.0383628197014332,-0.66540139913559,0.74549925327301,0.745497226715088,-0.665401160717011,0.0384072586894035,0.747179508209229,-0.663415968418121,0.0400263667106628,0.040039699524641,-0.663436114788055,0.747160971164703,0.745497226715088,-0.665401160717011,0.0384072586894035,
- 0.702171683311462,-0.00600931607186794,-0.711982309818268,0.667955636978149,-0.0576485618948936,-0.741964936256409,0.747179508209229,-0.663415968418121,0.0400263667106628,0.71198844909668,0.00602100091055036,-0.702165365219116,-0.0416994541883469,0.661450386047363,-0.748828768730164,-0.0400788374245167,0.663444876670837,-0.747150957584381,0.741966366767883,0.0576806329190731,-0.667951285839081,-0.0416994541883469,0.661450386047363,-0.748828768730164,-0.748802483081818,0.661476194858551,-0.0417621172964573,-0.741712808609009,0.669915556907654,-0.0327928960323334,-0.0400788374245167,0.663444876670837,-0.747150957584381,-0.0389954708516598,-0.748778402805328,0.661672353744507,0.652140140533447,-0.756755113601685,-0.0451102741062641,0.69037127494812,-0.723439931869507,-0.0047042085789144,-0.104980334639549,-0.789548754692078,0.604641914367676,-0.727953791618347,-0.0250663347542286,0.685167789459229,-0.0389954708516598,-0.748778402805328,0.661672353744507,-0.104980334639549,-0.789548754692078,0.604641914367676,-0.745494663715363,-0.0405007861554623,0.665280103683472,-0.727953791618347,-0.0250663347542286,0.685167789459229,-0.745494663715363,-0.0405007861554623,0.665280103683472,-0.747163593769073,0.663435220718384,-0.0400027595460415,-0.747422099113464,0.663127958774567,-0.0402670688927174,-0.040624525398016,0.662738800048828,-0.747747957706451,-0.747422099113464,0.663127958774567,-0.0402670688927174,-0.747163593769073,0.663435220718384,-0.0400027595460415,-0.0329190529882908,0.673439741134644,-0.738508701324463,0.708806753158569,0.00204230891540647,-0.705399751663208,-0.040624525398016,0.662738800048828,-0.747747957706451,-0.0329190529882908,0.673439741134644,-0.738508701324463,0.729125499725342,0.0315891839563847,-0.683650553226471,0.652140140533447,-0.756755113601685,-0.0451102741062641,0.70541775226593,-0.00202375557273626,-0.708788931369781,0.683678269386292,-0.0315323360264301,-0.7291020154953,0.69037127494812,-0.723439931869507,-0.0047042085789144,-0.68604177236557,-0.221017569303513,0.693179547786713,-0.727953791618347,-0.0250663347542286,0.685167789459229,
- -0.747422099113464,0.663127958774567,-0.0402670688927174,-0.833819270133972,0.551988959312439,0.00733484979718924,0.1467394977808,-0.86448335647583,0.480766117572784,-0.0389954708516598,-0.748778402805328,0.661672353744507,-0.727953791618347,-0.0250663347542286,0.685167789459229,-0.68604177236557,-0.221017569303513,0.693179547786713,0.716377198696136,-0.668780088424683,-0.19883930683136,0.652140140533447,-0.756755113601685,-0.0451102741062641,-0.0389954708516598,-0.748778402805328,0.661672353744507,0.1467394977808,-0.86448335647583,0.480766117572784,0.929529547691345,-0.0804369226098061,-0.359867662191391,0.70541775226593,-0.00202375557273626,-0.708788931369781,0.652140140533447,-0.756755113601685,-0.0451102741062641,0.716377198696136,-0.668780088424683,-0.19883930683136,-0.187186568975449,0.640767633914948,-0.744565606117249,-0.040624525398016,0.662738800048828,-0.747747957706451,0.708806753158569,0.00204230891540647,-0.705399751663208,0.359858989715576,0.08050387352705,-0.929527103900909,-0.833819270133972,0.551988959312439,0.00733484979718924,-0.747422099113464,0.663127958774567,-0.0402670688927174,-0.040624525398016,0.662738800048828,-0.747747957706451,-0.187186568975449,0.640767633914948,-0.744565606117249,0.0465191602706909,-0.666867673397064,0.743722796440125,0.749772310256958,-0.66088080406189,0.0328339897096157,0.718950569629669,-0.694295167922974,0.0326225161552429,0.00937044247984886,-0.679478049278259,0.733636081218719,-0.708836197853088,-0.00192258763127029,0.705370426177979,0.0465191602706909,-0.666867673397064,0.743722796440125,0.00937044247984886,-0.679478049278259,0.733636081218719,-0.707047760486603,1.40204629133223e-005,0.707165718078613,-0.708836197853088,-0.00192258763127029,0.705370426177979,-0.707047760486603,1.40204629133223e-005,0.707165718078613,-0.733654916286469,0.679458677768707,-0.00929276831448078,-0.748899221420288,0.660620748996735,-0.0522519610822201,-0.0399055071175098,0.650709807872772,-0.758277177810669,-0.748899221420288,0.660620748996735,-0.0522519610822201,-0.733654916286469,0.679458677768707,-0.00929276831448078,
- -0.0326205901801586,0.694243550300598,-0.719000518321991,0.732241332530975,0.0371870473027229,-0.680029213428497,-0.0399055071175098,0.650709807872772,-0.758277177810669,-0.0326205901801586,0.694243550300598,-0.719000518321991,0.757038235664368,0.107783660292625,-0.644418954849243,0.749772310256958,-0.66088080406189,0.0328339897096157,0.680049896240234,-0.0371744334697723,-0.73222279548645,0.644415676593781,-0.107835695147514,-0.757033705711365,0.718950569629669,-0.694295167922974,0.0326225161552429,-0.680725514888763,-0.160266891121864,0.714791834354401,-0.708836197853088,-0.00192258763127029,0.705370426177979,-0.748899221420288,0.660620748996735,-0.0522519610822201,-0.836329340934753,0.54736715555191,0.0306985005736351,0.109802514314651,-0.761941909790039,0.638269364833832,0.0465191602706909,-0.666867673397064,0.743722796440125,-0.708836197853088,-0.00192258763127029,0.705370426177979,-0.680725514888763,-0.160266891121864,0.714791834354401,0.744716107845306,-0.656083881855011,-0.122277311980724,0.749772310256958,-0.66088080406189,0.0328339897096157,0.0465191602706909,-0.666867673397064,0.743722796440125,0.109802514314651,-0.761941909790039,0.638269364833832,0.930559635162354,-0.140529289841652,-0.338098078966141,0.680049896240234,-0.0371744334697723,-0.73222279548645,0.749772310256958,-0.66088080406189,0.0328339897096157,0.744716107845306,-0.656083881855011,-0.122277311980724,-0.201283112168312,0.653274536132813,-0.729874968528748,-0.0399055071175098,0.650709807872772,-0.758277177810669,0.732241332530975,0.0371870473027229,-0.680029213428497,0.338158130645752,0.14047309756279,-0.930546283721924,-0.836329340934753,0.54736715555191,0.0306985005736351,-0.748899221420288,0.660620748996735,-0.0522519610822201,-0.0399055071175098,0.650709807872772,-0.758277177810669,-0.201283112168312,0.653274536132813,-0.729874968528748,0.0480157397687435,-0.666901051998138,0.743597626686096,0.751724183559418,-0.658806324005127,0.0297464895993471,0.731196820735931,-0.681236982345581,0.0355996787548065,0.0218871608376503,-0.669330239295959,0.74264258146286,
- -0.705809652805328,0.00165275402832776,0.708399474620819,0.0480157397687435,-0.666901051998138,0.743597626686096,0.0218871608376503,-0.669330239295959,0.74264258146286,-0.707112312316895,-2.59139305853751e-005,0.707101285457611,-0.705809652805328,0.00165275402832776,0.708399474620819,-0.707112312316895,-2.59139305853751e-005,0.707101285457611,-0.742685914039612,0.669283330440521,-0.0218536481261253,-0.742198705673218,0.668565630912781,-0.0464863851666451,-0.0308222696185112,0.657445549964905,-0.75287139415741,-0.742198705673218,0.668565630912781,-0.0464863851666451,-0.742685914039612,0.669283330440521,-0.0218536481261253,-0.0356216467916965,0.681236803531647,-0.73119592666626,0.716074466705322,0.011464542709291,-0.697929739952087,-0.0308222696185112,0.657445549964905,-0.75287139415741,-0.0356216467916965,0.681236803531647,-0.73119592666626,0.741711854934692,0.0575110912322998,-0.668248414993286,0.751724183559418,-0.658806324005127,0.0297464895993471,0.697934687137604,-0.0114360125735402,-0.716070175170898,0.668257832527161,-0.0574682615697384,-0.741706848144531,0.731196820735931,-0.681236982345581,0.0355996787548065,-0.713413417339325,-0.127235502004623,0.689095318317413,-0.705809652805328,0.00165275402832776,0.708399474620819,-0.742198705673218,0.668565630912781,-0.0464863851666451,-0.825707256793976,0.563789904117584,-0.0186636075377464,0.0607375204563141,-0.752124547958374,0.656216263771057,0.0480157397687435,-0.666901051998138,0.743597626686096,-0.705809652805328,0.00165275402832776,0.708399474620819,-0.713413417339325,-0.127235502004623,0.689095318317413,0.722836196422577,-0.685452997684479,-0.087532602250576,0.751724183559418,-0.658806324005127,0.0297464895993471,0.0480157397687435,-0.666901051998138,0.743597626686096,0.0607375204563141,-0.752124547958374,0.656216263771057,0.911077797412872,-0.00480244355276227,-0.412206470966339,0.697934687137604,-0.0114360125735402,-0.716070175170898,0.751724183559418,-0.658806324005127,0.0297464895993471,0.722836196422577,-0.685452997684479,-0.087532602250576,-0.0363114885985851,0.662310123443604,-0.748349368572235,
- -0.0308222696185112,0.657445549964905,-0.75287139415741,0.716074466705322,0.011464542709291,-0.697929739952087,0.412249743938446,0.00476369028910995,-0.91105842590332,-0.825707256793976,0.563789904117584,-0.0186636075377464,-0.742198705673218,0.668565630912781,-0.0464863851666451,-0.0308222696185112,0.657445549964905,-0.75287139415741,-0.0363114885985851,0.662310123443604,-0.748349368572235,0.0224167313426733,-0.664559900760651,0.746898591518402,0.740622401237488,-0.670046150684357,0.0501677095890045,0.760893166065216,-0.647899985313416,0.0355990789830685,0.0668528825044632,-0.654330670833588,0.753247678279877,-0.712571442127228,-0.00550642749294639,0.70157790184021,0.0224167313426733,-0.664559900760651,0.746898591518402,0.0668528825044632,-0.654330670833588,0.753247678279877,-0.707113862037659,-3.76869570573035e-006,0.707099616527557,-0.712571442127228,-0.00550642749294639,0.70157790184021,-0.707113862037659,-3.76869570573035e-006,0.707099616527557,-0.753278076648712,0.65430223941803,-0.0667876526713371,-0.752936124801636,0.657446801662445,-0.0291683431714773,-0.051435548812151,0.66838014125824,-0.742039322853088,-0.752936124801636,0.657446801662445,-0.0291683431714773,-0.753278076648712,0.65430223941803,-0.0667876526713371,-0.035542905330658,0.647885024547577,-0.760908544063568,0.703773200511932,-0.00386543571949005,-0.710414290428162,-0.051435548812151,0.66838014125824,-0.742039322853088,-0.035542905330658,0.647885024547577,-0.760908544063568,0.724941968917847,0.0245466846972704,-0.688372433185577,0.740622401237488,-0.670046150684357,0.0501677095890045,0.710441589355469,0.00387854082509875,-0.703745543956757,0.688387453556061,-0.0245765503495932,-0.724926769733429,0.760893166065216,-0.647899985313416,0.0355990789830685,-0.708805799484253,-0.134674847126007,0.692428410053253,-0.712571442127228,-0.00550642749294639,0.70157790184021,-0.752936124801636,0.657446801662445,-0.0291683431714773,-0.828815162181854,0.55941504240036,-0.0109586985781789,0.0683768168091774,-0.755264937877655,0.651843190193176,0.0224167313426733,-0.664559900760651,0.746898591518402,
- -0.712571442127228,-0.00550642749294639,0.70157790184021,-0.708805799484253,-0.134674847126007,0.692428410053253,0.725547015666962,-0.681954026222229,-0.092304565012455,0.740622401237488,-0.670046150684357,0.0501677095890045,0.0224167313426733,-0.664559900760651,0.746898591518402,0.0683768168091774,-0.755264937877655,0.651843190193176,0.92110937833786,-0.033735603094101,-0.387839406728745,0.710441589355469,0.00387854082509875,-0.703745543956757,0.740622401237488,-0.670046150684357,0.0501677095890045,0.725547015666962,-0.681954026222229,-0.092304565012455,-0.171639680862427,0.632685542106628,-0.75514817237854,-0.051435548812151,0.66838014125824,-0.742039322853088,0.703773200511932,-0.00386543571949005,-0.710414290428162,0.387898802757263,0.0336631499230862,-0.921087026596069,-0.828815162181854,0.55941504240036,-0.0109586985781789,-0.752936124801636,0.657446801662445,-0.0291683431714773,-0.051435548812151,0.66838014125824,-0.742039322853088,-0.171639680862427,0.632685542106628,-0.75514817237854,0.0360924936830997,-0.667859077453613,0.7434121966362,0.743273794651031,-0.667992115020752,0.0364775955677032,0.768014788627625,-0.638204753398895,0.0533651188015938,0.0642504617571831,-0.643180668354034,0.763014137744904,-0.709442555904388,-0.00255883974023163,0.704758584499359,0.0360924936830997,-0.667859077453613,0.7434121966362,0.0642504617571831,-0.643180668354034,0.763014137744904,-0.707121551036835,2.10814778256463e-006,0.707092046737671,-0.709442555904388,-0.00255883974023163,0.704758584499359,-0.707121551036835,2.10814778256463e-006,0.707092046737671,-0.747160017490387,0.663433134555817,-0.0401029624044895,-0.748732507228851,0.661555171012878,-0.0417659804224968,-0.043636180460453,0.658841013908386,-0.751015543937683,-0.748732507228851,0.661555171012878,-0.0417659804224968,-0.747160017490387,0.663433134555817,-0.0401029624044895,-0.0266767535358667,0.687813520431519,-0.725397109985352,0.717930138111115,0.0140749467536807,-0.695972859859467,-0.043636180460453,0.658841013908386,-0.751015543937683,-0.0266767535358667,0.687813520431519,-0.725397109985352,
- 0.75051075220108,0.0814647227525711,-0.655817866325378,0.743273794651031,-0.667992115020752,0.0364775955677032,0.695955872535706,-0.0139840040355921,-0.717948377132416,0.655870139598846,-0.0813630223274231,-0.750476121902466,0.768014788627625,-0.638204753398895,0.0533651188015938,-0.693127572536469,-0.151817351579666,0.704645752906799,-0.709442555904388,-0.00255883974023163,0.704758584499359,-0.748732507228851,0.661555171012878,-0.0417659804224968,-0.834758102893829,0.55046421289444,0.0129678975790739,0.0920657366514206,-0.761032819747925,0.642147064208984,0.0360924936830997,-0.667859077453613,0.7434121966362,-0.709442555904388,-0.00255883974023163,0.704758584499359,-0.693127572536469,-0.151817351579666,0.704645752906799,0.735765755176544,-0.66793292760849,-0.111867964267731,0.743273794651031,-0.667992115020752,0.0364775955677032,0.0360924936830997,-0.667859077453613,0.7434121966362,0.0920657366514206,-0.761032819747925,0.642147064208984,0.930654942989349,-0.094732366502285,-0.353422105312347,0.695955872535706,-0.0139840040355921,-0.717948377132416,0.743273794651031,-0.667992115020752,0.0364775955677032,0.735765755176544,-0.66793292760849,-0.111867964267731,-0.191128462553024,0.643524408340454,-0.7411789894104,-0.043636180460453,0.658841013908386,-0.751015543937683,0.717930138111115,0.0140749467536807,-0.695972859859467,0.353445768356323,0.0945199728012085,-0.930667519569397,-0.834758102893829,0.55046421289444,0.0129678975790739,-0.748732507228851,0.661555171012878,-0.0417659804224968,-0.043636180460453,0.658841013908386,-0.751015543937683,-0.191128462553024,0.643524408340454,-0.7411789894104,-0.060104176402092,-0.741373300552368,0.668395817279816,0.639040648937225,-0.769083976745605,-0.0117077045142651,0.681797385215759,-0.73151707649231,-0.00593426171690226,-0.10330905020237,-0.796016395092011,0.596393465995789,-0.733521342277527,-0.029860895127058,0.679010033607483,-0.060104176402092,-0.741373300552368,0.668395817279816,-0.10330905020237,-0.796016395092011,0.596393465995789,-0.74837589263916,-0.0392114110291004,0.662114858627319,
- -0.733521342277527,-0.029860895127058,0.679010033607483,-0.74837589263916,-0.0392114110291004,0.662114858627319,-0.750466704368591,0.657957196235657,-0.062386330217123,-0.752753078937531,0.657981693744659,-0.0205622687935829,-0.0718508511781693,0.678158938884735,-0.731394588947296,-0.752753078937531,0.657981693744659,-0.0205622687935829,-0.750466704368591,0.657957196235657,-0.062386330217123,-0.050029069185257,0.659293055534363,-0.750219881534576,0.708782851696014,0.00199955375865102,-0.705423951148987,-0.0718508511781693,0.678158938884735,-0.731394588947296,-0.050029069185257,0.659293055534363,-0.750219881534576,0.722503900527954,0.0207446794956923,-0.691055595874786,0.639040648937225,-0.769083976745605,-0.0117077045142651,0.705471217632294,-0.00196875724941492,-0.708735883235931,0.691091179847717,-0.02071294747293,-0.722470760345459,0.681797385215759,-0.73151707649231,-0.00593426171690226,-0.701584219932556,-0.0549299828708172,0.710466146469116,-0.733521342277527,-0.029860895127058,0.679010033607483,-0.752753078937531,0.657981693744659,-0.0205622687935829,-0.656333565711975,0.743736505508423,-0.126815721392632,0.174213707447052,-0.834668457508087,0.522473096847534,-0.060104176402092,-0.741373300552368,0.668395817279816,-0.733521342277527,-0.029860895127058,0.679010033607483,-0.701584219932556,-0.0549299828708172,0.710466146469116,0.742854595184326,-0.655225872993469,-0.137281835079193,0.639040648937225,-0.769083976745605,-0.0117077045142651,-0.060104176402092,-0.741373300552368,0.668395817279816,0.174213707447052,-0.834668457508087,0.522473096847534,0.911776721477509,-0.00633004959672689,-0.410637497901917,0.705471217632294,-0.00196875724941492,-0.708735883235931,0.639040648937225,-0.769083976745605,-0.0117077045142651,0.742854595184326,-0.655225872993469,-0.137281835079193,0.0647783726453781,0.644668936729431,-0.761712431907654,-0.0718508511781693,0.678158938884735,-0.731394588947296,0.708782851696014,0.00199955375865102,-0.705423951148987,0.410671323537827,0.00645819492638111,-0.911760568618774,-0.656333565711975,0.743736505508423,-0.126815721392632,
- -0.752753078937531,0.657981693744659,-0.0205622687935829,-0.0718508511781693,0.678158938884735,-0.731394588947296,0.0647783726453781,0.644668936729431,-0.761712431907654,0.0347592309117317,-0.661117255687714,0.749476969242096,0.744263291358948,-0.666246950626373,0.0467680022120476,0.730112493038177,-0.682652175426483,0.0303610116243362,0.0215849187225103,-0.677540481090546,0.735168755054474,-0.707118988037109,1.11794770418783e-005,0.707094609737396,0.0347592309117317,-0.661117255687714,0.749476969242096,0.0215849187225103,-0.677540481090546,0.735168755054474,-0.70712149143219,-1.63977365446044e-005,0.707091987133026,-0.707118988037109,1.11794770418783e-005,0.707094609737396,-0.70712149143219,-1.63977365446044e-005,0.707091987133026,-0.735157668590546,0.677550375461578,-0.0216525942087173,-0.74946790933609,0.661125719547272,-0.0347925163805485,-0.0467303432524204,0.666239798069,-0.74427205324173,-0.74946790933609,0.661125719547272,-0.0347925163805485,-0.735157668590546,0.677550375461578,-0.0216525942087173,-0.0303659327328205,0.682653605937958,-0.730110883712769,0.720652341842651,0.0179042257368565,-0.693065464496613,-0.0467303432524204,0.666239798069,-0.74427205324173,-0.0303659327328205,0.682653605937958,-0.730110883712769,0.744138240814209,0.0631300732493401,-0.665036082267761,0.744263291358948,-0.666246950626373,0.0467680022120476,0.693102300167084,-0.017958577722311,-0.720615565776825,0.665014445781708,-0.0630416870117188,-0.744165003299713,0.730112493038177,-0.682652175426483,0.0303610116243362,-0.707110047340393,3.12943775497843e-005,0.707103610038757,-0.707118988037109,1.11794770418783e-005,0.707094609737396,-0.74946790933609,0.661125719547272,-0.0347925163805485,-0.647612869739532,0.750077784061432,-0.134092882275581,0.133998081088066,-0.750086307525635,0.647622585296631,0.0347592309117317,-0.661117255687714,0.749476969242096,-0.707118988037109,1.11794770418783e-005,0.707094609737396,-0.707110047340393,3.12943775497843e-005,0.707103610038757,0.759853601455688,-0.641636192798615,-0.104525126516819,0.744263291358948,-0.666246950626373,0.0467680022120476,
- 0.0347592309117317,-0.661117255687714,0.749476969242096,0.133998081088066,-0.750086307525635,0.647622585296631,0.920370936393738,-0.0310753360390663,-0.389809787273407,0.693102300167084,-0.017958577722311,-0.720615565776825,0.744263291358948,-0.666246950626373,0.0467680022120476,0.759853601455688,-0.641636192798615,-0.104525126516819,0.104614168405533,0.641583979129791,-0.759885489940643,-0.0467303432524204,0.666239798069,-0.74427205324173,0.720652341842651,0.0179042257368565,-0.693065464496613,0.389886319637299,0.0310524888336658,-0.920339286327362,-0.647612869739532,0.750077784061432,-0.134092882275581,-0.74946790933609,0.661125719547272,-0.0347925163805485,-0.0467303432524204,0.666239798069,-0.74427205324173,0.104614168405533,0.641583979129791,-0.759885489940643,0.0358458049595356,-0.667990267276764,0.743306219577789,0.743084371089935,-0.668211281299591,0.0363224670290947,0.758876860141754,-0.64937037229538,0.0492350831627846,0.0528704114258289,-0.65101945400238,0.757217645645142,-0.709537625312805,-0.00269813276827335,0.704662322998047,0.0358458049595356,-0.667990267276764,0.743306219577789,0.0528704114258289,-0.65101945400238,0.757217645645142,-0.707107603549957,7.17445345799206e-006,0.707105934619904,-0.709537625312805,-0.00269813276827335,0.704662322998047,-0.707107603549957,7.17445345799206e-006,0.707105934619904,-0.747162640094757,0.663428425788879,-0.0401352271437645,-0.748796403408051,0.66147655248642,-0.0418639332056046,-0.0437178313732147,0.658599972724915,-0.751222252845764,-0.748796403408051,0.66147655248642,-0.0418639332056046,-0.747162640094757,0.663428425788879,-0.0401352271437645,-0.0308129172772169,0.677200078964233,-0.735153496265411,0.71838366985321,0.0146592482924461,-0.695492684841156,-0.0437178313732147,0.658599972724915,-0.751222252845764,-0.0308129172772169,0.677200078964233,-0.735153496265411,0.735833168029785,0.0441460981965065,-0.675722360610962,0.743084371089935,-0.668211281299591,0.0363224670290947,0.695504903793335,-0.0146490139886737,-0.718372046947479,0.675716876983643,-0.044207189232111,-0.735834538936615,
- 0.758876860141754,-0.64937037229538,0.0492350831627846,-0.708745539188385,-0.134593039751053,0.692505955696106,-0.709537625312805,-0.00269813276827335,0.704662322998047,-0.748796403408051,0.66147655248642,-0.0418639332056046,-0.828807353973389,0.559425830841064,-0.0110053056851029,0.0683774203062058,-0.755360245704651,0.651732563972473,0.0358458049595356,-0.667990267276764,0.743306219577789,-0.709537625312805,-0.00269813276827335,0.704662322998047,-0.708745539188385,-0.134593039751053,0.692505955696106,0.725563824176788,-0.681937634944916,-0.0922946259379387,0.743084371089935,-0.668211281299591,0.0363224670290947,0.0358458049595356,-0.667990267276764,0.743306219577789,0.0683774203062058,-0.755360245704651,0.651732563972473,0.921139895915985,-0.0337141156196594,-0.387768864631653,0.695504903793335,-0.0146490139886737,-0.718372046947479,0.743084371089935,-0.668211281299591,0.0363224670290947,0.725563824176788,-0.681937634944916,-0.0922946259379387,-0.171643182635307,0.63275808095932,-0.755086600780487,-0.0437178313732147,0.658599972724915,-0.751222252845764,0.71838366985321,0.0146592482924461,-0.695492684841156,0.387827396392822,0.0336601845920086,-0.921117305755615,-0.828807353973389,0.559425830841064,-0.0110053056851029,-0.748796403408051,0.66147655248642,-0.0418639332056046,-0.0437178313732147,0.658599972724915,-0.751222252845764,-0.171643182635307,0.63275808095932,-0.755086600780487,0.0347293801605701,-0.665956497192383,0.745181739330292,0.744008898735046,-0.666957259178162,0.0402361378073692,0.759827852249146,-0.648417472839355,0.0470788404345512,0.0562647320330143,-0.65110045671463,0.756903171539307,-0.709274291992188,-0.00240679341368377,0.704928517341614,0.0347293801605701,-0.665956497192383,0.745181739330292,0.0562647320330143,-0.65110045671463,0.756903171539307,-0.707126498222351,-1.98583256860729e-006,0.707087099552155,-0.709274291992188,-0.00240679341368377,0.704928517341614,-0.707126498222351,-1.98583256860729e-006,0.707087099552155,-0.756918907165527,0.65107935667038,-0.0562972240149975,-0.74820339679718,0.662383317947388,-0.0379477143287659,
- -0.0422135628759861,0.664352178573608,-0.746226668357849,-0.74820339679718,0.662383317947388,-0.0379477143287659,-0.756918907165527,0.65107935667038,-0.0562972240149975,-0.047006119042635,0.648424685001373,-0.759826242923737,0.71205198764801,0.00604694476351142,-0.702100694179535,-0.0422135628759861,0.664352178573608,-0.746226668357849,-0.047006119042635,0.648424685001373,-0.759826242923737,0.735068559646606,0.042681410908699,-0.676648080348969,0.744008898735046,-0.666957259178162,0.0402361378073692,0.70217502117157,-0.00606263475492597,-0.711978614330292,0.676685631275177,-0.0425795577466488,-0.735039830207825,0.759827852249146,-0.648417472839355,0.0470788404345512,-0.693164110183716,-0.151847034692764,0.704603433609009,-0.709274291992188,-0.00240679341368377,0.704928517341614,-0.74820339679718,0.662383317947388,-0.0379477143287659,-0.834771275520325,0.550444841384888,0.0129336724057794,0.0921239256858826,-0.760996043682098,0.642182350158691,0.0347293801605701,-0.665956497192383,0.745181739330292,-0.709274291992188,-0.00240679341368377,0.704928517341614,-0.693164110183716,-0.151847034692764,0.704603433609009,0.735808253288269,-0.667884647846222,-0.111876778304577,0.744008898735046,-0.666957259178162,0.0402361378073692,0.0347293801605701,-0.665956497192383,0.745181739330292,0.0921239256858826,-0.760996043682098,0.642182350158691,0.93068939447403,-0.0945850536227226,-0.353370785713196,0.70217502117157,-0.00606263475492597,-0.711978614330292,0.744008898735046,-0.666957259178162,0.0402361378073692,0.735808253288269,-0.667884647846222,-0.111876778304577,-0.19105352461338,0.643523931503296,-0.741198778152466,-0.0422135628759861,0.664352178573608,-0.746226668357849,0.71205198764801,0.00604694476351142,-0.702100694179535,0.353468477725983,0.0947190672159195,-0.930638670921326,-0.834771275520325,0.550444841384888,0.0129336724057794,-0.74820339679718,0.662383317947388,-0.0379477143287659,-0.0422135628759861,0.664352178573608,-0.746226668357849,-0.19105352461338,0.643523931503296,-0.741198778152466,0.0402522906661034,-0.663244187831879,0.747319877147675,
- 0.747346520423889,-0.663214445114136,0.0402466803789139,0.758134186267853,-0.650270700454712,0.048791091889143,0.0519718565046787,-0.65178918838501,0.756617307662964,-0.706998705863953,0.00014036447100807,0.707214832305908,0.0402522906661034,-0.663244187831879,0.747319877147675,0.0519718565046787,-0.65178918838501,0.756617307662964,-0.707118988037109,5.86865144214244e-006,0.707094550132751,-0.706998705863953,0.00014036447100807,0.707214832305908,-0.707118988037109,5.86865144214244e-006,0.707094550132751,-0.747158825397491,0.663439512252808,-0.0400216616690159,-0.747080326080322,0.66353166103363,-0.0399582162499428,-0.0398182831704617,0.663639485836029,-0.746992111206055,-0.747080326080322,0.66353166103363,-0.0399582162499428,-0.747158825397491,0.663439512252808,-0.0400216616690159,-0.0313072688877583,0.676308572292328,-0.735952913761139,0.706551671028137,-0.000686494109686464,-0.707661151885986,-0.0398182831704617,0.663639485836029,-0.746992111206055,-0.0313072688877583,0.676308572292328,-0.735952913761139,0.734317362308502,0.0411955490708351,-0.67755514383316,0.747346520423889,-0.663214445114136,0.0402466803789139,0.707714736461639,0.000688649131916463,-0.706498026847839,0.677589476108551,-0.0410917848348618,-0.734291553497314,0.758134186267853,-0.650270700454712,0.048791091889143,-0.689555466175079,-0.154630154371262,0.707532942295074,-0.706998705863953,0.00014036447100807,0.707214832305908,-0.747080326080322,0.66353166103363,-0.0399582162499428,-0.835471034049988,0.549232602119446,0.018212977796793,0.0972441434860229,-0.761535227298737,0.64078676700592,0.0402522906661034,-0.663244187831879,0.747319877147675,-0.706998705863953,0.00014036447100807,0.707214832305908,-0.689555466175079,-0.154630154371262,0.707532942295074,0.738254129886627,-0.664601683616638,-0.115262195467949,0.747346520423889,-0.663214445114136,0.0402466803789139,0.0402522906661034,-0.663244187831879,0.747319877147675,0.0972441434860229,-0.761535227298737,0.64078676700592,0.931186616420746,-0.107964113354683,-0.348188847303391,0.707714736461639,0.000688649131916463,-0.706498026847839,
- 0.747346520423889,-0.663214445114136,0.0402466803789139,0.738254129886627,-0.664601683616638,-0.115262195467949,-0.194395273923874,0.646253883838654,-0.737947523593903,-0.0398182831704617,0.663639485836029,-0.746992111206055,0.706551671028137,-0.000686494109686464,-0.707661151885986,0.348255276679993,0.107924312353134,-0.931166291236877,-0.835471034049988,0.549232602119446,0.018212977796793,-0.747080326080322,0.66353166103363,-0.0399582162499428,-0.0398182831704617,0.663639485836029,-0.746992111206055,-0.194395273923874,0.646253883838654,-0.737947523593903,-0.0510115213692188,-0.72324275970459,0.688707292079926,0.665709435939789,-0.746176302433014,-0.00721722980961204,0.723739981651306,-0.690066933631897,0.00284588290378451,-0.0360968224704266,-0.735418319702148,0.676651239395142,-0.731481552124023,-0.0226163771003485,0.681486129760742,-0.0510115213692188,-0.72324275970459,0.688707292079926,-0.0360968224704266,-0.735418319702148,0.676651239395142,-0.734843611717224,-0.0190726649016142,0.677968382835388,-0.731481552124023,-0.0226163771003485,0.681486129760742,-0.734843611717224,-0.0190726649016142,0.677968382835388,-0.755407989025116,0.650165617465973,-0.081508032977581,-0.755809187889099,0.654304265975952,-0.0252660736441612,-0.0565751008689404,0.670050203800201,-0.740156710147858,-0.755809187889099,0.654304265975952,-0.0252660736441612,-0.755407989025116,0.650165617465973,-0.081508032977581,-0.0337872430682182,0.638839781284332,-0.768597602844238,0.707498252391815,0.000458361901110038,-0.706714928150177,-0.0565751008689404,0.670050203800201,-0.740156710147858,-0.0337872430682182,0.638839781284332,-0.768597602844238,0.736772835254669,0.0461741574108601,-0.674561858177185,0.665709435939789,-0.746176302433014,-0.00721722980961204,0.706740438938141,-0.000443051976617426,-0.707472801208496,0.674558043479919,-0.046065304428339,-0.736783146858215,0.723739981651306,-0.690066933631897,0.00284588290378451,-0.705003321170807,-0.198068335652351,0.680983901023865,-0.731481552124023,-0.0226163771003485,0.681486129760742,-0.755809187889099,0.654304265975952,-0.0252660736441612,
- -0.82882559299469,0.559400081634521,-0.0109413107857108,0.10345483571291,-0.85417902469635,0.509583473205566,-0.0510115213692188,-0.72324275970459,0.688707292079926,-0.731481552124023,-0.0226163771003485,0.681486129760742,-0.705003321170807,-0.198068335652351,0.680983901023865,0.706773638725281,-0.687047123908997,-0.168633729219437,0.665709435939789,-0.746176302433014,-0.00721722980961204,-0.0510115213692188,-0.72324275970459,0.688707292079926,0.10345483571291,-0.85417902469635,0.509583473205566,0.921140432357788,-0.0337283760309219,-0.387766301631927,0.706740438938141,-0.000443051976617426,-0.707472801208496,0.665709435939789,-0.746176302433014,-0.00721722980961204,0.706773638725281,-0.687047123908997,-0.168633729219437,-0.171670019626617,0.632707953453064,-0.755122542381287,-0.0565751008689404,0.670050203800201,-0.740156710147858,0.707498252391815,0.000458361901110038,-0.706714928150177,0.387916564941406,0.0336310863494873,-0.921080708503723,-0.82882559299469,0.559400081634521,-0.0109413107857108,-0.755809187889099,0.654304265975952,-0.0252660736441612,-0.0565751008689404,0.670050203800201,-0.740156710147858,-0.171670019626617,0.632707953453064,-0.755122542381287,0.0452755652368069,-0.666027665138245,0.744551777839661,0.749376058578491,-0.661242961883545,0.0345450229942799,0.732175350189209,-0.680165648460388,0.0359710417687893,0.0242104567587376,-0.671167016029358,0.740910708904266,-0.707800209522247,-0.000793753773905337,0.706412196159363,0.0452755652368069,-0.666027665138245,0.744551777839661,0.0242104567587376,-0.671167016029358,0.740910708904266,-0.707153916358948,-1.95415259440779e-006,0.707059741020203,-0.707800209522247,-0.000793753773905337,0.706412196159363,-0.707153916358948,-1.95415259440779e-006,0.707059741020203,-0.740939974784851,0.671133875846863,-0.0242303088307381,-0.747231364250183,0.662823915481567,-0.0480591058731079,-0.0390511602163315,0.655095994472504,-0.754535734653473,-0.747231364250183,0.662823915481567,-0.0480591058731079,-0.740939974784851,0.671133875846863,-0.0242303088307381,-0.0359131619334221,0.68016517162323,-0.732178747653961,
- 0.724127948284149,0.0232794787734747,-0.689272701740265,-0.0390511602163315,0.655095994472504,-0.754535734653473,-0.0359131619334221,0.68016517162323,-0.732178747653961,0.740325272083282,0.0538160651922226,-0.670091271400452,0.749376058578491,-0.661242961883545,0.0345450229942799,0.689300537109375,-0.0232464112341404,-0.72410249710083,0.670124411582947,-0.0538062416017056,-0.740296006202698,0.732175350189209,-0.680165648460388,0.0359710417687893,-0.700794637203217,-0.144580811262131,0.69855797290802,-0.707800209522247,-0.000793753773905337,0.706412196159363,-0.747231364250183,0.662823915481567,-0.0480591058731079,-0.832537591457367,0.553966343402863,0.00157967500854284,0.0808147564530373,-0.759034812450409,0.646014750003815,0.0452755652368069,-0.666027665138245,0.744551777839661,-0.707800209522247,-0.000793753773905337,0.706412196159363,-0.700794637203217,-0.144580811262131,0.69855797290802,0.730654239654541,-0.674860060214996,-0.103481240570545,0.749376058578491,-0.661242961883545,0.0345450229942799,0.0452755652368069,-0.666027665138245,0.744551777839661,0.0808147564530373,-0.759034812450409,0.646014750003815,0.927728295326233,-0.0656441897153854,-0.367438554763794,0.689300537109375,-0.0232464112341404,-0.72410249710083,0.749376058578491,-0.661242961883545,0.0345450229942799,0.730654239654541,-0.674860060214996,-0.103481240570545,-0.182775631546974,0.638035178184509,-0.748000204563141,-0.0390511602163315,0.655095994472504,-0.754535734653473,0.724127948284149,0.0232794787734747,-0.689272701740265,0.367535978555679,0.0655432343482971,-0.927696824073792,-0.832537591457367,0.553966343402863,0.00157967500854284,-0.747231364250183,0.662823915481567,-0.0480591058731079,-0.0390511602163315,0.655095994472504,-0.754535734653473,-0.182775631546974,0.638035178184509,-0.748000204563141,0.0414866171777248,-0.661690294742584,0.748628616333008,0.748583137989044,-0.66173380613327,0.0416135154664516,0.759423077106476,-0.648705959320068,0.0495693646371365,0.0534917712211609,-0.65054589509964,0.757580876350403,-0.706225454807281,0.00105006771627814,0.707986116409302,
- 0.0414866171777248,-0.661690294742584,0.748628616333008,0.0534917712211609,-0.65054589509964,0.757580876350403,-0.707144200801849,2.02213050215505e-005,0.707069277763367,-0.706225454807281,0.00105006771627814,0.707986116409302,-0.707144200801849,2.02213050215505e-005,0.707069277763367,-0.747156858444214,0.663438439369202,-0.0400745570659637,-0.746507942676544,0.664206624031067,-0.0394409857690334,-0.0385357216000557,0.665176808834076,-0.745690822601318,-0.746507942676544,0.664206624031067,-0.0394409857690334,-0.747156858444214,0.663438439369202,-0.0400745570659637,-0.0304867550730705,0.677851140499115,-0.734566867351532,0.702596724033356,-0.00518424203619361,-0.711569368839264,-0.0385357216000557,0.665176808834076,-0.745690822601318,-0.0304867550730705,0.677851140499115,-0.734566867351532,0.736860454082489,0.0463148318231106,-0.674456596374512,0.748583137989044,-0.66173380613327,0.0416135154664516,0.711610376834869,0.00520674604922533,-0.702555060386658,0.674478054046631,-0.0462433993816376,-0.736845314502716,0.759423077106476,-0.648705959320068,0.0495693646371365,-0.708781838417053,-0.134618028998375,0.692463934421539,-0.706225454807281,0.00105006771627814,0.707986116409302,-0.746507942676544,0.664206624031067,-0.0394409857690334,-0.828791081905365,0.559449255466461,-0.011044810526073,0.0683813765645027,-0.755304038524628,0.651797294616699,0.0414866171777248,-0.661690294742584,0.748628616333008,-0.706225454807281,0.00105006771627814,0.707986116409302,-0.708781838417053,-0.134618028998375,0.692463934421539,0.725506901741028,-0.682000815868378,-0.0922748595476151,0.748583137989044,-0.66173380613327,0.0416135154664516,0.0414866171777248,-0.661690294742584,0.748628616333008,0.0683813765645027,-0.755304038524628,0.651797294616699,0.92115330696106,-0.0337210409343243,-0.387736409902573,0.711610376834869,0.00520674604922533,-0.702555060386658,0.748583137989044,-0.66173380613327,0.0416135154664516,0.725506901741028,-0.682000815868378,-0.0922748595476151,-0.17163747549057,0.632711827754974,-0.755126655101776,-0.0385357216000557,0.665176808834076,-0.745690822601318,
- 0.702596724033356,-0.00518424203619361,-0.711569368839264,0.387854278087616,0.0337171964347363,-0.921103835105896,-0.828791081905365,0.559449255466461,-0.011044810526073,-0.746507942676544,0.664206624031067,-0.0394409857690334,-0.0385357216000557,0.665176808834076,-0.745690822601318,-0.17163747549057,0.632711827754974,-0.755126655101776,0.0400490015745163,-0.663460671901703,0.747138500213623,0.747159779071808,-0.663435697555542,0.0400678776204586,0.75678014755249,-0.651911973953247,0.0479021519422531,0.0503812097012997,-0.653095483779907,0.755597770214081,-0.706012070178986,0.00122135563287884,0.708198726177216,0.0400490015745163,-0.663460671901703,0.747138500213623,0.0503812097012997,-0.653095483779907,0.755597770214081,-0.707114398479462,1.08712956716772e-005,0.707099139690399,-0.706012070178986,0.00122135563287884,0.708198726177216,-0.707114398479462,1.08712956716772e-005,0.707099139690399,-0.74717390537262,0.663420796394348,-0.0400510616600513,-0.746405780315399,0.664333343505859,-0.0392379499971867,-0.0400018505752087,0.663415789604187,-0.747180998325348,-0.746405780315399,0.664333343505859,-0.0392379499971867,-0.74717390537262,0.663420796394348,-0.0400510616600513,-0.0321169979870319,0.674695611000061,-0.737397015094757,0.712358474731445,0.00651400350034237,-0.701785564422607,-0.0400018505752087,0.663415789604187,-0.747180998325348,-0.0321169979870319,0.674695611000061,-0.737397015094757,0.731485426425934,0.0358399711549282,-0.680914580821991,0.747159779071808,-0.663435697555542,0.0400678776204586,0.701785922050476,-0.00647552451118827,-0.712358474731445,0.680949509143829,-0.0357268415391445,-0.731458365917206,0.75678014755249,-0.651911973953247,0.0479021519422531,-0.651760280132294,0.755339026451111,-0.0683481842279434,-0.692491292953491,0.134568959474564,0.708764374256134,-0.706012070178986,0.00122135563287884,0.708198726177216,-0.746405780315399,0.664333343505859,-0.0392379499971867,-0.692491292953491,0.134568959474564,0.708764374256134,0.0109335891902447,-0.559438049793243,0.828800022602081,0.0400490015745163,-0.663460671901703,0.747138500213623,
- -0.706012070178986,0.00122135563287884,0.708198726177216,0.0109335891902447,-0.559438049793243,0.828800022602081,0.755058407783508,-0.632749915122986,0.171797722578049,0.747159779071808,-0.663435697555542,0.0400678776204586,0.0400490015745163,-0.663460671901703,0.747138500213623,0.755058407783508,-0.632749915122986,0.171797722578049,0.921126008033752,-0.0338956415653229,-0.387785971164703,0.701785922050476,-0.00647552451118827,-0.712358474731445,0.747159779071808,-0.663435697555542,0.0400678776204586,0.387829393148422,0.0336114764213562,-0.921118140220642,0.0923333391547203,0.681953847408295,-0.72554349899292,-0.0400018505752087,0.663415789604187,-0.747180998325348,0.712358474731445,0.00651400350034237,-0.701785564422607,0.0923333391547203,0.681953847408295,-0.72554349899292,-0.651760280132294,0.755339026451111,-0.0683481842279434,-0.746405780315399,0.664333343505859,-0.0392379499971867,-0.0400018505752087,0.663415789604187,-0.747180998325348,-0.707155227661133,-3.373647632543e-005,0.707058310508728,-0.707154929637909,-3.4232776670251e-005,0.707058608531952,-0.707154393196106,-3.5225380997872e-005,0.707059264183044,-0.707154393196106,-3.5225380997872e-005,0.707059264183044,-0.70715469121933,-3.47290842910297e-005,0.707058966159821,-0.707155227661133,-3.37364799634088e-005,0.707058310508728,0.0399960912764072,-0.66343754529953,0.747161984443665,0.747165977954865,-0.663429975509644,0.0400452800095081,0.831445038318634,-0.555600166320801,0.00272858166135848,0.179152294993401,-0.636080622673035,0.750537097454071,-0.697682619094849,0.00834120344370604,0.716358482837677,0.0399960912764072,-0.66343754529953,0.747161984443665,0.179152294993401,-0.636080622673035,0.750537097454071,-0.707133293151855,-2.93252342089545e-005,0.707080245018005,-0.697682619094849,0.00834120344370604,0.716358482837677,-0.707133293151855,-2.93252342089545e-005,0.707080245018005,-0.747164487838745,0.663430213928223,-0.040070429444313,-0.741706788539886,0.669923186302185,-0.0327741466462612,-0.0400511026382446,0.66342830657959,-0.747167110443115,-0.741706788539886,0.669923186302185,-0.0327741466462612,
- -0.747164487838745,0.663430213928223,-0.040070429444313,-0.0765638574957848,0.757910132408142,-0.647850394248962,0.741968870162964,0.0576451383531094,-0.66795152425766,-0.0400511026382446,0.66342830657959,-0.747167110443115,-0.0765638574957848,0.757910132408142,-0.647850394248962,0.659785151481628,0.393798530101776,-0.640004932880402,0.747165977954865,-0.663429975509644,0.0400452800095081,0.66800194978714,-0.0576248243451118,-0.741925060749054,0.639850199222565,-0.39369323849678,-0.659997999668121,0.831445038318634,-0.555600166320801,0.00272858166135848,0.70712411403656,4.85262789879926e-005,-0.707089424133301,0.70712274312973,5.08856937813107e-005,-0.707090854644775,0.70712274312973,5.08586126670707e-005,-0.70709091424942,0.707123398780823,4.9665348342387e-005,-0.707090258598328,0.707124769687653,4.73601176054217e-005,-0.707088768482208,0.707124769687653,4.73601176054217e-005,-0.707088768482208,-0.708777606487274,-0.13458651304245,0.692474484443665,-0.708775460720062,-0.00193384080193937,0.705431520938873,-0.748804748058319,0.661474943161011,-0.0417404398322105,-0.828814327716827,0.559416890144348,-0.0109274974092841,0.068434551358223,-0.755306422710419,0.651789128780365,0.0383138433098793,-0.665380716323853,0.745520412921906,-0.708775460720062,-0.00193384080193937,0.705431520938873,-0.708777606487274,-0.13458651304245,0.692474484443665,0.725544273853302,-0.681956946849823,-0.0923042595386505,0.745465099811554,-0.66543585062027,0.0384299978613853,0.0383138433098793,-0.665380716323853,0.745520412921906,0.068434551358223,-0.755306422710419,0.651789128780365,0.921138763427734,-0.0338033996522427,-0.387763738632202,0.702201962471008,-0.00599397672340274,-0.711952567100525,0.745465099811554,-0.66543585062027,0.0384299978613853,0.725544273853302,-0.681956946849823,-0.0923042595386505,-0.171744257211685,0.632727026939392,-0.755089640617371,-0.0416766405105591,0.661443114280701,-0.74883633852005,0.711997151374817,0.00601014960557222,-0.702156662940979,0.387864530086517,0.0336833074688911,-0.921100735664368,-0.828814327716827,0.559416890144348,-0.0109274974092841,
- -0.748804748058319,0.661474943161011,-0.0417404398322105,-0.0416766405105591,0.661443114280701,-0.74883633852005,-0.171744257211685,0.632727026939392,-0.755089640617371,-0.748804748058319,0.661474943161011,-0.0417404398322105,-0.708775460720062,-0.00193384080193937,0.705431520938873,-0.697682619094849,0.00834120344370604,0.716358482837677,-0.741706788539886,0.669923186302185,-0.0327741466462612,-0.708775460720062,-0.00193384080193937,0.705431520938873,0.0383138433098793,-0.665380716323853,0.745520412921906,0.0399960912764072,-0.66343754529953,0.747161984443665,-0.697682619094849,0.00834120344370604,0.716358482837677,0.0383138433098793,-0.665380716323853,0.745520412921906,0.745465099811554,-0.66543585062027,0.0384299978613853,0.747165977954865,-0.663429975509644,0.0400452800095081,0.0399960912764072,-0.66343754529953,0.747161984443665,0.745465099811554,-0.66543585062027,0.0384299978613853,0.702201962471008,-0.00599397672340274,-0.711952567100525,0.66800194978714,-0.0576248243451118,-0.741925060749054,0.747165977954865,-0.663429975509644,0.0400452800095081,0.711997151374817,0.00601014960557222,-0.702156662940979,-0.0416766405105591,0.661443114280701,-0.74883633852005,-0.0400511026382446,0.66342830657959,-0.747167110443115,0.741968870162964,0.0576451383531094,-0.66795152425766,-0.0416766405105591,0.661443114280701,-0.74883633852005,-0.748804748058319,0.661474943161011,-0.0417404398322105,-0.741706788539886,0.669923186302185,-0.0327741466462612,-0.0400511026382446,0.66342830657959,-0.747167110443115,-0.0390184707939625,-0.748750030994415,0.661703109741211,0.652107238769531,-0.756780862808228,-0.0451539233326912,0.690343141555786,-0.723466813564301,-0.00471876468509436,-0.104978553950787,-0.78954416513443,0.604648232460022,-0.727942049503326,-0.0251062959432602,0.685178935527802,-0.0390184707939625,-0.748750030994415,0.661703109741211,-0.104978553950787,-0.78954416513443,0.604648232460022,-0.745484590530396,-0.0404967181384563,0.665291428565979,-0.727942049503326,-0.0251062959432602,0.685178935527802,-0.745484590530396,-0.0404967181384563,0.665291428565979,
- -0.747177302837372,0.663418054580688,-0.0400334522128105,-0.747418820858002,0.663131475448608,-0.0402716882526875,-0.040643859654665,0.662766098976135,-0.747722625732422,-0.747418820858002,0.663131475448608,-0.0402716882526875,-0.747177302837372,0.663418054580688,-0.0400334522128105,-0.032932236790657,0.673463881015778,-0.738486170768738,0.708818674087524,0.00209602667018771,-0.705387592315674,-0.040643859654665,0.662766098976135,-0.747722625732422,-0.032932236790657,0.673463881015778,-0.738486170768738,0.7291659116745,0.031597264111042,-0.68360710144043,0.652107238769531,-0.756780862808228,-0.0451539233326912,0.705400466918945,-0.00200529559515417,-0.708806157112122,0.683692395687103,-0.0315641537308693,-0.72908741235733,0.690343141555786,-0.723466813564301,-0.00471876468509436,-0.686053872108459,-0.221100062131882,0.693141222000122,-0.727942049503326,-0.0251062959432602,0.685178935527802,-0.747418820858002,0.663131475448608,-0.0402716882526875,-0.833824872970581,0.551980316638947,0.00734010757878423,0.14675284922123,-0.864442408084869,0.480835646390915,-0.0390184707939625,-0.748750030994415,0.661703109741211,-0.727942049503326,-0.0251062959432602,0.685178935527802,-0.686053872108459,-0.221100062131882,0.693141222000122,0.71633780002594,-0.668817043304443,-0.198856621980667,0.652107238769531,-0.756780862808228,-0.0451539233326912,-0.0390184707939625,-0.748750030994415,0.661703109741211,0.14675284922123,-0.864442408084869,0.480835646390915,0.92950838804245,-0.0805552303791046,-0.359896093606949,0.705400466918945,-0.00200529559515417,-0.708806157112122,0.652107238769531,-0.756780862808228,-0.0451539233326912,0.71633780002594,-0.668817043304443,-0.198856621980667,-0.187224879860878,0.640811085700989,-0.744518637657166,-0.040643859654665,0.662766098976135,-0.747722625732422,0.708818674087524,0.00209602667018771,-0.705387592315674,0.359865099191666,0.080403208732605,-0.9295334815979,-0.833824872970581,0.551980316638947,0.00734010757878423,-0.747418820858002,0.663131475448608,-0.0402716882526875,-0.040643859654665,0.662766098976135,-0.747722625732422,
- -0.187224879860878,0.640811085700989,-0.744518637657166,0.0465229600667953,-0.666903853416443,0.743689954280853,0.749792993068695,-0.660855770111084,0.0328643471002579,0.718932449817657,-0.694311022758484,0.032685037702322,0.00932582281529903,-0.679509043693542,0.733607888221741,-0.708852171897888,-0.00192907860036939,0.705354511737823,0.0465229600667953,-0.666903853416443,0.743689954280853,0.00932582281529903,-0.679509043693542,0.733607888221741,-0.707057118415833,1.5349894965766e-005,0.707156419754028,-0.708852171897888,-0.00192907860036939,0.705354511737823,-0.707057118415833,1.5349894965766e-005,0.707156419754028,-0.73364919424057,0.679465353488922,-0.00925700459629297,-0.748892903327942,0.660628139972687,-0.0522481612861156,-0.0398807860910892,0.650702595710754,-0.758284628391266,-0.748892903327942,0.660628139972687,-0.0522481612861156,-0.73364919424057,0.679465353488922,-0.00925700459629297,-0.0326181948184967,0.694263994693756,-0.718980967998505,0.732226431369781,0.0371702015399933,-0.680046200752258,-0.0398807860910892,0.650702595710754,-0.758284628391266,-0.0326181948184967,0.694263994693756,-0.718980967998505,0.757043719291687,0.107731521129608,-0.644421398639679,0.749792993068695,-0.660855770111084,0.0328643471002579,0.680065333843231,-0.0371483154594898,-0.732209801673889,0.644453585147858,-0.107821419835091,-0.757003426551819,0.718932449817657,-0.694311022758484,0.032685037702322,-0.680749118328094,-0.160251036286354,0.714772880077362,-0.708852171897888,-0.00192907860036939,0.705354511737823,-0.748892903327942,0.660628139972687,-0.0522481612861156,-0.836308836936951,0.547395706176758,0.0307484436780214,0.109817922115326,-0.761989891529083,0.638209640979767,0.0465229600667953,-0.666903853416443,0.743689954280853,-0.708852171897888,-0.00192907860036939,0.705354511737823,-0.680749118328094,-0.160251036286354,0.714772880077362,0.744721293449402,-0.656083166599274,-0.122250616550446,0.749792993068695,-0.660855770111084,0.0328643471002579,0.0465229600667953,-0.666903853416443,0.743689954280853,0.109817922115326,-0.761989891529083,0.638209640979767,
- 0.930544435977936,-0.140524014830589,-0.338142096996307,0.680065333843231,-0.0371483154594898,-0.732209801673889,0.749792993068695,-0.660855770111084,0.0328643471002579,0.744721293449402,-0.656083166599274,-0.122250616550446,-0.201298788189888,0.653273105621338,-0.729871928691864,-0.0398807860910892,0.650702595710754,-0.758284628391266,0.732226431369781,0.0371702015399933,-0.680046200752258,0.338207066059113,0.140440762042999,-0.930533409118652,-0.836308836936951,0.547395706176758,0.0307484436780214,-0.748892903327942,0.660628139972687,-0.0522481612861156,-0.0398807860910892,0.650702595710754,-0.758284628391266,-0.201298788189888,0.653273105621338,-0.729871928691864,0.0480089150369167,-0.666871011257172,0.743624985218048,0.751702010631561,-0.658830463886261,0.0297741685062647,0.731203675270081,-0.681227385997772,0.0356420464813709,0.0218977648764849,-0.669334530830383,0.742638349533081,-0.705816686153412,0.00162639352492988,0.708392679691315,0.0480089150369167,-0.666871011257172,0.743624985218048,0.0218977648764849,-0.669334530830383,0.742638349533081,-0.707140862941742,-3.2538464438403e-005,0.707072734832764,-0.705816686153412,0.00162639352492988,0.708392679691315,-0.707140862941742,-3.2538464438403e-005,0.707072734832764,-0.742696642875671,0.669271230697632,-0.0218568816781044,-0.742204070091248,0.668558716773987,-0.046500850468874,-0.030801409855485,0.657464623451233,-0.752855598926544,-0.742204070091248,0.668558716773987,-0.046500850468874,-0.742696642875671,0.669271230697632,-0.0218568816781044,-0.0355871468782425,0.681247055530548,-0.731188178062439,0.716085433959961,0.0114888772368431,-0.697918176651001,-0.030801409855485,0.657464623451233,-0.752855598926544,-0.0355871468782425,0.681247055530548,-0.731188178062439,0.741724252700806,0.0575657673180103,-0.66823011636734,0.751702010631561,-0.658830463886261,0.0297741685062647,0.697906076908112,-0.0114611061289907,-0.716097593307495,0.668222725391388,-0.0574904344975948,-0.741736650466919,0.731203675270081,-0.681227385997772,0.0356420464813709,-0.713466882705688,-0.127233639359474,0.689040422439575,
- -0.705816686153412,0.00162639352492988,0.708392679691315,-0.742204070091248,0.668558716773987,-0.046500850468874,-0.825693368911743,0.563810586929321,-0.0186614040285349,0.0607100650668144,-0.752067446708679,0.656284093856812,0.0480089150369167,-0.666871011257172,0.743624985218048,-0.705816686153412,0.00162639352492988,0.708392679691315,-0.713466882705688,-0.127233639359474,0.689040422439575,0.722784996032715,-0.68550843000412,-0.0875214859843254,0.751702010631561,-0.658830463886261,0.0297741685062647,0.0480089150369167,-0.666871011257172,0.743624985218048,0.0607100650668144,-0.752067446708679,0.656284093856812,0.911085963249207,-0.00479007279500365,-0.412188589572906,0.697906076908112,-0.0114611061289907,-0.716097593307495,0.751702010631561,-0.658830463886261,0.0297741685062647,0.722784996032715,-0.68550843000412,-0.0875214859843254,-0.0363005138933659,0.662294805049896,-0.748363375663757,-0.030801409855485,0.657464623451233,-0.752855598926544,0.716085433959961,0.0114888772368431,-0.697918176651001,0.41223993897438,0.00480466755107045,-0.911062777042389,-0.825693368911743,0.563810586929321,-0.0186614040285349,-0.742204070091248,0.668558716773987,-0.046500850468874,-0.030801409855485,0.657464623451233,-0.752855598926544,-0.0363005138933659,0.662294805049896,-0.748363375663757,0.0224604792892933,-0.664584755897522,0.74687522649765,0.740629851818085,-0.670043587684631,0.0500897876918316,0.760891556739807,-0.647902190685272,0.0355897583067417,0.0668530389666557,-0.654337465763092,0.753241777420044,-0.712541937828064,-0.00546035077422857,0.701608300209045,0.0224604792892933,-0.664584755897522,0.74687522649765,0.0668530389666557,-0.654337465763092,0.753241777420044,-0.707084894180298,-6.00152134211385e-006,0.707128703594208,-0.712541937828064,-0.00546035077422857,0.701608300209045,-0.707084894180298,-6.00152134211385e-006,0.707128703594208,-0.753238677978516,0.65433806180954,-0.0668831616640091,-0.752910375595093,0.657473742961884,-0.0292287617921829,-0.0514547750353813,0.668378293514252,-0.742039561271667,-0.752910375595093,0.657473742961884,-0.0292287617921829,
- -0.753238677978516,0.65433806180954,-0.0668831616640091,-0.0355728417634964,0.647887170314789,-0.760905206203461,0.703754186630249,-0.0038750923704356,-0.710433006286621,-0.0514547750353813,0.668378293514252,-0.742039561271667,-0.0355728417634964,0.647887170314789,-0.760905206203461,0.724932789802551,0.0245466530323029,-0.688382089138031,0.740629851818085,-0.670043587684631,0.0500897876918316,0.710451602935791,0.0039027133025229,-0.70373523235321,0.688387513160706,-0.0245628617703915,-0.724927127361298,0.760891556739807,-0.647902190685272,0.0355897583067417,-0.708627164363861,-0.134586453437805,0.69262832403183,-0.712541937828064,-0.00546035077422857,0.701608300209045,-0.752910375595093,0.657473742961884,-0.0292287617921829,-0.828833162784576,0.559389293193817,-0.0109223257750273,0.0683154761791229,-0.755357325077057,0.651742517948151,0.0224604792892933,-0.664584755897522,0.74687522649765,-0.712541937828064,-0.00546035077422857,0.701608300209045,-0.708627164363861,-0.134586453437805,0.69262832403183,0.7254359126091,-0.682084739208221,-0.0922130048274994,0.740629851818085,-0.670043587684631,0.0500897876918316,0.0224604792892933,-0.664584755897522,0.74687522649765,0.0683154761791229,-0.755357325077057,0.651742517948151,0.92112523317337,-0.0337631739675999,-0.387799352407455,0.710451602935791,0.0039027133025229,-0.70373523235321,0.740629851818085,-0.670043587684631,0.0500897876918316,0.7254359126091,-0.682084739208221,-0.0922130048274994,-0.171646311879158,0.632709801197052,-0.755126357078552,-0.0514547750353813,0.668378293514252,-0.742039561271667,0.703754186630249,-0.0038750923704356,-0.710433006286621,0.387940168380737,0.033558014780283,-0.92107355594635,-0.828833162784576,0.559389293193817,-0.0109223257750273,-0.752910375595093,0.657473742961884,-0.0292287617921829,-0.0514547750353813,0.668378293514252,-0.742039561271667,-0.171646311879158,0.632709801197052,-0.755126357078552,0.036046851426363,-0.667859733104706,0.743413805961609,0.743275761604309,-0.667987644672394,0.0365188382565975,0.768056094646454,-0.63815450668335,0.0533747896552086,
- 0.0642359778285027,-0.643222987651825,0.762979567050934,-0.709443688392639,-0.00257356557995081,0.704757392406464,0.036046851426363,-0.667859733104706,0.743413805961609,0.0642359778285027,-0.643222987651825,0.762979567050934,-0.707158446311951,2.73476671281969e-005,0.707055032253265,-0.709443688392639,-0.00257356557995081,0.704757392406464,-0.707158446311951,2.73476671281969e-005,0.707055032253265,-0.747188150882721,0.663404583930969,-0.040052805095911,-0.748759925365448,0.661527335643768,-0.041713148355484,-0.0436235554516315,0.658846616744995,-0.751011431217194,-0.748759925365448,0.661527335643768,-0.041713148355484,-0.747188150882721,0.663404583930969,-0.040052805095911,-0.0266954470425844,0.687823414802551,-0.725387036800385,0.717941701412201,0.0140181910246611,-0.695962071418762,-0.0436235554516315,0.658846616744995,-0.751011431217194,-0.0266954470425844,0.687823414802551,-0.725387036800385,0.750508904457092,0.0814459025859833,-0.655822336673737,0.743275761604309,-0.667987644672394,0.0365188382565975,0.696004152297974,-0.0139935724437237,-0.717901349067688,0.655908465385437,-0.0813161358237267,-0.750447690486908,0.768056094646454,-0.63815450668335,0.0533747896552086,-0.693211019039154,-0.15182238817215,0.704562544822693,-0.709443688392639,-0.00257356557995081,0.704757392406464,-0.748759925365448,0.661527335643768,-0.041713148355484,-0.834743142127991,0.550488770008087,0.0128870476037264,0.0919872000813484,-0.760999739170074,0.642197608947754,0.036046851426363,-0.667859733104706,0.743413805961609,-0.709443688392639,-0.00257356557995081,0.704757392406464,-0.693211019039154,-0.15182238817215,0.704562544822693,0.735808074474335,-0.667883038520813,-0.111887142062187,0.743275761604309,-0.667987644672394,0.0365188382565975,0.036046851426363,-0.667859733104706,0.743413805961609,0.0919872000813484,-0.760999739170074,0.642197608947754,0.930632710456848,-0.0945968553423882,-0.35351687669754,0.696004152297974,-0.0139935724437237,-0.717901349067688,0.743275761604309,-0.667987644672394,0.0365188382565975,0.735808074474335,-0.667883038520813,-0.111887142062187,
- -0.191064342856407,0.643494486808777,-0.74122154712677,-0.0436235554516315,0.658846616744995,-0.751011431217194,0.717941701412201,0.0140181910246611,-0.695962071418762,0.353424549102783,0.0946652144193649,-0.930660843849182,-0.834743142127991,0.550488770008087,0.0128870476037264,-0.748759925365448,0.661527335643768,-0.041713148355484,-0.0436235554516315,0.658846616744995,-0.751011431217194,-0.191064342856407,0.643494486808777,-0.74122154712677,-0.0600667186081409,-0.741373777389526,0.668398678302765,0.63905531167984,-0.769071161746979,-0.011745247989893,0.681794285774231,-0.731519639492035,-0.00597492465749383,-0.103230521082878,-0.796030879020691,0.596387684345245,-0.733504951000214,-0.0298904944211245,0.67902660369873,-0.0600667186081409,-0.741373777389526,0.668398678302765,-0.103230521082878,-0.796030879020691,0.596387684345245,-0.748361706733704,-0.0392138287425041,0.662130832672119,-0.733504951000214,-0.0298904944211245,0.67902660369873,-0.748361706733704,-0.0392138287425041,0.662130832672119,-0.75044459104538,0.657975256443024,-0.062461793422699,-0.752751648426056,0.65798282623291,-0.0205816235393286,-0.0718615055084229,0.678172886371613,-0.731380522251129,-0.752751648426056,0.65798282623291,-0.0205816235393286,-0.75044459104538,0.657975256443024,-0.062461793422699,-0.0500490330159664,0.659293115139008,-0.750218391418457,0.708759307861328,0.00200739153660834,-0.705447494983673,-0.0718615055084229,0.678172886371613,-0.731380522251129,-0.0500490330159664,0.659293115139008,-0.750218391418457,0.722504436969757,0.0207835119217634,-0.691053807735443,0.63905531167984,-0.769071161746979,-0.011745247989893,0.705436706542969,-0.00197341502644122,-0.708770155906677,0.691056370735168,-0.0207190252840519,-0.722503840923309,0.681794285774231,-0.731519639492035,-0.00597492465749383,-0.701568603515625,-0.0549727343022823,0.71047830581665,-0.733504951000214,-0.0298904944211245,0.67902660369873,-0.752751648426056,0.65798282623291,-0.0205816235393286,-0.656354427337646,0.74372410774231,-0.126780271530151,0.174204990267754,-0.834634840488434,0.52252984046936,
- -0.0600667186081409,-0.741373777389526,0.668398678302765,-0.733504951000214,-0.0298904944211245,0.67902660369873,-0.701568603515625,-0.0549727343022823,0.71047830581665,0.742805421352386,-0.655292391777039,-0.137229517102242,0.63905531167984,-0.769071161746979,-0.011745247989893,-0.0600667186081409,-0.741373777389526,0.668398678302765,0.174204990267754,-0.834634840488434,0.52252984046936,0.911740899085999,-0.00632414128631353,-0.410717099905014,0.705436706542969,-0.00197341502644122,-0.708770155906677,0.63905531167984,-0.769071161746979,-0.011745247989893,0.742805421352386,-0.655292391777039,-0.137229517102242,0.0647242292761803,0.644707441329956,-0.761684358119965,-0.0718615055084229,0.678172886371613,-0.731380522251129,0.708759307861328,0.00200739153660834,-0.705447494983673,0.410722613334656,0.00631021428853273,-0.911738514900208,-0.656354427337646,0.74372410774231,-0.126780271530151,-0.752751648426056,0.65798282623291,-0.0205816235393286,-0.0718615055084229,0.678172886371613,-0.731380522251129,0.0647242292761803,0.644707441329956,-0.761684358119965,0.0347658805549145,-0.661133170127869,0.74946254491806,0.744246542453766,-0.666266143321991,0.0467600896954536,0.730097591876984,-0.682667672634125,0.0303699485957623,0.0216489341109991,-0.67755138874054,0.735156774520874,-0.707129180431366,1.03361508081434e-005,0.707084357738495,0.0347658805549145,-0.661133170127869,0.74946254491806,0.0216489341109991,-0.67755138874054,0.735156774520874,-0.707128465175629,-2.30686837312533e-005,0.707085251808167,-0.707129180431366,1.03361508081434e-005,0.707084357738495,-0.707128465175629,-2.30686837312533e-005,0.707085251808167,-0.735190391540527,0.677517771720886,-0.0215601529926062,-0.74948114156723,0.661116182804108,-0.0346891097724438,-0.046725932508707,0.666249096393585,-0.744264006614685,-0.74948114156723,0.661116182804108,-0.0346891097724438,-0.735190391540527,0.677517771720886,-0.0215601529926062,-0.0303712449967861,0.682700157165527,-0.730067193508148,0.720601320266724,0.0179491378366947,-0.693117320537567,-0.046725932508707,0.666249096393585,-0.744264006614685,
- -0.0303712449967861,0.682700157165527,-0.730067193508148,0.744145393371582,0.0630795210599899,-0.665032804012299,0.744246542453766,-0.666266143321991,0.0467600896954536,0.693070530891418,-0.0178881268948317,-0.720647811889648,0.665022194385529,-0.0630874186754227,-0.744154274463654,0.730097591876984,-0.682667672634125,0.0303699485957623,-0.707106113433838,3.17878544819905e-007,0.707107424736023,-0.707129180431366,1.03361508081434e-005,0.707084357738495,-0.74948114156723,0.661116182804108,-0.0346891097724438,-0.647661507129669,0.750057399272919,-0.133971989154816,0.134069964289665,-0.750084519386292,0.647609829902649,0.0347658805549145,-0.661133170127869,0.74946254491806,-0.707129180431366,1.03361508081434e-005,0.707084357738495,-0.707106113433838,3.17878544819905e-007,0.707107424736023,0.759857714176178,-0.64162141084671,-0.104585878551006,0.744246542453766,-0.666266143321991,0.0467600896954536,0.0347658805549145,-0.661133170127869,0.74946254491806,0.134069964289665,-0.750084519386292,0.647609829902649,0.920403838157654,-0.0311711765825748,-0.389724463224411,0.693070530891418,-0.0178881268948317,-0.720647811889648,0.744246542453766,-0.666266143321991,0.0467600896954536,0.759857714176178,-0.64162141084671,-0.104585878551006,0.104583367705345,0.641630172729492,-0.759850680828094,-0.046725932508707,0.666249096393585,-0.744264006614685,0.720601320266724,0.0179491378366947,-0.693117320537567,0.389900952577591,0.0309741627424955,-0.920335710048676,-0.647661507129669,0.750057399272919,-0.133971989154816,-0.74948114156723,0.661116182804108,-0.0346891097724438,-0.046725932508707,0.666249096393585,-0.744264006614685,0.104583367705345,0.641630172729492,-0.759850680828094,0.0358545891940594,-0.667996287345886,0.743300318717957,0.743093371391296,-0.668202936649323,0.0362919233739376,0.758881509304047,-0.649367332458496,0.0492010153830051,0.0528965033590794,-0.651042997837067,0.757195472717285,-0.709562718868256,-0.00267361616715789,0.704637229442596,0.0358545891940594,-0.667996287345886,0.743300318717957,0.0528965033590794,-0.651042997837067,0.757195472717285,
- -0.707104086875916,-1.701750443317e-005,0.707109570503235,-0.709562718868256,-0.00267361616715789,0.704637229442596,-0.707104086875916,-1.701750443317e-005,0.707109570503235,-0.747165977954865,0.663430690765381,-0.0400352999567986,-0.748815953731537,0.661457717418671,-0.0418128408491611,-0.0437448360025883,0.658614099025726,-0.751208305358887,-0.748815953731537,0.661457717418671,-0.0418128408491611,-0.747165977954865,0.663430690765381,-0.0400352999567986,-0.0308452025055885,0.677213966846466,-0.735139310359955,0.718389630317688,0.0147082284092903,-0.695485472679138,-0.0437448360025883,0.658614099025726,-0.751208305358887,-0.0308452025055885,0.677213966846466,-0.735139310359955,0.735842823982239,0.0441160798072815,-0.675713777542114,0.743093371391296,-0.668202936649323,0.0362919233739376,0.695481538772583,-0.0146382413804531,-0.718394815921783,0.675753474235535,-0.0441986620426178,-0.735801458358765,0.758881509304047,-0.649367332458496,0.0492010153830051,-0.708651185035706,-0.134612709283829,0.692598640918732,-0.709562718868256,-0.00267361616715789,0.704637229442596,-0.748815953731537,0.661457717418671,-0.0418128408491611,-0.828824281692505,0.559401273727417,-0.0109804337844253,0.0684622898697853,-0.755349040031433,0.651736736297607,0.0358545891940594,-0.667996287345886,0.743300318717957,-0.709562718868256,-0.00267361616715789,0.704637229442596,-0.708651185035706,-0.134612709283829,0.692598640918732,0.7255539894104,-0.681950986385345,-0.0922721475362778,0.743093371391296,-0.668202936649323,0.0362919233739376,0.0358545891940594,-0.667996287345886,0.743300318717957,0.0684622898697853,-0.755349040031433,0.651736736297607,0.92110538482666,-0.0338489450514317,-0.387838989496231,0.695481538772583,-0.0146382413804531,-0.718394815921783,0.743093371391296,-0.668202936649323,0.0362919233739376,0.7255539894104,-0.681950986385345,-0.0922721475362778,-0.171684145927429,0.632701277732849,-0.755124866962433,-0.0437448360025883,0.658614099025726,-0.751208305358887,0.718389630317688,0.0147082284092903,-0.695485472679138,0.387852042913437,0.0335015505552292,-0.921112656593323,
- -0.828824281692505,0.559401273727417,-0.0109804337844253,-0.748815953731537,0.661457717418671,-0.0418128408491611,-0.0437448360025883,0.658614099025726,-0.751208305358887,-0.171684145927429,0.632701277732849,-0.755124866962433,0.0347572602331638,-0.665957033634186,0.745179951190948,0.744019150733948,-0.666949450969696,0.04017324000597,0.759809076786041,-0.648442685604095,0.0470346622169018,0.0562817007303238,-0.651120841503143,0.756884396076202,-0.709265112876892,-0.00241934647783637,0.704937636852264,0.0347572602331638,-0.665957033634186,0.745179951190948,0.0562817007303238,-0.651120841503143,0.756884396076202,-0.707109749317169,-1.84485761565156e-005,0.707103729248047,-0.709265112876892,-0.00241934647783637,0.704937636852264,-0.707109749317169,-1.84485761565156e-005,0.707103729248047,-0.756909728050232,0.651088893413544,-0.0563120394945145,-0.748209595680237,0.662375569343567,-0.0379602797329426,-0.0422226414084435,0.664364159107208,-0.746215403079987,-0.748209595680237,0.662375569343567,-0.0379602797329426,-0.756909728050232,0.651088893413544,-0.0563120394945145,-0.0470095574855804,0.648463428020477,-0.759792923927307,0.712080717086792,0.00609532138332725,-0.702071189880371,-0.0422226414084435,0.664364159107208,-0.746215403079987,-0.0470095574855804,0.648463428020477,-0.759792923927307,0.735105633735657,0.0426778495311737,-0.67660790681839,0.744019150733948,-0.666949450969696,0.04017324000597,0.702158570289612,-0.0060697803273797,-0.711994707584381,0.676672518253326,-0.0426504015922546,-0.735047817230225,0.759809076786041,-0.648442685604095,0.0470346622169018,-0.69319623708725,-0.151793077588081,0.704583525657654,-0.709265112876892,-0.00241934647783637,0.704937636852264,-0.748209595680237,0.662375569343567,-0.0379602797329426,-0.834762454032898,0.550460815429688,0.0128237018361688,0.092084102332592,-0.761036455631256,0.642140209674835,0.0347572602331638,-0.665957033634186,0.745179951190948,-0.709265112876892,-0.00241934647783637,0.704937636852264,-0.69319623708725,-0.151793077588081,0.704583525657654,0.735755085945129,-0.667948007583618,-0.111847631633282,
- 0.744019150733948,-0.666949450969696,0.04017324000597,0.0347572602331638,-0.665957033634186,0.745179951190948,0.092084102332592,-0.761036455631256,0.642140209674835,0.930697083473206,-0.0946380496025085,-0.353336662054062,0.702158570289612,-0.0060697803273797,-0.711994707584381,0.744019150733948,-0.666949450969696,0.04017324000597,0.735755085945129,-0.667948007583618,-0.111847631633282,-0.19108872115612,0.64355593919754,-0.741161823272705,-0.0422226414084435,0.664364159107208,-0.746215403079987,0.712080717086792,0.00609532138332725,-0.702071189880371,0.353463798761368,0.0946888476610184,-0.930643498897552,-0.834762454032898,0.550460815429688,0.0128237018361688,-0.748209595680237,0.662375569343567,-0.0379602797329426,-0.0422226414084435,0.664364159107208,-0.746215403079987,-0.19108872115612,0.64355593919754,-0.741161823272705,0.040223017334938,-0.663224577903748,0.747338831424713,0.747349321842194,-0.663211047649384,0.0402515903115273,0.75813752412796,-0.650266289710999,0.0487972684204578,0.0519598312675953,-0.651759266853333,0.756643891334534,-0.706993877887726,0.000109714652353432,0.707219660282135,0.040223017334938,-0.663224577903748,0.747338831424713,0.0519598312675953,-0.651759266853333,0.756643891334534,-0.707139432430267,2.60428259934997e-005,0.707074284553528,-0.706993877887726,0.000109714652353432,0.707219660282135,-0.707139432430267,2.60428259934997e-005,0.707074284553528,-0.747169375419617,0.663425326347351,-0.0400600843131542,-0.747070074081421,0.663542807102203,-0.0399665348231792,-0.0398347415030003,0.663635492324829,-0.746994614601135,-0.747070074081421,0.663542807102203,-0.0399665348231792,-0.747169375419617,0.663425326347351,-0.0400600843131542,-0.0312798209488392,0.676310956478119,-0.735951781272888,0.70653235912323,-0.000687376246787608,-0.707680404186249,-0.0398347415030003,0.663635492324829,-0.746994614601135,-0.0312798209488392,0.676310956478119,-0.735951781272888,0.734303772449493,0.0411777570843697,-0.677570939064026,0.747349321842194,-0.663211047649384,0.0402515903115273,0.707709848880768,0.000704568810760975,-0.706502914428711,
- 0.677600026130676,-0.0410747900605202,-0.734282672405243,0.75813752412796,-0.650266289710999,0.0487972684204578,-0.689559102058411,-0.154634639620781,0.707528352737427,-0.706993877887726,0.000109714652353432,0.707219660282135,-0.747070074081421,0.663542807102203,-0.0399665348231792,-0.835459411144257,0.549249112606049,0.0182476248592138,0.0971977785229683,-0.761517226696014,0.640815079212189,0.040223017334938,-0.663224577903748,0.747338831424713,-0.706993877887726,0.000109714652353432,0.707219660282135,-0.689559102058411,-0.154634639620781,0.707528352737427,0.738235116004944,-0.664627254009247,-0.115236803889275,0.747349321842194,-0.663211047649384,0.0402515903115273,0.040223017334938,-0.663224577903748,0.747338831424713,0.0971977785229683,-0.761517226696014,0.640815079212189,0.931167662143707,-0.107926815748215,-0.348251044750214,0.707709848880768,0.000704568810760975,-0.706502914428711,0.747349321842194,-0.663211047649384,0.0402515903115273,0.738235116004944,-0.664627254009247,-0.115236803889275,-0.194465413689613,0.646235466003418,-0.737945079803467,-0.0398347415030003,0.663635492324829,-0.746994614601135,0.70653235912323,-0.000687376246787608,-0.707680404186249,0.348274528980255,0.107916697859764,-0.931159973144531,-0.835459411144257,0.549249112606049,0.0182476248592138,-0.747070074081421,0.663542807102203,-0.0399665348231792,-0.0398347415030003,0.663635492324829,-0.746994614601135,-0.194465413689613,0.646235466003418,-0.737945079803467,-0.051020186394453,-0.723269701004028,0.688678205013275,0.665729939937592,-0.746156692504883,-0.00733474176377058,0.723739385604858,-0.690067827701569,0.00278357020579278,-0.0361202694475651,-0.735432803630829,0.676634192466736,-0.73146665096283,-0.0225762855261564,0.681503355503082,-0.051020186394453,-0.723269701004028,0.688678205013275,-0.0361202694475651,-0.735432803630829,0.676634192466736,-0.734845578670502,-0.0190648194402456,0.677966356277466,-0.73146665096283,-0.0225762855261564,0.681503355503082,-0.734845578670502,-0.0190648194402456,0.677966356277466,-0.755406618118286,0.650169730186462,-0.0814860463142395,
- -0.75581568479538,0.654296219348907,-0.0252813175320625,-0.0565880835056305,0.670083999633789,-0.740125179290771,-0.75581568479538,0.654296219348907,-0.0252813175320625,-0.755406618118286,0.650169730186462,-0.0814860463142395,-0.0338260270655155,0.638870120048523,-0.768570721149445,0.707492351531982,0.000451666535809636,-0.70672082901001,-0.0565880835056305,0.670083999633789,-0.740125179290771,-0.0338260270655155,0.638870120048523,-0.768570721149445,0.736772894859314,0.0460808202624321,-0.674568235874176,0.665729939937592,-0.746156692504883,-0.00733474176377058,0.706754505634308,-0.000426106678787619,-0.707458794116974,0.67460435628891,-0.04608104377985,-0.736739754676819,0.723739385604858,-0.690067827701569,0.00278357020579278,-0.704902410507202,-0.198056757450104,0.681091785430908,-0.73146665096283,-0.0225762855261564,0.681503355503082,-0.75581568479538,0.654296219348907,-0.0252813175320625,-0.828840255737305,0.559378921985626,-0.0109150875359774,0.103481233119965,-0.854225993156433,0.509499430656433,-0.051020186394453,-0.723269701004028,0.688678205013275,-0.73146665096283,-0.0225762855261564,0.681503355503082,-0.704902410507202,-0.198056757450104,0.681091785430908,0.706748485565186,-0.68707674741745,-0.168617889285088,0.665729939937592,-0.746156692504883,-0.00733474176377058,-0.051020186394453,-0.723269701004028,0.688678205013275,0.103481233119965,-0.854225993156433,0.509499430656433,0.921136081218719,-0.0337558649480343,-0.387774229049683,0.706754505634308,-0.000426106678787619,-0.707458794116974,0.665729939937592,-0.746156692504883,-0.00733474176377058,0.706748485565186,-0.68707674741745,-0.168617889285088,-0.171686351299286,0.632741987705231,-0.755090355873108,-0.0565880835056305,0.670083999633789,-0.740125179290771,0.707492351531982,0.000451666535809636,-0.70672082901001,0.387886881828308,0.0336192324757576,-0.921093642711639,-0.828840255737305,0.559378921985626,-0.0109150875359774,-0.75581568479538,0.654296219348907,-0.0252813175320625,-0.0565880835056305,0.670083999633789,-0.740125179290771,-0.171686351299286,0.632741987705231,-0.755090355873108,
- 0.0452710464596748,-0.665996134281158,0.744580209255219,0.749386608600616,-0.661234378814697,0.034478172659874,0.732201397418976,-0.68013995885849,0.035928837954998,0.0241903252899647,-0.67115330696106,0.740923881530762,-0.707807242870331,-0.000757950183469802,0.706405103206635,0.0452710464596748,-0.665996134281158,0.744580209255219,0.0241903252899647,-0.67115330696106,0.740923881530762,-0.707160890102386,-4.20514115830883e-005,0.707052767276764,-0.707807242870331,-0.000757950183469802,0.706405103206635,-0.707160890102386,-4.20514115830883e-005,0.707052767276764,-0.740935325622559,0.671138346195221,-0.0242546293884516,-0.747244477272034,0.662806689739227,-0.0480946749448776,-0.0390773490071297,0.655121743679047,-0.754512131214142,-0.747244477272034,0.662806689739227,-0.0480946749448776,-0.740935325622559,0.671138346195221,-0.0242546293884516,-0.035942081362009,0.680186867713928,-0.732157111167908,0.724152445793152,0.0232891887426376,-0.689246654510498,-0.0390773490071297,0.655121743679047,-0.754512131214142,-0.035942081362009,0.680186867713928,-0.732157111167908,0.740328431129456,0.0538808256387711,-0.670082569122314,0.749386608600616,-0.661234378814697,0.034478172659874,0.689282298088074,-0.0232939459383488,-0.72411835193634,0.670096933841705,-0.0537940114736557,-0.740321755409241,0.732201397418976,-0.68013995885849,0.035928837954998,-0.700696289539337,-0.144559741020203,0.698660969734192,-0.707807242870331,-0.000757950183469802,0.706405103206635,-0.747244477272034,0.662806689739227,-0.0480946749448776,-0.832554221153259,0.55394172668457,0.00142722763121128,0.0808567628264427,-0.759002685546875,0.646047294139862,0.0452710464596748,-0.665996134281158,0.744580209255219,-0.707807242870331,-0.000757950183469802,0.706405103206635,-0.700696289539337,-0.144559741020203,0.698660969734192,0.730610132217407,-0.674906551837921,-0.103488720953465,0.749386608600616,-0.661234378814697,0.034478172659874,0.0452710464596748,-0.665996134281158,0.744580209255219,0.0808567628264427,-0.759002685546875,0.646047294139862,0.92771303653717,-0.0655515342950821,-0.367493510246277,
- 0.689282298088074,-0.0232939459383488,-0.72411835193634,0.749386608600616,-0.661234378814697,0.034478172659874,0.730610132217407,-0.674906551837921,-0.103488720953465,-0.182707950472832,0.63802295923233,-0.748027086257935,-0.0390773490071297,0.655121743679047,-0.754512131214142,0.724152445793152,0.0232891887426376,-0.689246654510498,0.367541581392288,0.0655619725584984,-0.927693367004395,-0.832554221153259,0.55394172668457,0.00142722763121128,-0.747244477272034,0.662806689739227,-0.0480946749448776,-0.0390773490071297,0.655121743679047,-0.754512131214142,-0.182707950472832,0.63802295923233,-0.748027086257935,0.0414723455905914,-0.661673903465271,0.74864387512207,0.748592436313629,-0.661723554134369,0.0416079647839069,0.759426236152649,-0.648704051971436,0.0495473928749561,0.0534385032951832,-0.65052741765976,0.757600545883179,-0.706250786781311,0.00110095553100109,0.707960903644562,0.0414723455905914,-0.661673903465271,0.74864387512207,0.0534385032951832,-0.65052741765976,0.757600545883179,-0.707100927829742,-3.40629812853877e-005,0.707112729549408,-0.706250786781311,0.00110095553100109,0.707960903644562,-0.707100927829742,-3.40629812853877e-005,0.707112729549408,-0.747132182121277,0.663465559482574,-0.040086418390274,-0.746506333351135,0.664207577705383,-0.0394540838897228,-0.0385103970766068,0.665173888206482,-0.745694816112518,-0.746506333351135,0.664207577705383,-0.0394540838897228,-0.747132182121277,0.663465559482574,-0.040086418390274,-0.0304829012602568,0.677814245223999,-0.734601080417633,0.702600836753845,-0.00520312832668424,-0.711565256118774,-0.0385103970766068,0.665173888206482,-0.745694816112518,-0.0304829012602568,0.677814245223999,-0.734601080417633,0.736843764781952,0.0463333800435066,-0.674473524093628,0.748592436313629,-0.661723554134369,0.0416079647839069,0.711612105369568,0.00518464762717485,-0.702553451061249,0.674469709396362,-0.0462113507091999,-0.73685497045517,0.759426236152649,-0.648704051971436,0.0495473928749561,-0.70866060256958,-0.134612813591957,0.692589104175568,-0.706250786781311,0.00110095553100109,0.707960903644562,
- -0.746506333351135,0.664207577705383,-0.0394540838897228,-0.828813850879669,0.559415280818939,-0.0110460771247745,0.068327285349369,-0.755300521850586,0.651807129383087,0.0414723455905914,-0.661673903465271,0.74864387512207,-0.706250786781311,0.00110095553100109,0.707960903644562,-0.70866060256958,-0.134612813591957,0.692589104175568,0.725498139858246,-0.682012736797333,-0.0922553092241287,0.748592436313629,-0.661723554134369,0.0416079647839069,0.0414723455905914,-0.661673903465271,0.74864387512207,0.068327285349369,-0.755300521850586,0.651807129383087,0.921124398708344,-0.0337268896400929,-0.387804538011551,0.711612105369568,0.00518464762717485,-0.702553451061249,0.748592436313629,-0.661723554134369,0.0416079647839069,0.725498139858246,-0.682012736797333,-0.0922553092241287,-0.171625301241875,0.632687091827393,-0.755150139331818,-0.0385103970766068,0.665173888206482,-0.745694816112518,0.702600836753845,-0.00520312832668424,-0.711565256118774,0.387937068939209,0.033633042126894,-0.921072125434875,-0.828813850879669,0.559415280818939,-0.0110460771247745,-0.746506333351135,0.664207577705383,-0.0394540838897228,-0.0385103970766068,0.665173888206482,-0.745694816112518,-0.171625301241875,0.632687091827393,-0.755150139331818,0.0401127934455872,-0.66350269317627,0.747097790241241,0.747167348861694,-0.663428425788879,0.0400448516011238,0.756766617298126,-0.651926279067993,0.0479207225143909,0.0504079684615135,-0.653124153614044,0.755571186542511,-0.706011533737183,0.00125059962738305,0.708199262619019,0.0401127934455872,-0.66350269317627,0.747097790241241,0.0504079684615135,-0.653124153614044,0.755571186542511,-0.707136392593384,2.56820203503594e-005,0.707077085971832,-0.706011533737183,0.00125059962738305,0.708199262619019,-0.707136392593384,2.56820203503594e-005,0.707077085971832,-0.747190594673157,0.66340446472168,-0.0400108322501183,-0.74643349647522,0.66430389881134,-0.0392106138169765,-0.0399895273149014,0.663417220115662,-0.747180342674255,-0.74643349647522,0.66430389881134,-0.0392106138169765,-0.747190594673157,0.66340446472168,-0.0400108322501183,
- -0.0321189686655998,0.674719035625458,-0.737375438213348,0.71238648891449,0.00650740228593349,-0.701757192611694,-0.0399895273149014,0.663417220115662,-0.747180342674255,-0.0321189686655998,0.674719035625458,-0.737375438213348,0.731517970561981,0.0358397997915745,-0.680879592895508,0.747167348861694,-0.663428425788879,0.0400448516011238,0.701802909374237,-0.00649559777230024,-0.712341666221619,0.680930376052856,-0.035795584321022,-0.731472849845886,0.756766617298126,-0.651926279067993,0.0479207225143909,-0.651776552200317,0.755321443080902,-0.0683873891830444,-0.69242936372757,0.134500533342361,0.708837926387787,-0.706011533737183,0.00125059962738305,0.708199262619019,-0.74643349647522,0.66430389881134,-0.0392106138169765,-0.69242936372757,0.134500533342361,0.708837926387787,0.0109749305993319,-0.559467077255249,0.828779935836792,0.0401127934455872,-0.66350269317627,0.747097790241241,-0.706011533737183,0.00125059962738305,0.708199262619019,0.0109749305993319,-0.559467077255249,0.828779935836792,0.755063056945801,-0.632787227630615,0.171639636158943,0.747167348861694,-0.663428425788879,0.0400448516011238,0.0401127934455872,-0.66350269317627,0.747097790241241,0.755063056945801,-0.632787227630615,0.171639636158943,0.921135425567627,-0.0337055698037148,-0.387780278921127,0.701802909374237,-0.00649559777230024,-0.712341666221619,0.747167348861694,-0.663428425788879,0.0400448516011238,0.3878133893013,0.033711988478899,-0.921121180057526,0.0923846587538719,0.681922793388367,-0.725566208362579,-0.0399895273149014,0.663417220115662,-0.747180342674255,0.71238648891449,0.00650740228593349,-0.701757192611694,0.0923846587538719,0.681922793388367,-0.725566208362579,-0.651776552200317,0.755321443080902,-0.0683873891830444,-0.74643349647522,0.66430389881134,-0.0392106138169765,-0.0399895273149014,0.663417220115662,-0.747180342674255,-0.707155168056488,-2.00619997485774e-005,0.707058370113373,-0.707155168056488,-2.00619942916092e-005,0.707058370113373,-0.707138299942017,-4.85477648908272e-005,0.707075238227844,-0.70714807510376,-3.20173567160964e-005,0.707065463066101,
- -0.707174777984619,1.29446398204891e-005,0.707038819789886,-0.707151651382446,-2.60667675320292e-005,0.707061886787415,0.0400196686387062,-0.663438439369202,0.747159838676453,0.74718314409256,-0.663410484790802,0.0400465540587902,0.831452012062073,-0.55558967590332,0.00273148366250098,0.179242581129074,-0.636053502559662,0.750538527965546,-0.697694361209869,0.00836156215518713,0.716346859931946,0.0400196686387062,-0.663438439369202,0.747159838676453,0.179242581129074,-0.636053502559662,0.750538527965546,-0.707156538963318,-0.000198419293155894,0.707056999206543,-0.697694361209869,0.00836156215518713,0.716346859931946,-0.707156538963318,-0.000198419293155894,0.707056999206543,-0.747171580791473,0.663425803184509,-0.0400110296905041,-0.741689383983612,0.669941246509552,-0.0327951684594154,-0.0400563217699528,0.663409888744354,-0.747183263301849,-0.741689383983612,0.669941246509552,-0.0327951684594154,-0.747171580791473,0.663425803184509,-0.0400110296905041,-0.0766012296080589,0.757891535758972,-0.647867858409882,0.741951465606689,0.0576652586460114,-0.667969107627869,-0.0400563217699528,0.663409888744354,-0.747183263301849,-0.0766012296080589,0.757891535758972,-0.647867858409882,0.659845650196075,0.39383864402771,-0.639917850494385,0.74718314409256,-0.663410484790802,0.0400465540587902,0.667972087860107,-0.0576176866889,-0.741952538490295,0.639975666999817,-0.393891721963882,-0.659757912158966,0.831452012062073,-0.55558967590332,0.00273148366250098,0.707099974155426,0.000101965590147302,-0.707113683223724,0.707120418548584,6.73529721098021e-005,-0.707093119621277,0.707133769989014,4.4987718865741e-005,-0.707079827785492,0.707140207290649,3.40557016897947e-005,-0.707073330879211,0.707153975963593,1.0849244063138e-005,-0.707059621810913,0.707130372524261,5.07043296238407e-005,-0.707083225250244,-0.708750605583191,-0.134641692042351,0.692491292953491,-0.708759605884552,-0.00194585020653903,0.705447375774384,-0.748790979385376,0.661487579345703,-0.0417878925800323,-0.828833401203156,0.559387922286987,-0.0109757194295526,
- 0.0683713555335999,-0.755299746990204,0.651803314685822,0.0383294709026814,-0.665395796298981,0.74550598859787,-0.708759605884552,-0.00194585020653903,0.705447375774384,-0.708750605583191,-0.134641692042351,0.692491292953491,0.725452423095703,-0.682067811489105,-0.0922075286507607,0.745482981204987,-0.665415227413177,0.0384386293590069,0.0383294709026814,-0.665395796298981,0.74550598859787,0.0683713555335999,-0.755299746990204,0.651803314685822,0.921166300773621,-0.0337750501930714,-0.387700766324997,0.702206194400787,-0.00599280465394259,-0.711948394775391,0.745482981204987,-0.665415227413177,0.0384386293590069,0.725452423095703,-0.682067811489105,-0.0922075286507607,-0.171670883893967,0.632760286331177,-0.755078613758087,-0.0416607074439526,0.661418735980988,-0.74885880947113,0.712008059024811,0.00601931661367416,-0.702145457267761,0.38782000541687,0.0336764231324196,-0.921119689941406,-0.828833401203156,0.559387922286987,-0.0109757194295526,-0.748790979385376,0.661487579345703,-0.0417878925800323,-0.0416607074439526,0.661418735980988,-0.74885880947113,-0.171670883893967,0.632760286331177,-0.755078613758087,-0.748790979385376,0.661487579345703,-0.0417878925800323,-0.708759605884552,-0.00194585020653903,0.705447375774384,-0.697694361209869,0.00836156215518713,0.716346859931946,-0.741689383983612,0.669941246509552,-0.0327951684594154,-0.708759605884552,-0.00194585020653903,0.705447375774384,0.0383294709026814,-0.665395796298981,0.74550598859787,0.0400196686387062,-0.663438439369202,0.747159838676453,-0.697694361209869,0.00836156215518713,0.716346859931946,0.0383294709026814,-0.665395796298981,0.74550598859787,0.745482981204987,-0.665415227413177,0.0384386293590069,0.74718314409256,-0.663410484790802,0.0400465540587902,0.0400196686387062,-0.663438439369202,0.747159838676453,0.745482981204987,-0.665415227413177,0.0384386293590069,0.702206194400787,-0.00599280465394259,-0.711948394775391,0.667972087860107,-0.0576176866889,-0.741952538490295,0.74718314409256,-0.663410484790802,0.0400465540587902,0.712008059024811,0.00601931661367416,-0.702145457267761,
- -0.0416607074439526,0.661418735980988,-0.74885880947113,-0.0400563217699528,0.663409888744354,-0.747183263301849,0.741951465606689,0.0576652586460114,-0.667969107627869,-0.0416607074439526,0.661418735980988,-0.74885880947113,-0.748790979385376,0.661487579345703,-0.0417878925800323,-0.741689383983612,0.669941246509552,-0.0327951684594154,-0.0400563217699528,0.663409888744354,-0.747183263301849,-0.0390319041907787,-0.748751699924469,0.661700367927551,0.652105212211609,-0.756790339946747,-0.045022290199995,0.690346479415894,-0.72346419095993,-0.00459891930222511,-0.105017960071564,-0.789514005184174,0.604680836200714,-0.727948844432831,-0.0250844433903694,0.685172319412231,-0.0390319041907787,-0.748751699924469,0.661700367927551,-0.105017960071564,-0.789514005184174,0.604680836200714,-0.745523393154144,-0.0404753871262074,0.665249288082123,-0.727948844432831,-0.0250844433903694,0.685172319412231,-0.745523393154144,-0.0404753871262074,0.665249288082123,-0.747143566608429,0.663454711437225,-0.0400541089475155,-0.747389256954193,0.663161754608154,-0.0403194949030876,-0.0406148321926594,0.662694811820984,-0.747787356376648,-0.747389256954193,0.663161754608154,-0.0403194949030876,-0.747143566608429,0.663454711437225,-0.0400541089475155,-0.0328922457993031,0.673407912254334,-0.738539159297943,0.708811819553375,0.00204271473921835,-0.705394744873047,-0.0406148321926594,0.662694811820984,-0.747787356376648,-0.0328922457993031,0.673407912254334,-0.738539159297943,0.729116141796112,0.0315782502293587,-0.683661162853241,0.652105212211609,-0.756790339946747,-0.045022290199995,0.705431222915649,-0.00201359833590686,-0.708775579929352,0.68371844291687,-0.031478475779295,-0.729066669940948,0.690346479415894,-0.72346419095993,-0.00459891930222511,-0.686136245727539,-0.220987662672997,0.693095564842224,-0.727948844432831,-0.0250844433903694,0.685172319412231,-0.747389256954193,0.663161754608154,-0.0403194949030876,-0.833816826343536,0.551992535591125,0.007329354993999,0.146728590130806,-0.864431083202362,0.480863451957703,-0.0390319041907787,-0.748751699924469,0.661700367927551,
- -0.727948844432831,-0.0250844433903694,0.685172319412231,-0.686136245727539,-0.220987662672997,0.693095564842224,0.716376841068268,-0.668771803379059,-0.198867633938789,0.652105212211609,-0.756790339946747,-0.045022290199995,-0.0390319041907787,-0.748751699924469,0.661700367927551,0.146728590130806,-0.864431083202362,0.480863451957703,0.929528892040253,-0.0803776532411575,-0.35988262295723,0.705431222915649,-0.00201359833590686,-0.708775579929352,0.652105212211609,-0.756790339946747,-0.045022290199995,0.716376841068268,-0.668771803379059,-0.198867633938789,-0.187167376279831,0.64076691865921,-0.744571089744568,-0.0406148321926594,0.662694811820984,-0.747787356376648,0.708811819553375,0.00204271473921835,-0.705394744873047,0.359909117221832,0.0804858654737473,-0.929509282112122,-0.833816826343536,0.551992535591125,0.007329354993999,-0.747389256954193,0.663161754608154,-0.0403194949030876,-0.0406148321926594,0.662694811820984,-0.747787356376648,-0.187167376279831,0.64076691865921,-0.744571089744568,0.0464620143175125,-0.666821777820587,0.743767499923706,0.749777734279633,-0.660875082015991,0.0328260734677315,0.718955516815186,-0.694290518760681,0.0326140858232975,0.0093254130333662,-0.679439604282379,0.733672082424164,-0.708842039108276,-0.00192033941857517,0.70536470413208,0.0464620143175125,-0.666821777820587,0.743767499923706,0.0093254130333662,-0.679439604282379,0.733672082424164,-0.70705509185791,1.09385546238627e-005,0.707158505916595,-0.708842039108276,-0.00192033941857517,0.70536470413208,-0.70705509185791,1.09385546238627e-005,0.707158505916595,-0.733626008033752,0.679489374160767,-0.00932537671178579,-0.748878121376038,0.660641133785248,-0.0522942617535591,-0.0399038605391979,0.650712907314301,-0.758274674415588,-0.748878121376038,0.660641133785248,-0.0522942617535591,-0.733626008033752,0.679489374160767,-0.00932537671178579,-0.032628308981657,0.694242477416992,-0.719001293182373,0.732239067554474,0.0371814593672752,-0.680032074451447,-0.0399038605391979,0.650712907314301,-0.758274674415588,-0.032628308981657,0.694242477416992,-0.719001293182373,
- 0.757024526596069,0.107726410031319,-0.644444704055786,0.749777734279633,-0.660875082015991,0.0328260734677315,0.680046558380127,-0.0371789708733559,-0.732225656509399,0.644426047801971,-0.10783326625824,-0.757025122642517,0.718955516815186,-0.694290518760681,0.0326140858232975,-0.680755794048309,-0.160192877054214,0.714779555797577,-0.708842039108276,-0.00192033941857517,0.70536470413208,-0.748878121376038,0.660641133785248,-0.0522942617535591,-0.836292564868927,0.547426581382751,0.0306420400738716,0.109755307435989,-0.761936902999878,0.638283550739288,0.0464620143175125,-0.666821777820587,0.743767499923706,-0.708842039108276,-0.00192033941857517,0.70536470413208,-0.680755794048309,-0.160192877054214,0.714779555797577,0.744712173938751,-0.656086206436157,-0.122289262712002,0.749777734279633,-0.660875082015991,0.0328260734677315,0.0464620143175125,-0.666821777820587,0.743767499923706,0.109755307435989,-0.761936902999878,0.638283550739288,0.930550634860992,-0.140583992004395,-0.338100045919418,0.680046558380127,-0.0371789708733559,-0.732225656509399,0.749777734279633,-0.660875082015991,0.0328260734677315,0.744712173938751,-0.656086206436157,-0.122289262712002,-0.201296597719193,0.653267383575439,-0.729877650737762,-0.0399038605391979,0.650712907314301,-0.758274674415588,0.732239067554474,0.0371814593672752,-0.680032074451447,0.338126212358475,0.140482753515244,-0.930556416511536,-0.836292564868927,0.547426581382751,0.0306420400738716,-0.748878121376038,0.660641133785248,-0.0522942617535591,-0.0399038605391979,0.650712907314301,-0.758274674415588,-0.201296597719193,0.653267383575439,-0.729877650737762,0.0479650050401688,-0.666860401630402,0.743637263774872,0.75171160697937,-0.658819258213043,0.0297794975340366,0.731189846992493,-0.681242346763611,0.0356419049203396,0.0218828488141298,-0.669313132762909,0.742658019065857,-0.705783188343048,0.00161525583826005,0.708425998687744,0.0479650050401688,-0.666860401630402,0.743637263774872,0.0218828488141298,-0.669313132762909,0.742658019065857,-0.707118153572083,-7.51851348468335e-006,0.707095444202423,
- -0.705783188343048,0.00161525583826005,0.708425998687744,-0.707118153572083,-7.51851348468335e-006,0.707095444202423,-0.742648720741272,0.669321060180664,-0.0219597555696964,-0.742172539234161,0.668586075305939,-0.0466117672622204,-0.0308350380510092,0.657445728778839,-0.752870678901672,-0.742172539234161,0.668586075305939,-0.0466117672622204,-0.742648720741272,0.669321060180664,-0.0219597555696964,-0.0356072075664997,0.681213140487671,-0.731218695640564,0.716080665588379,0.0114476345479488,-0.697923719882965,-0.0308350380510092,0.657445728778839,-0.752870678901672,-0.0356072075664997,0.681213140487671,-0.731218695640564,0.741734266281128,0.0575501993298531,-0.668220281600952,0.75171160697937,-0.658819258213043,0.0297794975340366,0.697947263717651,-0.0114453854039311,-0.716057777404785,0.668250441551209,-0.0574812926352024,-0.741712331771851,0.731189846992493,-0.681242346763611,0.0356419049203396,-0.713498592376709,-0.127202495932579,0.689013302326202,-0.705783188343048,0.00161525583826005,0.708425998687744,-0.742172539234161,0.668586075305939,-0.0466117672622204,-0.825695097446442,0.563804984092712,-0.0187506601214409,0.0607526749372482,-0.752065718173981,0.656282186508179,0.0479650050401688,-0.666860401630402,0.743637263774872,-0.705783188343048,0.00161525583826005,0.708425998687744,-0.713498592376709,-0.127202495932579,0.689013302326202,0.722825348377228,-0.685464441776276,-0.0875329077243805,0.75171160697937,-0.658819258213043,0.0297794975340366,0.0479650050401688,-0.666860401630402,0.743637263774872,0.0607526749372482,-0.752065718173981,0.656282186508179,0.911093413829803,-0.00475783227011561,-0.412172496318817,0.697947263717651,-0.0114453854039311,-0.716057777404785,0.75171160697937,-0.658819258213043,0.0297794975340366,0.722825348377228,-0.685464441776276,-0.0875329077243805,-0.0362769961357117,0.662299335002899,-0.748360693454742,-0.0308350380510092,0.657445728778839,-0.752870678901672,0.716080665588379,0.0114476345479488,-0.697923719882965,0.412176847457886,0.00478682992979884,-0.911091268062592,-0.825695097446442,0.563804984092712,-0.0187506601214409,
- -0.742172539234161,0.668586075305939,-0.0466117672622204,-0.0308350380510092,0.657445728778839,-0.752870678901672,-0.0362769961357117,0.662299335002899,-0.748360693454742,0.0224102437496185,-0.664533734321594,0.746922135353088,0.740637421607971,-0.670032262802124,0.0501308552920818,0.760913193225861,-0.647877752780914,0.0355747081339359,0.0668511092662811,-0.654322445392609,0.753254890441895,-0.712554216384888,-0.00551686529070139,0.701595366001129,0.0224102437496185,-0.664533734321594,0.746922135353088,0.0668511092662811,-0.654322445392609,0.753254890441895,-0.707099318504334,-8.85634472069796e-006,0.707114219665527,-0.712554216384888,-0.00551686529070139,0.701595366001129,-0.707099318504334,-8.85634472069796e-006,0.707114219665527,-0.753236413002014,0.654344618320465,-0.0668433308601379,-0.752930343151093,0.657452404499054,-0.0291942190378904,-0.0514656752347946,0.668387770652771,-0.742030322551727,-0.752930343151093,0.657452404499054,-0.0291942190378904,-0.753236413002014,0.654344618320465,-0.0668433308601379,-0.035546962171793,0.647836089134216,-0.760949969291687,0.703724980354309,-0.00390668213367462,-0.710461795330048,-0.0514656752347946,0.668387770652771,-0.742030322551727,-0.035546962171793,0.647836089134216,-0.760949969291687,0.724886655807495,0.0245033130049706,-0.688432216644287,0.740637421607971,-0.670032262802124,0.0501308552920818,0.710458517074585,0.00391302071511745,-0.703728199005127,0.688425123691559,-0.0244931932538748,-0.724893748760223,0.760913193225861,-0.647877752780914,0.0355747081339359,-0.708727359771729,-0.134651526808739,0.692513167858124,-0.712554216384888,-0.00551686529070139,0.701595366001129,-0.752930343151093,0.657452404499054,-0.0291942190378904,-0.828826606273651,0.559398472309113,-0.0109419217333198,0.0684566423296928,-0.755304574966431,0.651788890361786,0.0224102437496185,-0.664533734321594,0.746922135353088,-0.712554216384888,-0.00551686529070139,0.701595366001129,-0.708727359771729,-0.134651526808739,0.692513167858124,0.72554212808609,-0.681960463523865,-0.0922956690192223,0.740637421607971,-0.670032262802124,0.0501308552920818,
- 0.0224102437496185,-0.664533734321594,0.746922135353088,0.0684566423296928,-0.755304574966431,0.651788890361786,0.921129047870636,-0.0338173918426037,-0.387785524129868,0.710458517074585,0.00391302071511745,-0.703728199005127,0.740637421607971,-0.670032262802124,0.0501308552920818,0.72554212808609,-0.681960463523865,-0.0922956690192223,-0.171690434217453,0.632639050483704,-0.755175650119781,-0.0514656752347946,0.668387770652771,-0.742030322551727,0.703724980354309,-0.00390668213367462,-0.710461795330048,0.387892007827759,0.0336313545703888,-0.921091079711914,-0.828826606273651,0.559398472309113,-0.0109419217333198,-0.752930343151093,0.657452404499054,-0.0291942190378904,-0.0514656752347946,0.668387770652771,-0.742030322551727,-0.171690434217453,0.632639050483704,-0.755175650119781,0.0360714383423328,-0.667855143547058,0.743416726589203,0.743271827697754,-0.667991638183594,0.0365248247981071,0.768037080764771,-0.638176321983337,0.053386427462101,0.0642654374241829,-0.643213391304016,0.762985169887543,-0.709461271762848,-0.00253247423097491,0.7047398686409,0.0360714383423328,-0.667855143547058,0.743416726589203,0.0642654374241829,-0.643213391304016,0.762985169887543,-0.707130312919617,-2.16115313378396e-005,0.707083284854889,-0.709461271762848,-0.00253247423097491,0.7047398686409,-0.707130312919617,-2.16115313378396e-005,0.707083284854889,-0.747150778770447,0.663441181182861,-0.0401425026357174,-0.748741924762726,0.661542296409607,-0.0418029651045799,-0.0436311662197113,0.658847332000732,-0.751010298728943,-0.748741924762726,0.661542296409607,-0.0418029651045799,-0.747150778770447,0.663441181182861,-0.0401425026357174,-0.0266721900552511,0.687804341316223,-0.725405991077423,0.717947542667389,0.0140034863725305,-0.695956349372864,-0.0436311662197113,0.658847332000732,-0.751010298728943,-0.0266721900552511,0.687804341316223,-0.725405991077423,0.750521719455719,0.0814469903707504,-0.655807495117188,0.743271827697754,-0.667991638183594,0.0365248247981071,0.696020841598511,-0.0139945764094591,-0.717885196208954,0.655887126922607,-0.0813685357570648,-0.750460684299469,
- 0.768037080764771,-0.638176321983337,0.053386427462101,-0.693162798881531,-0.151792123913765,0.704616546630859,-0.709461271762848,-0.00253247423097491,0.7047398686409,-0.748741924762726,0.661542296409607,-0.0418029651045799,-0.834745526313782,0.550486087799072,0.0128436107188463,0.092095285654068,-0.761049091815948,0.642123639583588,0.0360714383423328,-0.667855143547058,0.743416726589203,-0.709461271762848,-0.00253247423097491,0.7047398686409,-0.693162798881531,-0.151792123913765,0.704616546630859,0.735826194286346,-0.667863070964813,-0.111886993050575,0.743271827697754,-0.667991638183594,0.0365248247981071,0.0360714383423328,-0.667855143547058,0.743416726589203,0.092095285654068,-0.761049091815948,0.642123639583588,0.930675268173218,-0.0946653932332993,-0.353386759757996,0.696020841598511,-0.0139945764094591,-0.717885196208954,0.743271827697754,-0.667991638183594,0.0365248247981071,0.735826194286346,-0.667863070964813,-0.111886993050575,-0.191064268350601,0.643497705459595,-0.741218626499176,-0.0436311662197113,0.658847332000732,-0.751010298728943,0.717947542667389,0.0140034863725305,-0.695956349372864,0.353453099727631,0.0946415290236473,-0.930652499198914,-0.834745526313782,0.550486087799072,0.0128436107188463,-0.748741924762726,0.661542296409607,-0.0418029651045799,-0.0436311662197113,0.658847332000732,-0.751010298728943,-0.191064268350601,0.643497705459595,-0.741218626499176,-0.060035727918148,-0.741423547267914,0.668346345424652,0.639032006263733,-0.769090116024017,-0.011772284284234,0.681793987751007,-0.731519877910614,-0.00596034619957209,-0.103251546621323,-0.796062111854553,0.596342384815216,-0.733480930328369,-0.0299004912376404,0.679051995277405,-0.060035727918148,-0.741423547267914,0.668346345424652,-0.103251546621323,-0.796062111854553,0.596342384815216,-0.748354554176331,-0.0391839668154716,0.662140548229218,-0.733480930328369,-0.0299004912376404,0.679051995277405,-0.748354554176331,-0.0391839668154716,0.662140548229218,-0.750467658042908,0.657952725887299,-0.0624209530651569,-0.75275582075119,0.657978296279907,-0.0205726902931929,
- -0.0718291476368904,0.678142070770264,-0.73141223192215,-0.75275582075119,0.657978296279907,-0.0205726902931929,-0.750467658042908,0.657952725887299,-0.0624209530651569,-0.0499987415969372,0.659281849861145,-0.750231742858887,0.708819448947906,0.00200545741245151,-0.70538717508316,-0.0718291476368904,0.678142070770264,-0.73141223192215,-0.0499987415969372,0.659281849861145,-0.750231742858887,0.722528636455536,0.0208476521074772,-0.691026568412781,0.639032006263733,-0.769090116024017,-0.011772284284234,0.705460608005524,-0.00201925332657993,-0.708746254444122,0.691073715686798,-0.0206696838140488,-0.722488701343536,0.681793987751007,-0.731519877910614,-0.00596034619957209,-0.701627552509308,-0.0549797676503658,0.710419535636902,-0.733480930328369,-0.0299004912376404,0.679051995277405,-0.75275582075119,0.657978296279907,-0.0205726902931929,-0.656288027763367,0.743786752223969,-0.12675704061985,0.174100860953331,-0.834703803062439,0.522454142570496,-0.060035727918148,-0.741423547267914,0.668346345424652,-0.733480930328369,-0.0299004912376404,0.679051995277405,-0.701627552509308,-0.0549797676503658,0.710419535636902,0.742745935916901,-0.655380487442017,-0.137131124734879,0.639032006263733,-0.769090116024017,-0.011772284284234,-0.060035727918148,-0.741423547267914,0.668346345424652,0.174100860953331,-0.834703803062439,0.522454142570496,0.911776423454285,-0.00633422844111919,-0.410638064146042,0.705460608005524,-0.00201925332657993,-0.708746254444122,0.639032006263733,-0.769090116024017,-0.011772284284234,0.742745935916901,-0.655380487442017,-0.137131124734879,0.0648111775517464,0.644652187824249,-0.761723697185516,-0.0718291476368904,0.678142070770264,-0.73141223192215,0.708819448947906,0.00200545741245151,-0.70538717508316,0.410673558712006,0.00644585071131587,-0.911759674549103,-0.656288027763367,0.743786752223969,-0.12675704061985,-0.75275582075119,0.657978296279907,-0.0205726902931929,-0.0718291476368904,0.678142070770264,-0.73141223192215,0.0648111775517464,0.644652187824249,-0.761723697185516,0.0347906909883022,-0.661137282848358,0.749457955360413,
- 0.744238555431366,-0.66627424955368,0.0467713698744774,0.730086266994476,-0.682677567005157,0.0304202567785978,0.0216559730470181,-0.677553653717041,0.735154509544373,-0.707111954689026,-2.10216148843756e-005,0.70710152387619,0.0347906909883022,-0.661137282848358,0.749457955360413,0.0216559730470181,-0.677553653717041,0.735154509544373,-0.707184076309204,1.98818488570396e-005,0.707029402256012,-0.707111954689026,-2.10216148843756e-005,0.70710152387619,-0.707184076309204,1.98818488570396e-005,0.707029402256012,-0.735168933868408,0.677538394927979,-0.0216409340500832,-0.749452352523804,0.661145567893982,-0.0347515493631363,-0.0467893704771996,0.666283249855042,-0.744229435920715,-0.749452352523804,0.661145567893982,-0.0347515493631363,-0.735168933868408,0.677538394927979,-0.0216409340500832,-0.0303759407252073,0.682718634605408,-0.730049788951874,0.720635116100311,0.017986249178648,-0.693081319332123,-0.0467893704771996,0.666283249855042,-0.744229435920715,-0.0303759407252073,0.682718634605408,-0.730049788951874,0.744164168834686,0.0631329342722893,-0.665006816387177,0.744238555431366,-0.66627424955368,0.0467713698744774,0.693029344081879,-0.0179491229355335,-0.720685958862305,0.664998769760132,-0.0631047412753105,-0.744173645973206,0.730086266994476,-0.682677567005157,0.0304202567785978,-0.707076907157898,-7.37142327125184e-005,0.707136690616608,-0.707111954689026,-2.10216148843756e-005,0.70710152387619,-0.749452352523804,0.661145567893982,-0.0347515493631363,-0.647622168064117,0.750086665153503,-0.133997932076454,0.134032055735588,-0.750027477741241,0.647683799266815,0.0347906909883022,-0.661137282848358,0.749457955360413,-0.707111954689026,-2.10216148843756e-005,0.70710152387619,-0.707076907157898,-7.37142327125184e-005,0.707136690616608,0.759819984436035,-0.641661286354065,-0.104615814983845,0.744238555431366,-0.66627424955368,0.0467713698744774,0.0347906909883022,-0.661137282848358,0.749457955360413,0.134032055735588,-0.750027477741241,0.647683799266815,0.920284807682037,-0.0310479979962111,-0.390015244483948,0.693029344081879,-0.0179491229355335,-0.720685958862305,
- 0.744238555431366,-0.66627424955368,0.0467713698744774,0.759819984436035,-0.641661286354065,-0.104615814983845,0.10463985055685,0.641585350036621,-0.759880721569061,-0.0467893704771996,0.666283249855042,-0.744229435920715,0.720635116100311,0.017986249178648,-0.693081319332123,0.3899045586586,0.0310360379517078,-0.920332133769989,-0.647622168064117,0.750086665153503,-0.133997932076454,-0.749452352523804,0.661145567893982,-0.0347515493631363,-0.0467893704771996,0.666283249855042,-0.744229435920715,0.10463985055685,0.641585350036621,-0.759880721569061,0.0358838811516762,-0.668015837669373,0.743281364440918,0.743100702762604,-0.668192684650421,0.0363306626677513,0.758860170841217,-0.649389564990997,0.0492380522191525,0.0529175251722336,-0.651052236557007,0.757185935974121,-0.709547698497772,-0.00268552033230662,0.704652309417725,0.0358838811516762,-0.668015837669373,0.743281364440918,0.0529175251722336,-0.651052236557007,0.757185935974121,-0.707091867923737,-3.24990696753957e-006,0.707121670246124,-0.709547698497772,-0.00268552033230662,0.704652309417725,-0.707091867923737,-3.24990696753957e-006,0.707121670246124,-0.747183442115784,0.663409948348999,-0.0400531366467476,-0.748813390731812,0.661460101604462,-0.0418211445212364,-0.0437210351228714,0.658611118793488,-0.751212358474731,-0.748813390731812,0.661460101604462,-0.0418211445212364,-0.747183442115784,0.663409948348999,-0.0400531366467476,-0.0308224391192198,0.677196681499481,-0.735156238079071,0.718415379524231,0.0146545758470893,-0.695459961891174,-0.0437210351228714,0.658611118793488,-0.751212358474731,-0.0308224391192198,0.677196681499481,-0.735156238079071,0.735841691493988,0.044206827878952,-0.675709128379822,0.743100702762604,-0.668192684650421,0.0363306626677513,0.695493519306183,-0.0147080533206463,-0.718381881713867,0.675682902336121,-0.0442129150032997,-0.735865354537964,0.758860170841217,-0.649389564990997,0.0492380522191525,-0.70873349905014,-0.13465704023838,0.692505836486816,-0.709547698497772,-0.00268552033230662,0.704652309417725,-0.748813390731812,0.661460101604462,-0.0418211445212364,
- -0.828825533390045,0.55940043926239,-0.010927558876574,0.0683547928929329,-0.755304396152496,0.65179979801178,0.0358838811516762,-0.668015837669373,0.743281364440918,-0.709547698497772,-0.00268552033230662,0.704652309417725,-0.70873349905014,-0.13465704023838,0.692505836486816,0.725513398647308,-0.681994676589966,-0.0922693833708763,0.743100702762604,-0.668192684650421,0.0363306626677513,0.0358838811516762,-0.668015837669373,0.743281364440918,0.0683547928929329,-0.755304396152496,0.65179979801178,0.921100735664368,-0.0336288437247276,-0.387869268655777,0.695493519306183,-0.0147080533206463,-0.718381881713867,0.743100702762604,-0.668192684650421,0.0363306626677513,0.725513398647308,-0.681994676589966,-0.0922693833708763,-0.171635240316391,0.63271176815033,-0.755127191543579,-0.0437210351228714,0.658611118793488,-0.751212358474731,0.718415379524231,0.0146545758470893,-0.695459961891174,0.387890636920929,0.033750906586647,-0.921087384223938,-0.828825533390045,0.55940043926239,-0.010927558876574,-0.748813390731812,0.661460101604462,-0.0418211445212364,-0.0437210351228714,0.658611118793488,-0.751212358474731,-0.171635240316391,0.63271176815033,-0.755127191543579,0.0347609110176563,-0.665987193584442,0.74515289068222,0.744026780128479,-0.666939616203308,0.0401955917477608,0.759820818901062,-0.648427903652191,0.0470493286848068,0.0562763288617134,-0.651093900203705,0.756907999515533,-0.7092644572258,-0.00238591246306896,0.704938471317291,0.0347609110176563,-0.665987193584442,0.74515289068222,0.0562763288617134,-0.651093900203705,0.756907999515533,-0.707144498825073,1.53161818161607e-005,0.707068979740143,-0.7092644572258,-0.00238591246306896,0.704938471317291,-0.707144498825073,1.53161818161607e-005,0.707068979740143,-0.756919145584106,0.651079297065735,-0.0562951788306236,-0.74820214509964,0.662385165691376,-0.0379375517368317,-0.0422823801636696,0.664377212524414,-0.746200501918793,-0.74820214509964,0.662385165691376,-0.0379375517368317,-0.756919145584106,0.651079297065735,-0.0562951788306236,-0.0470744110643864,0.648488759994507,-0.759767293930054,
- 0.712058246135712,0.00609845668077469,-0.702093958854675,-0.0422823801636696,0.664377212524414,-0.746200501918793,-0.0470744110643864,0.648488759994507,-0.759767293930054,0.735108554363251,0.0427468493580818,-0.676600515842438,0.744026780128479,-0.666939616203308,0.0401955917477608,0.702132761478424,-0.00607070000842214,-0.7120201587677,0.676634073257446,-0.0426480174064636,-0.735083281993866,0.759820818901062,-0.648427903652191,0.0470493286848068,-0.693138897418976,-0.151857450604439,0.704626083374023,-0.7092644572258,-0.00238591246306896,0.704938471317291,-0.74820214509964,0.662385165691376,-0.0379375517368317,-0.834762632846832,0.550458014011383,0.0129289720207453,0.0921257510781288,-0.76100492477417,0.642171502113342,0.0347609110176563,-0.665987193584442,0.74515289068222,-0.7092644572258,-0.00238591246306896,0.704938471317291,-0.693138897418976,-0.151857450604439,0.704626083374023,0.735775291919708,-0.667919754981995,-0.111883871257305,0.744026780128479,-0.666939616203308,0.0401955917477608,0.0347609110176563,-0.665987193584442,0.74515289068222,0.0921257510781288,-0.76100492477417,0.642171502113342,0.930681586265564,-0.0946775153279305,-0.353366613388062,0.702132761478424,-0.00607070000842214,-0.7120201587677,0.744026780128479,-0.666939616203308,0.0401955917477608,0.735775291919708,-0.667919754981995,-0.111883871257305,-0.191088750958443,0.64353483915329,-0.741180121898651,-0.0422823801636696,0.664377212524414,-0.746200501918793,0.712058246135712,0.00609845668077469,-0.702093958854675,0.353423714637756,0.094607912003994,-0.930666983127594,-0.834762632846832,0.550458014011383,0.0129289720207453,-0.74820214509964,0.662385165691376,-0.0379375517368317,-0.0422823801636696,0.664377212524414,-0.746200501918793,-0.191088750958443,0.64353483915329,-0.741180121898651,0.0402509197592735,-0.663258135318756,0.747307538986206,0.747344613075256,-0.663216173648834,0.0402530767023563,0.758139729499817,-0.650263488292694,0.0488004013895988,0.0519662760198116,-0.651790976524353,0.756616115570068,-0.706989049911499,0.000143877026857808,0.707224488258362,
- 0.0402509197592735,-0.663258135318756,0.747307538986206,0.0519662760198116,-0.651790976524353,0.756616115570068,-0.707121431827545,-5.35277376911836e-006,0.707092046737671,-0.706989049911499,0.000143877026857808,0.707224488258362,-0.707121431827545,-5.35277376911836e-006,0.707092046737671,-0.747176468372345,0.663423001766205,-0.0399674214422703,-0.74710488319397,0.663505971431732,-0.0399244911968708,-0.0398459918797016,0.663648307323456,-0.74698281288147,-0.74710488319397,0.663505971431732,-0.0399244911968708,-0.747176468372345,0.663423001766205,-0.0399674214422703,-0.0312797799706459,0.676310360431671,-0.735952317714691,0.70653235912323,-0.000701727636624128,-0.707680404186249,-0.0398459918797016,0.663648307323456,-0.74698281288147,-0.0312797799706459,0.676310360431671,-0.735952317714691,0.734299540519714,0.0411775931715965,-0.677575588226318,0.747344613075256,-0.663216173648834,0.0402530767023563,0.707741320133209,0.000727507984265685,-0.70647132396698,0.677599608898163,-0.0410681553184986,-0.734283447265625,0.758139729499817,-0.650263488292694,0.0488004013895988,-0.689594149589539,-0.15465259552002,0.707490146160126,-0.706989049911499,0.000143877026857808,0.707224488258362,-0.74710488319397,0.663505971431732,-0.0399244911968708,-0.835442185401917,0.549279153347015,0.0181343518197536,0.0972974449396133,-0.761550545692444,0.64076042175293,0.0402509197592735,-0.663258135318756,0.747307538986206,-0.706989049911499,0.000143877026857808,0.707224488258362,-0.689594149589539,-0.15465259552002,0.707490146160126,0.738274097442627,-0.664579331874847,-0.115263737738132,0.747344613075256,-0.663216173648834,0.0402530767023563,0.0402509197592735,-0.663258135318756,0.747307538986206,0.0972974449396133,-0.761550545692444,0.64076042175293,0.931230127811432,-0.108043409883976,-0.348047524690628,0.707741320133209,0.000727507984265685,-0.70647132396698,0.747344613075256,-0.663216173648834,0.0402530767023563,0.738274097442627,-0.664579331874847,-0.115263737738132,-0.194376558065414,0.646189212799072,-0.738008916378021,-0.0398459918797016,0.663648307323456,-0.74698281288147,
- 0.70653235912323,-0.000701727636624128,-0.707680404186249,0.348204463720322,0.107980936765671,-0.93117880821228,-0.835442185401917,0.549279153347015,0.0181343518197536,-0.74710488319397,0.663505971431732,-0.0399244911968708,-0.0398459918797016,0.663648307323456,-0.74698281288147,-0.194376558065414,0.646189212799072,-0.738008916378021,-0.051063597202301,-0.723188936710358,0.688759922981262,0.665706157684326,-0.746178567409515,-0.00725439423695207,0.723759829998016,-0.690046191215515,0.00282688462175429,-0.0361788719892502,-0.735410392284393,0.676655471324921,-0.731497585773468,-0.0226175729185343,0.681468784809113,-0.051063597202301,-0.723188936710358,0.688759922981262,-0.0361788719892502,-0.735410392284393,0.676655471324921,-0.734826445579529,-0.0191114954650402,0.677985906600952,-0.731497585773468,-0.0226175729185343,0.681468784809113,-0.734826445579529,-0.0191114954650402,0.677985906600952,-0.755349457263947,0.650221347808838,-0.0816048979759216,-0.755774199962616,0.65434193611145,-0.0253372583538294,-0.0566197447478771,0.670065581798553,-0.740139484405518,-0.755774199962616,0.65434193611145,-0.0253372583538294,-0.755349457263947,0.650221347808838,-0.0816048979759216,-0.033775620162487,0.638796925544739,-0.768633604049683,0.707514405250549,0.000462925701867789,-0.706698775291443,-0.0566197447478771,0.670065581798553,-0.740139484405518,-0.033775620162487,0.638796925544739,-0.768633604049683,0.736796855926514,0.0462089888751507,-0.674533307552338,0.665706157684326,-0.746178567409515,-0.00725439423695207,0.706756472587585,-0.000438751565525308,-0.707456767559052,0.67461371421814,-0.0459996126592159,-0.736736357212067,0.723759829998016,-0.690046191215515,0.00282688462175429,-0.705012619495392,-0.19800092279911,0.680993974208832,-0.731497585773468,-0.0226175729185343,0.681468784809113,-0.755774199962616,0.65434193611145,-0.0253372583538294,-0.828811824321747,0.559418201446533,-0.0110525544732809,0.103552624583244,-0.854151487350464,0.509609758853912,-0.051063597202301,-0.723188936710358,0.688759922981262,-0.731497585773468,-0.0226175729185343,0.681468784809113,
- -0.705012619495392,-0.19800092279911,0.680993974208832,0.706809759140015,-0.686966717243195,-0.168809413909912,0.665706157684326,-0.746178567409515,-0.00725439423695207,-0.051063597202301,-0.723188936710358,0.688759922981262,0.103552624583244,-0.854151487350464,0.509609758853912,0.92115730047226,-0.0338299348950386,-0.387717396020889,0.706756472587585,-0.000438751565525308,-0.707456767559052,0.665706157684326,-0.746178567409515,-0.00725439423695207,0.706809759140015,-0.686966717243195,-0.168809413909912,-0.171673685312271,0.6327024102211,-0.755126297473907,-0.0566197447478771,0.670065581798553,-0.740139484405518,0.707514405250549,0.000462925701867789,-0.706698775291443,0.387820363044739,0.0336857512593269,-0.921119213104248,-0.828811824321747,0.559418201446533,-0.0110525544732809,-0.755774199962616,0.65434193611145,-0.0253372583538294,-0.0566197447478771,0.670065581798553,-0.740139484405518,-0.171673685312271,0.6327024102211,-0.755126297473907,0.0452893376350403,-0.66603672504425,0.744542717933655,0.749385535717011,-0.661234498023987,0.0344985388219357,0.732182919979095,-0.680159509181976,0.035933755338192,0.0242357924580574,-0.67117315530777,0.740904271602631,-0.707778036594391,-0.000804183015134186,0.706434488296509,0.0452893376350403,-0.66603672504425,0.744542717933655,0.0242357924580574,-0.67117315530777,0.740904271602631,-0.707151114940643,2.60678234553779e-006,0.707062423229218,-0.707778036594391,-0.000804183015134186,0.706434488296509,-0.707151114940643,2.60678234553779e-006,0.707062423229218,-0.740910589694977,0.671163201332092,-0.0243216007947922,-0.747199177742004,0.662855386734009,-0.0481264442205429,-0.0390851087868214,0.655115127563477,-0.754517316818237,-0.747199177742004,0.662855386734009,-0.0481264442205429,-0.740910589694977,0.671163201332092,-0.0243216007947922,-0.0359279960393906,0.680171489715576,-0.732172071933746,0.724137246608734,0.0232783537358046,-0.689262926578522,-0.0390851087868214,0.655115127563477,-0.754517316818237,-0.0359279960393906,0.680171489715576,-0.732172071933746,0.740332663059235,0.0538784712553024,-0.670078158378601,
- 0.749385535717011,-0.661234498023987,0.0344985388219357,0.689290046691895,-0.0232747700065374,-0.724111497402191,0.670096278190613,-0.0538058616220951,-0.740321516990662,0.732182919979095,-0.680159509181976,0.035933755338192,-0.70077645778656,-0.144582629203796,0.698575913906097,-0.707778036594391,-0.000804183015134186,0.706434488296509,-0.747199177742004,0.662855386734009,-0.0481264442205429,-0.832545697689056,0.553954124450684,0.0015871279174462,0.0808133184909821,-0.759014129638672,0.646039187908173,0.0452893376350403,-0.66603672504425,0.744542717933655,-0.707778036594391,-0.000804183015134186,0.706434488296509,-0.70077645778656,-0.144582629203796,0.698575913906097,0.730583786964417,-0.674940586090088,-0.103453330695629,0.749385535717011,-0.661234498023987,0.0344985388219357,0.0452893376350403,-0.66603672504425,0.744542717933655,0.0808133184909821,-0.759014129638672,0.646039187908173,0.927736103534698,-0.0656835213303566,-0.367411762475967,0.689290046691895,-0.0232747700065374,-0.724111497402191,0.749385535717011,-0.661234498023987,0.0344985388219357,0.730583786964417,-0.674940586090088,-0.103453330695629,-0.182790532708168,0.638036608695984,-0.747995257377625,-0.0390851087868214,0.655115127563477,-0.754517316818237,0.724137246608734,0.0232783537358046,-0.689262926578522,0.367521077394485,0.0655014738440514,-0.927705645561218,-0.832545697689056,0.553954124450684,0.0015871279174462,-0.747199177742004,0.662855386734009,-0.0481264442205429,-0.0390851087868214,0.655115127563477,-0.754517316818237,-0.182790532708168,0.638036608695984,-0.747995257377625,0.0414970181882381,-0.661676526069641,0.748640239238739,0.74859082698822,-0.661725878715515,0.0416017733514309,0.759432792663574,-0.648697316646576,0.0495356731116772,0.0534719973802567,-0.650537133216858,0.757589757442474,-0.706244885921478,0.00108971609733999,0.707966804504395,0.0414970181882381,-0.661676526069641,0.748640239238739,0.0534719973802567,-0.650537133216858,0.757589757442474,-0.707130968570709,8.00064208306139e-006,0.707082509994507,-0.706244885921478,0.00108971609733999,0.707966804504395,
- -0.707130968570709,8.00064208306139e-006,0.707082509994507,-0.747156202793121,0.663439929485321,-0.040064487606287,-0.74650502204895,0.664207518100739,-0.0394779406487942,-0.0385395959019661,0.665177226066589,-0.745690226554871,-0.74650502204895,0.664207518100739,-0.0394779406487942,-0.747156202793121,0.663439929485321,-0.040064487606287,-0.030488608404994,0.677838146686554,-0.734578788280487,0.702574849128723,-0.00512971729040146,-0.711591362953186,-0.0385395959019661,0.665177226066589,-0.745690226554871,-0.030488608404994,0.677838146686554,-0.734578788280487,0.736880540847778,0.0462800115346909,-0.674436986446381,0.74859082698822,-0.661725878715515,0.0416017733514309,0.711591243743896,0.00526391109451652,-0.702573955059052,0.674517512321472,-0.0462480746209621,-0.736808896064758,0.759432792663574,-0.648697316646576,0.0495356731116772,-0.708654582500458,-0.134666323661804,0.692584812641144,-0.706244885921478,0.00108971609733999,0.707966804504395,-0.74650502204895,0.664207518100739,-0.0394779406487942,-0.828838109970093,0.559382200241089,-0.0109033798798919,0.0684465542435646,-0.755330860614777,0.651759386062622,0.0414970181882381,-0.661676526069641,0.748640239238739,-0.706244885921478,0.00108971609733999,0.707966804504395,-0.708654582500458,-0.134666323661804,0.692584812641144,0.72552490234375,-0.681978464126587,-0.0922981277108192,0.74859082698822,-0.661725878715515,0.0416017733514309,0.0414970181882381,-0.661676526069641,0.748640239238739,0.0684465542435646,-0.755330860614777,0.651759386062622,0.921187162399292,-0.0338936373591423,-0.387640863656998,0.711591243743896,0.00526391109451652,-0.702573955059052,0.74859082698822,-0.661725878715515,0.0416017733514309,0.72552490234375,-0.681978464126587,-0.0922981277108192,-0.171703681349754,0.632728457450867,-0.755097687244415,-0.0385395959019661,0.665177226066589,-0.745690226554871,0.702574849128723,-0.00512971729040146,-0.711591362953186,0.387794137001038,0.0336332730948925,-0.921132326126099,-0.828838109970093,0.559382200241089,-0.0109033798798919,-0.74650502204895,0.664207518100739,-0.0394779406487942,
- -0.0385395959019661,0.665177226066589,-0.745690226554871,-0.171703681349754,0.632728457450867,-0.755097687244415,0.0400577634572983,-0.663440585136414,0.747155845165253,0.74713546037674,-0.663459122180939,0.0401317551732063,0.756752192974091,-0.651939570903778,0.0479688048362732,0.0503920167684555,-0.653088867664337,0.755602717399597,-0.706044256687164,0.00126435083802789,0.708166658878326,0.0400577634572983,-0.663440585136414,0.747155845165253,0.0503920167684555,-0.653088867664337,0.755602717399597,-0.707145690917969,-1.77038930360141e-006,0.707067787647247,-0.706044256687164,0.00126435083802789,0.708166658878326,-0.707145690917969,-1.77038930360141e-006,0.707067787647247,-0.747162580490112,0.663431107997894,-0.0400897040963173,-0.746407449245453,0.664328515529633,-0.0392878279089928,-0.0400250963866711,0.663442254066467,-0.747156202793121,-0.746407449245453,0.664328515529633,-0.0392878279089928,-0.747162580490112,0.663431107997894,-0.0400897040963173,-0.0321531072258949,0.674732685089111,-0.737361609935761,0.712377071380615,0.00651364773511887,-0.701766669750214,-0.0400250963866711,0.663442254066467,-0.747156202793121,-0.0321531072258949,0.674732685089111,-0.737361609935761,0.731507480144501,0.0358800366520882,-0.680888772010803,0.74713546037674,-0.663459122180939,0.0401317551732063,0.701782941818237,-0.00650240248069167,-0.71236127614975,0.680953085422516,-0.0357179716229439,-0.731455504894257,0.756752192974091,-0.651939570903778,0.0479688048362732,-0.651820957660675,0.755282461643219,-0.0683949887752533,-0.692389309406281,0.134541690349579,0.708869218826294,-0.706044256687164,0.00126435083802789,0.708166658878326,-0.746407449245453,0.664328515529633,-0.0392878279089928,-0.692389309406281,0.134541690349579,0.708869218826294,0.0110900364816189,-0.559437811374664,0.828798115253448,0.0400577634572983,-0.663440585136414,0.747155845165253,-0.706044256687164,0.00126435083802789,0.708166658878326,0.0110900364816189,-0.559437811374664,0.828798115253448,0.755072593688965,-0.632735729217529,0.171787396073341,0.74713546037674,-0.663459122180939,0.0401317551732063,
- 0.0400577634572983,-0.663440585136414,0.747155845165253,0.755072593688965,-0.632735729217529,0.171787396073341,0.921107292175293,-0.0337196700274944,-0.387845993041992,0.701782941818237,-0.00650240248069167,-0.71236127614975,0.74713546037674,-0.663459122180939,0.0401317551732063,0.387817531824112,0.0337118580937386,-0.921119451522827,0.0923159718513489,0.682011008262634,-0.725492119789124,-0.0400250963866711,0.663442254066467,-0.747156202793121,0.712377071380615,0.00651364773511887,-0.701766669750214,0.0923159718513489,0.682011008262634,-0.725492119789124,-0.651820957660675,0.755282461643219,-0.0683949887752533,-0.746407449245453,0.664328515529633,-0.0392878279089928,-0.0400250963866711,0.663442254066467,-0.747156202793121,-0.707137286663055,-3.10462746710982e-005,0.707076370716095,-0.707137286663055,-3.1046278309077e-005,0.707076370716095,-0.707134127616882,-3.63686849595979e-005,0.707079529762268,-0.707132518291473,-3.90298955608159e-005,0.707081139087677,-0.707132518291473,-3.90298955608159e-005,0.707081139087677,-0.707135677337646,-3.37345700245351e-005,0.707077920436859,0.501053273677826,-0.865416347980499,-0.000199228175915778,-0.498967915773392,-0.866620302200317,-0.000292545475531369,-0.330358296632767,-0.943526923656464,0.0249059144407511,0.651924848556519,-0.757871568202972,0.0249922294169664,1,2.31265948968939e-005,4.85662712890189e-005,0.501053273677826,-0.865416347980499,-0.000199228175915778,0.651924848556519,-0.757871568202972,0.0249922294169664,1,-2.79831492662197e-005,5.829679503222e-005,1,2.31265948968939e-005,4.85662712890189e-005,1,-2.79831492662197e-005,5.829679503222e-005,0.651955842971802,0.757847666740417,-0.0249121505767107,0.501071155071259,0.865405976772308,0.000234411214478314,-0.498983085155487,0.866611659526825,0.000236415638937615,0.501071155071259,0.865405976772308,0.000234411214478314,0.651955842971802,0.757847666740417,-0.0249121505767107,-0.330371469259262,0.943521022796631,-0.0249535255134106,-0.99630081653595,0.0128547232598066,-0.0849675387144089,-0.498983085155487,0.866611659526825,0.000236415638937615,
- -0.330371469259262,0.943521022796631,-0.0249535255134106,-0.867993354797363,0.492099791765213,-0.0665245726704597,-0.498967915773392,-0.866620302200317,-0.000292545475531369,-0.996306002140045,-0.0128148859366775,0.0849137529730797,-0.86797571182251,-0.492144525051117,0.0664225071668625,-0.330358296632767,-0.943526923656464,0.0249059144407511,1,-1.96691034943797e-005,6.03274929744657e-006,1,4.18902072851779e-006,1.88127360161161e-005,0.50439578294754,0.863472580909729,-0.000145636047818698,0.364549845457077,0.929281651973724,-0.0594904161989689,0.364530116319656,-0.929290175437927,0.0594760589301586,0.50436407327652,-0.863491117954254,0.000145179656101391,1,4.18902072851779e-006,1.88127360161161e-005,1,-1.96691034943797e-005,6.03274929744657e-006,-0.609821677207947,-0.790417969226837,0.0579406954348087,-0.494503140449524,-0.869175851345062,-9.13380645215511e-005,0.50436407327652,-0.863491117954254,0.000145179656101391,0.364530116319656,-0.929290175437927,0.0594760589301586,-0.928113698959351,-0.258680939674377,-0.267748326063156,-0.999876260757446,-0.000423827063059434,0.0157227758318186,-0.494503140449524,-0.869175851345062,-9.13380645215511e-005,-0.609821677207947,-0.790417969226837,0.0579406954348087,-0.60985141992569,0.790395796298981,-0.0579291321337223,-0.494534939527512,0.869157731533051,7.34182540327311e-005,-0.999876379966736,0.000433157256338745,-0.0157209113240242,-0.928128361701965,0.258649885654449,0.26772752404213,0.364549845457077,0.929281651973724,-0.0594904161989689,0.50439578294754,0.863472580909729,-0.000145636047818698,-0.494534939527512,0.869157731533051,7.34182540327311e-005,-0.60985141992569,0.790395796298981,-0.0579291321337223,0.500493347644806,-0.865673184394836,0.0107894111424685,-0.499450236558914,-0.86627584695816,0.0107531817629933,-0.504539608955383,-0.862789690494537,-0.0321523584425449,0.494958370923996,-0.868321597576141,-0.0321539156138897,0.999979138374329,0.00035345516516827,0.00645551085472107,0.500493347644806,-0.865673184394836,0.0107894111424685,0.494958370923996,-0.868321597576141,-0.0321539156138897,
- 1,-1.5491777958232e-006,-2.56215571425855e-006,0.999979138374329,0.00035345516516827,0.00645551085472107,1,-1.5491777958232e-006,-2.56215571425855e-006,0.500030517578125,0.866007745265961,-2.62766070591169e-006,0.499808073043823,0.866123914718628,0.00461125001311302,-0.500533044338226,0.865650773048401,0.0107532497495413,0.499808073043823,0.866123914718628,0.00461125001311302,0.500030517578125,0.866007745265961,-2.62766070591169e-006,-0.494969934225082,0.868315160274506,-0.0321475565433502,-0.999477803707123,0.00180128193460405,-0.0322623401880264,-0.500533044338226,0.865650773048401,0.0107532497495413,-0.494969934225082,0.868315160274506,-0.0321475565433502,-0.995240688323975,0.0165264643728733,-0.0960356518626213,-0.499450236558914,-0.86627584695816,0.0107531817629933,-0.999479532241821,-0.00181475793942809,0.0322078093886375,-0.995240151882172,-0.0165301635861397,0.0960406586527824,-0.504539608955383,-0.862789690494537,-0.0321523584425449,0.991055130958557,-0.0934021398425102,0.0953193604946136,0.999979138374329,0.00035345516516827,0.00645551085472107,0.499808073043823,0.866123914718628,0.00461125001311302,0.576366305351257,0.811611175537109,0.0953373685479164,0.414673179388046,-0.904962360858917,0.0953370928764343,0.500493347644806,-0.865673184394836,0.0107894111424685,0.999979138374329,0.00035345516516827,0.00645551085472107,0.991055130958557,-0.0934021398425102,0.0953193604946136,-0.576278924942017,-0.811672031879425,0.0953473523259163,-0.499450236558914,-0.86627584695816,0.0107531817629933,0.500493347644806,-0.865673184394836,0.0107894111424685,0.414673179388046,-0.904962360858917,0.0953370928764343,-0.927196800708771,-0.262041956186295,-0.267656743526459,-0.999479532241821,-0.00181475793942809,0.0322078093886375,-0.499450236558914,-0.86627584695816,0.0107531817629933,-0.576278924942017,-0.811672031879425,0.0953473523259163,-0.41471865773201,0.904940187931061,0.0953511521220207,-0.500533044338226,0.865650773048401,0.0107532497495413,-0.999477803707123,0.00180128193460405,-0.0322623401880264,-0.927252650260925,0.261843800544739,0.267657220363617,
- 0.576366305351257,0.811611175537109,0.0953373685479164,0.499808073043823,0.866123914718628,0.00461125001311302,-0.500533044338226,0.865650773048401,0.0107532497495413,-0.41471865773201,0.904940187931061,0.0953511521220207,0.502984702587128,-0.864269495010376,0.00669642211869359,-0.497076958417892,-0.86769437789917,0.00457922788336873,-0.50572144985199,-0.862316489219666,-0.0256141982972622,0.493442386388779,-0.86933833360672,-0.0276658274233341,0.999989032745361,0.000190111648407765,0.00468811765313149,0.502984702587128,-0.864269495010376,0.00669642211869359,0.493442386388779,-0.86933833360672,-0.0276658274233341,1,4.60127885162365e-005,4.42310702055693e-005,0.999989032745361,0.000190111648407765,0.00468811765313149,1,4.60127885162365e-005,4.42310702055693e-005,0.493391871452332,0.869365632534027,0.0277089849114418,0.502807021141052,0.864398717880249,0.000152744265506044,-0.497200846672058,0.867635488510132,0.000104632315924391,0.502807021141052,0.864398717880249,0.000152744265506044,0.493391871452332,0.869365632534027,0.0277089849114418,-0.505665242671967,0.862351596355438,0.0255404394119978,-0.999940633773804,0.000206641838303767,-0.0108919963240623,-0.497200846672058,0.867635488510132,0.000104632315924391,-0.505665242671967,0.862351596355438,0.0255404394119978,-0.997146308422089,0.00994025450199842,-0.0748362466692925,-0.497076958417892,-0.86769437789917,0.00457922788336873,-0.999941825866699,-0.000202418086701073,0.01078318990767,-0.997161686420441,-0.00983402319252491,0.0746462121605873,-0.50572144985199,-0.862316489219666,-0.0256141982972622,0.988581657409668,-0.119350038468838,0.0919874608516693,0.999989032745361,0.000190111648407765,0.00468811765313149,0.502807021141052,0.864398717880249,0.000152744265506044,0.597584068775177,0.796507894992828,0.0920246243476868,0.390960156917572,-0.915797412395477,0.0920073688030243,0.502984702587128,-0.864269495010376,0.00669642211869359,0.999989032745361,0.000190111648407765,0.00468811765313149,0.988581657409668,-0.119350038468838,0.0919874608516693,-0.597541451454163,-0.796540021896362,0.0920231565833092,
- -0.497076958417892,-0.86769437789917,0.00457922788336873,0.502984702587128,-0.864269495010376,0.00669642211869359,0.390960156917572,-0.915797412395477,0.0920073688030243,-0.909416556358337,-0.3293417096138,-0.253959864377975,-0.999941825866699,-0.000202418086701073,0.01078318990767,-0.497076958417892,-0.86769437789917,0.00457922788336873,-0.597541451454163,-0.796540021896362,0.0920231565833092,-0.390985041856766,0.915789246559143,0.0919825062155724,-0.497200846672058,0.867635488510132,0.000104632315924391,-0.999940633773804,0.000206641838303767,-0.0108919963240623,-0.909463703632355,0.329196691513062,0.253979355096817,0.597584068775177,0.796507894992828,0.0920246243476868,0.502807021141052,0.864398717880249,0.000152744265506044,-0.497200846672058,0.867635488510132,0.000104632315924391,-0.390985041856766,0.915789246559143,0.0919825062155724,0.4999920129776,-0.866029918193817,-0.000352838367689401,-0.499996662139893,-0.866027295589447,-0.000388719461625442,-0.501533210277557,-0.864936053752899,-0.0187085028737783,0.498375803232193,-0.866761982440948,-0.0185769088566303,1,7.91814727563178e-006,-0.000234203122090548,0.4999920129776,-0.866029918193817,-0.000352838367689401,0.498375803232193,-0.866761982440948,-0.0185769088566303,1,4.55613662779797e-005,4.6945391659392e-005,1,7.91814727563178e-006,-0.000234203122090548,1,4.55613662779797e-005,4.6945391659392e-005,0.500013947486877,0.866017401218414,6.52953985991189e-007,0.500011563301086,0.866018652915955,-0.000167585705639794,-0.500018715858459,0.86601448059082,-0.000390771601814777,0.500011563301086,0.866018652915955,-0.000167585705639794,0.500013947486877,0.866017401218414,6.52953985991189e-007,-0.498348474502563,0.866776466369629,-0.018637103959918,-0.999999403953552,1.01653367892141e-005,0.00117089413106442,-0.500018715858459,0.86601448059082,-0.000390771601814777,-0.498348474502563,0.866776466369629,-0.018637103959918,-0.998425304889679,0.00550003536045551,-0.0558271855115891,-0.499996662139893,-0.866027295589447,-0.000388719461625442,-0.999999344348907,5.23737571711536e-006,-0.00122541002929211,
- -0.99843692779541,-0.00539885088801384,0.0556290931999683,-0.501533210277557,-0.864936053752899,-0.0187085028737783,0.988101303577423,-0.124392308294773,0.0904567092657089,1,7.91814727563178e-006,-0.000234203122090548,0.500011563301086,0.866018652915955,-0.000167585705639794,0.601780235767365,0.793523728847504,0.0904470384120941,0.38632732629776,-0.917914211750031,0.0904691219329834,0.4999920129776,-0.866029918193817,-0.000352838367689401,1,7.91814727563178e-006,-0.000234203122090548,0.988101303577423,-0.124392308294773,0.0904567092657089,-0.601787924766541,-0.793518960475922,0.0904373526573181,-0.499996662139893,-0.866027295589447,-0.000388719461625442,0.4999920129776,-0.866029918193817,-0.000352838367689401,0.38632732629776,-0.917914211750031,0.0904691219329834,-0.906083405017853,-0.342186987400055,-0.248839154839516,-0.999999344348907,5.23737571711536e-006,-0.00122541002929211,-0.499996662139893,-0.866027295589447,-0.000388719461625442,-0.601787924766541,-0.793518960475922,0.0904373526573181,-0.386348307132721,0.91790646314621,0.0904581174254417,-0.500018715858459,0.86601448059082,-0.000390771601814777,-0.999999403953552,1.01653367892141e-005,0.00117089413106442,-0.906099617481232,0.342156589031219,0.248821958899498,0.601780235767365,0.793523728847504,0.0904470384120941,0.500011563301086,0.866018652915955,-0.000167585705639794,-0.500018715858459,0.86601448059082,-0.000390771601814777,-0.386348307132721,0.91790646314621,0.0904581174254417,0.522441208362579,-0.84392374753952,0.121852032840252,-0.476162374019623,-0.870315670967102,0.125777840614319,-0.509170472621918,-0.85907518863678,0.0522997081279755,0.504366040229797,-0.853565871715546,0.130538448691368,0.999102175235748,0.00531589519232512,0.0420316718518734,0.522441208362579,-0.84392374753952,0.121852032840252,0.504366040229797,-0.853565871715546,0.130538448691368,0.998960316181183,0.0112087242305279,0.044187854975462,0.999102175235748,0.00531589519232512,0.0420316718518734,0.998960316181183,0.0112087242305279,0.044187854975462,0.477130949497223,0.878144800662994,0.0347523987293243,
- 0.516095817089081,0.85652756690979,0.00240091956220567,-0.483766496181488,0.875196754932404,0.000836564402561635,0.516095817089081,0.85652756690979,0.00240091956220567,0.477130949497223,0.878144800662994,0.0347523987293243,-0.519090294837952,0.854394853115082,0.0235524773597717,-0.99999988079071,4.27876670983096e-007,-0.000544922659173608,-0.483766496181488,0.875196754932404,0.000836564402561635,-0.519090294837952,0.854394853115082,0.0235524773597717,-0.998064517974854,0.00671105040237308,-0.0618241019546986,-0.476162374019623,-0.870315670967102,0.125777840614319,-0.99999988079071,-8.10943788565055e-007,0.000544954556971788,-0.998064041137695,-0.00671338522806764,0.0618312619626522,-0.509170472621918,-0.85907518863678,0.0522997081279755,0.980193257331848,-0.138540208339691,0.141519576311111,0.999102175235748,0.00531589519232512,0.0420316718518734,0.516095817089081,0.85652756690979,0.00240091956220567,0.576367914676666,0.811609745025635,0.0953398570418358,0.288832545280457,-0.931680381298065,0.220334932208061,0.522441208362579,-0.84392374753952,0.121852032840252,0.999102175235748,0.00531589519232512,0.0420316718518734,0.980193257331848,-0.138540208339691,0.141519576311111,-0.617324948310852,-0.771926462650299,0.151787653565407,-0.476162374019623,-0.870315670967102,0.125777840614319,0.522441208362579,-0.84392374753952,0.121852032840252,0.288832545280457,-0.931680381298065,0.220334932208061,-0.927227437496185,-0.261972993612289,-0.267618000507355,-0.99999988079071,-8.10943788565055e-007,0.000544954556971788,-0.476162374019623,-0.870315670967102,0.125777840614319,-0.617324948310852,-0.771926462650299,0.151787653565407,-0.414716571569443,0.904941201210022,0.0953493565320969,-0.483766496181488,0.875196754932404,0.000836564402561635,-0.99999988079071,4.27876670983096e-007,-0.000544922659173608,-0.92724084854126,0.261942863464355,0.267601013183594,0.576367914676666,0.811609745025635,0.0953398570418358,0.516095817089081,0.85652756690979,0.00240091956220567,-0.483766496181488,0.875196754932404,0.000836564402561635,-0.414716571569443,0.904941201210022,0.0953493565320969,
- 0.494605988264084,-0.869117319583893,0.000225887997657992,-0.505361497402191,-0.862907707691193,0.00038580407272093,-0.492532998323441,-0.870048999786377,0.0206363685429096,0.506562173366547,-0.862045764923096,0.0164912585169077,0.999999344348907,1.39764970299439e-005,0.00118160678539425,0.494605988264084,-0.869117319583893,0.000225887997657992,0.506562173366547,-0.862045764923096,0.0164912585169077,1,-7.69247094467573e-007,-2.39409359892306e-006,0.999999344348907,1.39764970299439e-005,0.00118160678539425,1,-7.69247094467573e-007,-2.39409359892306e-006,0.506554186344147,0.862050473690033,-0.0164851732552052,0.494506180286407,0.869161784648895,0.0046338764950633,-0.505715548992157,0.862657725811005,0.00856966711580753,0.494506180286407,0.869161784648895,0.0046338764950633,0.506554186344147,0.862050473690033,-0.0164851732552052,-0.492528051137924,0.87005215883255,-0.0206255968660116,-0.999455869197845,0.00188236532267183,-0.0329336188733578,-0.505715548992157,0.862657725811005,0.00856966711580753,-0.492528051137924,0.87005215883255,-0.0206255968660116,-0.997441112995148,0.00887501332908869,-0.0709413513541222,-0.505361497402191,-0.862907707691193,0.00038580407272093,-0.999457001686096,-0.00188682263251394,0.0328977182507515,-0.997440934181213,-0.00887696444988251,0.0709420144557953,-0.492532998323441,-0.870048999786377,0.0206363685429096,0.989715218544006,-0.107450664043427,0.0944354012608528,0.999999344348907,1.39764970299439e-005,0.00118160678539425,0.494506180286407,0.869161784648895,0.0046338764950633,0.587871551513672,0.803420007228851,0.0944637283682823,0.401805698871613,-0.910840630531311,0.0944539904594421,0.494605988264084,-0.869117319583893,0.000225887997657992,0.999999344348907,1.39764970299439e-005,0.00118160678539425,0.989715218544006,-0.107450664043427,0.0944354012608528,-0.587868392467499,-0.803424537181854,0.0944454446434975,-0.505361497402191,-0.862907707691193,0.00038580407272093,0.494605988264084,-0.869117319583893,0.000225887997657992,0.401805698871613,-0.910840630531311,0.0944539904594421,-0.917451679706573,-0.298784464597702,-0.262698113918304,
- -0.999457001686096,-0.00188682263251394,0.0328977182507515,-0.505361497402191,-0.862907707691193,0.00038580407272093,-0.587868392467499,-0.803424537181854,0.0944454446434975,-0.401820570230484,0.910835027694702,0.0944449082016945,-0.505715548992157,0.862657725811005,0.00856966711580753,-0.999455869197845,0.00188236532267183,-0.0329336188733578,-0.917470455169678,0.298711270093918,0.262715995311737,0.587871551513672,0.803420007228851,0.0944637283682823,0.494506180286407,0.869161784648895,0.0046338764950633,-0.505715548992157,0.862657725811005,0.00856966711580753,-0.401820570230484,0.910835027694702,0.0944449082016945,0.500008165836334,-0.866016447544098,-0.00269574020057917,-0.499941378831863,-0.866054892539978,-0.00272953510284424,-0.50187611579895,-0.864690661430359,-0.0207509323954582,0.497964948415756,-0.866950154304504,-0.0206950008869171,0.99999862909317,2.56546209129738e-005,-0.00163834809791297,0.500008165836334,-0.866016447544098,-0.00269574020057917,0.497964948415756,-0.866950154304504,-0.0206950008869171,1,2.55827399087138e-005,2.16311236727051e-005,0.99999862909317,2.56546209129738e-005,-0.00163834809791297,1,2.55827399087138e-005,2.16311236727051e-005,0.500005900859833,0.866021871566772,2.47655998464325e-006,0.499968767166138,0.866042673587799,-0.00116707792039961,-0.500014781951904,0.866012573242188,-0.00272391270846128,0.499968767166138,0.866042673587799,-0.00116707792039961,0.500005900859833,0.866021871566772,2.47655998464325e-006,-0.497941821813583,0.866962850093842,-0.020723870024085,-0.999966442584991,0.000118590469355695,0.0081910053268075,-0.500014781951904,0.866012573242188,-0.00272391270846128,-0.497941821813583,0.866962850093842,-0.020723870024085,-0.998050689697266,0.00678218528628349,-0.0620392635464668,-0.499941378831863,-0.866054892539978,-0.00272953510284424,-0.999966084957123,-0.000114768488856498,-0.00824398268014193,-0.998056709766388,-0.00672582350671291,0.061948049813509,-0.50187611579895,-0.864690661430359,-0.0207509323954582,0.991055965423584,-0.0933751091361046,0.0953364968299866,
- 0.99999862909317,2.56546209129738e-005,-0.00163834809791297,0.499968767166138,0.866042673587799,-0.00116707792039961,0.576369285583496,0.811609327793121,0.0953351706266403,0.414679348468781,-0.904957950115204,0.0953531190752983,0.500008165836334,-0.866016447544098,-0.00269574020057917,0.99999862909317,2.56546209129738e-005,-0.00163834809791297,0.991055965423584,-0.0933751091361046,0.0953364968299866,-0.576328635215759,-0.81163889169693,0.0953295230865479,-0.499941378831863,-0.866054892539978,-0.00272953510284424,0.500008165836334,-0.866016447544098,-0.00269574020057917,0.414679348468781,-0.904957950115204,0.0953531190752983,-0.927202820777893,-0.262029081583023,-0.267648369073868,-0.999966084957123,-0.000114768488856498,-0.00824398268014193,-0.499941378831863,-0.866054892539978,-0.00272953510284424,-0.576328635215759,-0.81163889169693,0.0953295230865479,-0.414713323116302,0.904942274093628,0.0953532978892326,-0.500014781951904,0.866012573242188,-0.00272391270846128,-0.999966442584991,0.000118590469355695,0.0081910053268075,-0.92723822593689,0.261915177106857,0.267637580633163,0.576369285583496,0.811609327793121,0.0953351706266403,0.499968767166138,0.866042673587799,-0.00116707792039961,-0.500014781951904,0.866012573242188,-0.00272391270846128,-0.414713323116302,0.904942274093628,0.0953532978892326,0.499984353780746,-0.86603444814682,1.84785967576317e-005,-0.499986320734024,-0.866033256053925,-3.66886524716392e-005,-0.501173079013824,-0.865190446376801,-0.0164617616683245,0.498728454113007,-0.866603136062622,-0.0163962263613939,0.999998331069946,-3.29376562149264e-005,-0.00186688266694546,0.499984353780746,-0.86603444814682,1.84785967576317e-005,0.498728454113007,-0.866603136062622,-0.0163962263613939,0.999999940395355,2.18547611439135e-005,2.33534574363148e-005,0.999998331069946,-3.29376562149264e-005,-0.00186688266694546,0.999999940395355,2.18547611439135e-005,2.33534574363148e-005,0.500013947486877,0.866017401218414,5.72531121179054e-007,0.500031530857086,0.866006135940552,-0.00136415648739785,-0.500014364719391,0.86601710319519,-2.05210767489916e-007,
- 0.500031530857086,0.866006135940552,-0.00136415648739785,0.500013947486877,0.866017401218414,5.72531121179054e-007,-0.498720735311508,0.866607189178467,-0.0164248328655958,-0.999954402446747,0.000156337089720182,-0.00955224689096212,-0.500014364719391,0.86601710319519,-2.05210767489916e-007,-0.498720735311508,0.866607189178467,-0.0164248328655958,-0.998779058456421,0.00425186939537525,-0.0492171347141266,-0.499986320734024,-0.866033256053925,-3.66886524716392e-005,-0.999954700469971,-0.000159341303515248,0.0095163993537426,-0.998784005641937,-0.00420397706329823,0.0491204112768173,-0.501173079013824,-0.865190446376801,-0.0164617616683245,0.41467759013176,0.904959201812744,-0.0953485369682312,0.991063177585602,0.0932686254382133,-0.0953667014837265,0.999998331069946,-3.29376562149264e-005,-0.00186688266694546,0.500031530857086,0.866006135940552,-0.00136415648739785,0.991063177585602,0.0932686254382133,-0.0953667014837265,0.576309204101563,-0.811650514602661,-0.0953468382358551,0.499984353780746,-0.86603444814682,1.84785967576317e-005,0.999998331069946,-3.29376562149264e-005,-0.00186688266694546,0.576309204101563,-0.811650514602661,-0.0953468382358551,-0.414639234542847,-0.904978036880493,-0.0953370928764343,-0.499986320734024,-0.866033256053925,-3.66886524716392e-005,0.499984353780746,-0.86603444814682,1.84785967576317e-005,-0.414639234542847,-0.904978036880493,-0.0953370928764343,-0.927201151847839,-0.262089371681213,-0.267595291137695,-0.999954700469971,-0.000159341303515248,0.0095163993537426,-0.499986320734024,-0.866033256053925,-3.66886524716392e-005,-0.927225410938263,0.261947244405746,0.267650693655014,-0.57639867067337,0.811587810516357,-0.0953401774168015,-0.500014364719391,0.86601710319519,-2.05210767489916e-007,-0.999954402446747,0.000156337089720182,-0.00955224689096212,-0.57639867067337,0.811587810516357,-0.0953401774168015,0.41467759013176,0.904959201812744,-0.0953485369682312,0.500031530857086,0.866006135940552,-0.00136415648739785,-0.500014364719391,0.86601710319519,-2.05210767489916e-007,1,0,0.000108836888102815,
- 1,0,0.000108836888102815,1,0,0.000108836888102815,1,0,0.000108836888102815,1,0,0.00010883690265473,1,0,0.00010883690265473,-0.993237018585205,-0.00779890501871705,-0.115842238068581,-1,5.74163209421386e-007,-6.23529631411657e-005,-0.993250370025635,0.00780155323445797,0.115727461874485,-0.993262112140656,-0.0078351516276598,0.115625388920307,-1,-6.00066641709418e-007,-6.2162012909539e-005,-0.993248641490936,0.00783249922096729,-0.115740448236465,0.50439578294754,0.863472580909729,-0.000145636047818698,1,4.18902072851779e-006,1.88127360161161e-005,1,2.31265948968939e-005,4.85662712890189e-005,0.501071155071259,0.865405976772308,0.000234411214478314,1,4.18902072851779e-006,1.88127360161161e-005,0.50436407327652,-0.863491117954254,0.000145179656101391,0.501053273677826,-0.865416347980499,-0.000199228175915778,1,2.31265948968939e-005,4.85662712890189e-005,0.50436407327652,-0.863491117954254,0.000145179656101391,-0.494503140449524,-0.869175851345062,-9.13380645215511e-005,-0.498967915773392,-0.866620302200317,-0.000292545475531369,0.501053273677826,-0.865416347980499,-0.000199228175915778,-0.494503140449524,-0.869175851345062,-9.13380645215511e-005,-0.999876260757446,-0.000423827063059434,0.0157227758318186,-0.996306002140045,-0.0128148859366775,0.0849137529730797,-0.498967915773392,-0.866620302200317,-0.000292545475531369,-0.999876379966736,0.000433157256338745,-0.0157209113240242,-0.494534939527512,0.869157731533051,7.34182540327311e-005,-0.498983085155487,0.866611659526825,0.000236415638937615,-0.99630081653595,0.0128547232598066,-0.0849675387144089,-0.494534939527512,0.869157731533051,7.34182540327311e-005,0.50439578294754,0.863472580909729,-0.000145636047818698,0.501071155071259,0.865405976772308,0.000234411214478314,-0.498983085155487,0.866611659526825,0.000236415638937615
- }
- TangentsW: *4403 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *5214 {
- a: 0.999999940395355,1.00834703445435,1,0.399469941854477,1,0.37791445851326,0.999999940395355,0.786208152770996,1,0.681783258914948,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,1,-0.00329195987433195,1,-0.0249461457133293,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1,0.335379958152771,1,0.356935441493988,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,1,0.565913200378418,0.999999940395355,0.544259011745453,1,0.681783258914948,1,0.593632459640503,1,0.664620041847229,1,0.643064558506012,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,0.999999940395355,0.786208152770996,1,0.681783258914948,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,1,-0.00329195987433195,1,-0.0249461457133293,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1,0.335379958152771,1,0.356935441493988,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,1,0.565913200378418,0.999999940395355,0.544259011745453,1,0.681783258914948,1,0.593632459640503,1,0.664620041847229,1,0.643064558506012,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,0.999999940395355,0.786208152770996,1,0.681783258914948,1,0.576236605644226,1,0.554681181907654,1,0.620428323745728,1,0.598872840404511,1,-0.00329195987433195,1,-0.0249461457133293,0.999999940395355,1.08607411384583,0.999999940395355,1.00834703445435,1,0.335379958152771,1,0.356935441493988,0.999999940395355,0.885368645191193,0.999999940395355,0.786208152770996,1,0.487853318452835,1,0.466297835111618,1,0.532044947147369,1,0.510489463806152,1,0.565913200378418,0.999999940395355,0.544259011745453,
- 1,0.681783258914948,1,0.593632459640503,1,0.664620041847229,1,0.643064558506012,0.999999940395355,1.00834703445435,0.999999940395355,0.885368645191193,1,0.399469941854477,1,0.37791445851326,1,0.443661630153656,1,0.422106146812439,-0.972893476486206,2.00669717788696,-0.972892940044403,1.92878401279449,-0.972890496253967,1.71232318878174,-0.972892761230469,1.78001058101654,-0.97289252281189,1.86109757423401,0,-1.13101959228516,0,-1.04781460762024,0,-1.27815794944763,0,-1.19870471954346,-1.19209289550781e-007,-1.35376286506653,-1.83798456192017,1.41775703430176,-0.868268489837646,2.44490551948547,-0.839587926864624,2.49323844909668,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,1.09456706047058,-0.641981780529022,1.09554243087769,-0.994022727012634,1.09164130687714,0.414140224456787,1.09261655807495,0.0620994865894318,1.09359180927277,-0.289940863847733,0.989585161209106,-1.64615273475647,0.989429652690887,-1.62817907333374,1.00000846385956,-0.630680024623871,1.00000786781311,-0.283699214458466,1.00000739097595,0.0632810741662979,1.0000067949295,0.41026172041893,6.05359673500061e-008,0.225367814302444,-4.39207497038296e-008,0.786456227302551,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0,0.487853288650513,8.89802777237492e-007,0.697252929210663,6.0440690674568e-008,0.324379235506058,1.00000846385956,-1,0.999999940395355,0.720146417617798,0.999999940395355,0.752213358879089,0.999999940395355,0.995401442050934,0.999999940395355,0.643750131130219,0.999999225139618,0.868566453456879,0.999999940395355,0.819283723831177,0.999999940395355,0.787981867790222,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,1,0.681783258914948,0.999999940395355,0.786208152770996,1.40453398227692,0.435370922088623,1.40453374385834,0.413716793060303,1.50895833969116,0.413716793060303,1.50895845890045,0.435370922088623,1,0.554681181907654,1,0.576236605644226,1,0.620428323745728,1,0.598872840404511,1,-0.0249461457133293,1,-0.00329195987433195,0.999999940395355,
- 1.08607411384583,0.999999940395355,1.00834703445435,1.63381791114807,0.41400158405304,1.55609035491943,0.414001107215881,1.55609035491943,0.392346858978271,1.63381791114807,0.39234733581543,1,0.335379958152771,1,0.356935441493988,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,1.47499024868011,0.33920955657959,1.47499001026154,0.317555546760559,1.57415175437927,0.317555546760559,1.57415175437927,0.339209675788879,1,0.466297835111618,1,0.487853318452835,1,0.532044947147369,1,0.510489463806152,0.999999940395355,0.544259011745453,1,0.565913200378418,1,0.593632459640503,1,0.681783258914948,1.49693834781647,0.604988694190979,1.49693822860718,0.583334565162659,1.58508837223053,0.583333969116211,1.58508849143982,0.604988098144531,1,0.643064558506012,1,0.664620041847229,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,1.31194496154785,0.483451306819916,1.31194496154785,0.461797058582306,1.43492293357849,0.461797416210175,1.43492317199707,0.483451426029205,0,0.377914428710938,1,0.37791445851326,1,0.399469941854477,0,0.39946985244751,1,0.443661630153656,1,0.422106146812439,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,0.999999940395355,0.786208152770996,-3.07336449623108e-008,0.786208033561707,1.40453398227692,0.435370922088623,1.40453374385834,0.413716793060303,1.50895833969116,0.413716793060303,1.50895845890045,0.435370922088623,-2.98023223876953e-008,0.554681181907654,1,0.554681181907654,1,0.576236605644226,0,0.576236605644226,1,0.620428323745728,0,0.620428323745728,0,0.598872840404511,1,0.598872840404511,6.79865479469299e-008,-0.0249462127685547,1,-0.0249461457133293,1,-0.00329195987433195,6.79865479469299e-008,-0.0032920241355896,0.999999940395355,1.08607411384583,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,1.63381791114807,0.41400158405304,1.55609035491943,0.414001107215881,1.55609035491943,0.392346858978271,1.63381791114807,0.39234733581543,1,0.335379958152771,
- 1,0.356935441493988,0,0.356935381889343,0,0.335379898548126,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,-4.2840838432312e-008,0.885368525981903,1.47499024868011,0.33920955657959,1.47499001026154,0.317555546760559,1.57415175437927,0.317555546760559,1.57415175437927,0.339209675788879,0,0.466297745704651,1,0.466297835111618,1,0.487853318452835,0,0.487853288650513,1,0.532044947147369,0,0.532044947147369,0,0.510489463806152,1,0.510489463806152,5.12227416038513e-008,0.544258892536163,0.999999940395355,0.544259011745453,1,0.565913200378418,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,1,0.593632459640503,1,0.681783258914948,-1.86264514923096e-008,0.681783199310303,1.49693834781647,0.604988694190979,1.49693822860718,0.583334565162659,1.58508837223053,0.583333969116211,1.58508849143982,0.604988098144531,0,0.643064558506012,1,0.643064558506012,1,0.664620041847229,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,1.31194496154785,0.483451306819916,1.31194496154785,0.461797058582306,1.43492293357849,0.461797416210175,1.43492317199707,0.483451426029205,0,0.377914428710938,1,0.37791445851326,1,0.399469941854477,0,0.39946985244751,1,0.443661630153656,0,0.443661570549011,0,0.422106087207794,1,0.422106146812439,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,0.999999940395355,0.786208152770996,-3.07336449623108e-008,0.786208033561707,1.40453398227692,0.435370922088623,1.40453374385834,0.413716793060303,1.50895833969116,0.413716793060303,1.50895845890045,0.435370922088623,-2.98023223876953e-008,0.554681181907654,1,0.554681181907654,1,0.576236605644226,0,0.576236605644226,1,0.620428323745728,0,0.620428323745728,0,0.598872840404511,1,0.598872840404511,6.79865479469299e-008,-0.0249462127685547,1,-0.0249461457133293,1,-0.00329195987433195,6.79865479469299e-008,-0.0032920241355896,0.999999940395355,1.08607411384583,
- -6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,1.63381791114807,0.41400158405304,1.55609035491943,0.414001107215881,1.55609035491943,0.392346858978271,1.63381791114807,0.39234733581543,1,0.335379958152771,1,0.356935441493988,0,0.356935381889343,0,0.335379898548126,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,-4.2840838432312e-008,0.885368525981903,1.47499024868011,0.33920955657959,1.47499001026154,0.317555546760559,1.57415175437927,0.317555546760559,1.57415175437927,0.339209675788879,0,0.466297745704651,1,0.466297835111618,1,0.487853318452835,0,0.487853288650513,1,0.532044947147369,0,0.532044947147369,0,0.510489463806152,1,0.510489463806152,5.12227416038513e-008,0.544258892536163,0.999999940395355,0.544259011745453,1,0.565913200378418,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,1,0.593632459640503,1,0.681783258914948,-1.86264514923096e-008,0.681783199310303,1.49693834781647,0.604988694190979,1.49693822860718,0.583334565162659,1.58508837223053,0.583333969116211,1.58508849143982,0.604988098144531,0,0.643064558506012,1,0.643064558506012,1,0.664620041847229,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,1.31194496154785,0.483451306819916,1.31194496154785,0.461797058582306,1.43492293357849,0.461797416210175,1.43492317199707,0.483451426029205,0,0.377914428710938,1,0.37791445851326,1,0.399469941854477,0,0.39946985244751,1,0.443661630153656,0,0.443661570549011,0,0.422106087207794,1,0.422106146812439,-1.86264514923096e-008,0.681783199310303,1,0.681783258914948,0.999999940395355,0.786208152770996,-3.07336449623108e-008,0.786208033561707,1.40453398227692,0.435370922088623,1.40453374385834,0.413716793060303,1.50895833969116,0.413716793060303,1.50895845890045,0.435370922088623,-2.98023223876953e-008,0.554681181907654,1,0.554681181907654,
- 1,0.576236605644226,0,0.576236605644226,1,0.620428323745728,0,0.620428323745728,0,0.598872840404511,1,0.598872840404511,6.79865479469299e-008,-0.0249462127685547,1,-0.0249461457133293,1,-0.00329195987433195,6.79865479469299e-008,-0.0032920241355896,0.999999940395355,1.08607411384583,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.999999940395355,1.00834703445435,1.63381791114807,0.41400158405304,1.55609035491943,0.414001107215881,1.55609035491943,0.392346858978271,1.63381791114807,0.39234733581543,1,0.335379958152771,1,0.356935441493988,0,0.356935381889343,0,0.335379898548126,-3.07336449623108e-008,0.786208033561707,0.999999940395355,0.786208152770996,0.999999940395355,0.885368645191193,-4.2840838432312e-008,0.885368525981903,1.47499024868011,0.33920955657959,1.47499001026154,0.317555546760559,1.57415175437927,0.317555546760559,1.57415175437927,0.339209675788879,0,0.466297745704651,1,0.466297835111618,1,0.487853318452835,0,0.487853288650513,1,0.532044947147369,0,0.532044947147369,0,0.510489463806152,1,0.510489463806152,5.12227416038513e-008,0.544258892536163,0.999999940395355,0.544259011745453,1,0.565913200378418,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,1,0.593632459640503,1,0.681783258914948,-1.86264514923096e-008,0.681783199310303,1.49693834781647,0.604988694190979,1.49693822860718,0.583334565162659,1.58508837223053,0.583333969116211,1.58508849143982,0.604988098144531,0,0.643064558506012,1,0.643064558506012,1,0.664620041847229,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,-5.77419996261597e-008,1.00834691524506,1.31194496154785,0.483451306819916,1.31194496154785,0.461797058582306,1.43492293357849,0.461797416210175,1.43492317199707,0.483451426029205,0,0.377914428710938,1,0.37791445851326,1,0.399469941854477,0,0.39946985244751,1,0.443661630153656,0,0.443661570549011,0,0.422106087207794,1,0.422106146812439,1.47499024868011,0.33920955657959,1.47499001026154,0.317555546760559,
- 1.55048060417175,0.317555546760559,1.57052206993103,0.339209675788879,1,0.466297835111618,1,0.487853318452835,0.999999940395355,0.544259011745453,1,0.565913200378418,1,0.593632459640503,1,0.681783258914948,1.49693834781647,0.604988694190979,1.49693822860718,0.583334565162659,1.58508837223053,0.583333969116211,1.58508849143982,0.604988098144531,1,0.643064558506012,1,0.664620041847229,0.999999940395355,0.885368645191193,0.999999940395355,1.00834703445435,1.31194496154785,0.483451306819916,1.31194496154785,0.461797058582306,1.43492293357849,0.461797416210175,1.43492317199707,0.483451426029205,1,0.37791445851326,1,0.399469941854477,1,0.443661630153656,1,0.422106146812439,1.05550765991211,0.0620483756065369,0.9693284034729,0.0578889474272728,0.969329833984375,-0.0184013620018959,1.05550765991211,-0.0184791442006826,-0.190883874893188,1.05195307731628,-0.190883874893188,0.969245791435242,-0.104707956314087,0.969246208667755,-0.104703187942505,1.05194711685181,0.411729335784912,0.552067220211029,0.411729395389557,0.464144080877304,0.497905850410461,0.464141190052032,0.497904866933823,0.552066922187805,0.622068643569946,1.29634952545166,0.594929695129395,1.38678085803986,1.89676320552826,1.29820048809052,1.86659955978394,1.38871693611145,0.594896554946899,1.43980777263641,1.86645531654358,1.44277369976044,0.622433423995972,1.24063730239868,0.595603227615356,1.14998340606689,1.86690855026245,1.15084552764893,1.89679324626923,1.24146950244904,-1.83798456192017,1.48458099365234,-1.83798456192017,1.56464600563049,-0.837984681129456,1.41632580757141,-1.83798456192017,1.41775703430176,-0.837984681129456,1.33625864982605,-1.83798480033875,1.33771872520447,-1.83798456192017,1.63148331642151,-1.97289657592773,1.86109817028046,-1.97289621829987,1.78001081943512,-0.972892761230469,1.78001058101654,-0.97289252281189,1.86109757423401,-1.97289609909058,1.92878448963165,-0.972892940044403,1.92878401279449,-1.97289538383484,2.00669741630554,-0.972893476486206,2.00669717788696,-1.97289860248566,1.71232438087463,-0.972890496253967,1.71232318878174,
- 1,-1.35376262664795,1.00000011920929,-1.27815794944763,0,-1.27815794944763,-1.19209289550781e-007,-1.35376286506653,1.00000011920929,-1.13101959228516,1,-1.04781460762024,0,-1.04781460762024,0,-1.13101959228516,1.00000011920929,-1.19870471954346,0,-1.19870471954346,0.315156698226929,2.49323844909668,-0.839587926864624,2.49323844909668,-0.868268489837646,2.44490551948547,0.289386391639709,2.44490575790405,0.315156817436218,2.53516268730164,-0.839587688446045,2.53516316413879,0.28938627243042,2.40037631988525,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,0.315155625343323,2.35204386711121,0.998032569885254,2.1027557849884,0.967716932296753,2.1538827419281,0.831901431083679,2.44490575790405,0.884720742702484,2.49323844909668,0.884720742702484,2.53516244888306,0.88471931219101,2.35204434394836,0.831901431083679,2.40037655830383,-1.0973707503581e-005,-0.630681812763214,-1.09736411104677e-005,-1,1.00000846385956,-1,1.00000846385956,-0.630680024623871,2.09549760818481,-0.994022846221924,2.09647250175476,-0.641982018947601,1.09456706047058,-0.641981780529022,1.09554243087769,-0.994022727012634,1.0695618391037,-0.641980111598969,1.06940698623657,-0.994022190570831,-0.0110687278211117,-1.63817071914673,-0.0110687278211117,-1.65517830848694,0.989585161209106,-1.64615273475647,0.989429652690887,-1.62817907333374,1.08969068527222,1.11822259426117,1.07033610343933,1.11822986602783,1.0701812505722,0.766187191009521,1.09066593647003,0.766180992126465,1.00000619888306,0.757242381572723,1.00000560283661,1.10422384738922,1.07002639770508,0.414145350456238,1.09164130687714,0.414140224456787,-1.26917966554174e-005,0.410259485244751,1.0000067949295,0.41026172041893,2.09939765930176,0.414139688014984,1.06987154483795,0.0621034651994705,1.09261655807495,0.0620994865894318,-1.21191005746368e-005,0.0632789880037308,1.00000739097595,0.0632810741662979,2.09842252731323,0.0620990395545959,1.06971669197083,-0.289938032627106,1.09359180927277,-0.289940863847733,-1.15464044938562e-005,-0.283701151609421,1.00000786781311,
- -0.283699214458466,2.09744739532471,-0.289941221475601,0.999999940395355,0.809879004955292,0.999999940395355,0.885368645191193,0.0710635781288147,1.4411164522171,0.169339954853058,1.23996567726135,0.0710674822330475,1.14920115470886,0.998017072677612,2.05566096305847,0.967653036117554,1.96021413803101,0.967668056488037,2.00455355644226,1.08881449699402,1.43448841571808,1.07048487663269,1.45619523525238,1.00000500679016,1.43733036518097,0.103080749511719,0.574472188949585,0.103668212890625,0.487653970718384,0.160168647766113,0.487653970718384,0.159582138061523,0.574472188949585,-0.0530261993408203,0.515445232391357,-0.0530261993408203,0.484554767608643,-0.0530261993408203,0.612486362457275,-0.0530261993408203,0.574472188949585,-4.39207497038296e-008,0.786456227302551,-4.2840838432312e-008,0.885368525981903,0.999999940395355,0.885368645191193,0.999999940395355,0.786456346511841,0,0.466297745704651,0,0.487853288650513,1,0.487853318452835,1,0.466297835111618,1.07095313072205,-0.0679197609424591,1.17339539527893,-0.0679197609424591,1.17313611507416,0.0334491431713104,1.07095313072205,0.0331985652446747,6.05359673500061e-008,0.225367814302444,6.0440690674568e-008,0.324379235506058,1,0.32437926530838,1,0.225367829203606,8.89802777237492e-007,0.697252929210663,1.00000095367432,0.697253048419952,4.24627214670181e-005,0.720145583152771,0.999999940395355,0.720146417617798,0.999999940395355,0.752213358879089,4.09949570894241e-005,0.752212524414063,0.999999940395355,0.995401442050934,8.34465026855469e-007,0.995400667190552,3.18503189191688e-005,0.868565797805786,0.999999225139618,0.868566453456879,4.47928905487061e-005,0.643749237060547,0.999999940395355,0.643750131130219,3.65478917956352e-005,0.819283008575439,0.999999940395355,0.819283723831177,3.87988984584808e-005,0.787981033325195,0.999999940395355,0.787981867790222,0.603904485702515,0.0336130112409592,0.631324052810669,0.0144635140895844,0.711964130401611,0.014463484287262,0.71194452047348,0.140752255916595,0.57633763551712,0.140742510557175,0.57629656791687,0.0892751589417458,
- 0.603904485702515,0.070918470621109,3.08044254779816e-005,0.869797587394714,0.999999940395355,0.869798302650452,0.999999940395355,0.995401442050934,8.34465026855469e-007,0.995400667190552,0.99999988079071,0.961639046669006,-5.20824414707022e-008,0.961638927459717,0.95266455411911,0.399469047784805,0.969493627548218,0.377913892269135,0.969488978385925,1.00834798812866,0.951362013816834,0.598881661891937,0.968196749687195,0.681782007217407,0.968194365501404,0.620434105396271,0.883148968219757,0.576230823993683,0.899987041950226,0.554676234722137,0.899997293949127,0.78620433807373,0.848301529884338,-0.0249462723731995,0.848283588886261,1.08598899841309,0.831466972827911,-0.00329206441529095,0.899058938026428,1.00829029083252,0.899074077606201,0.356936901807785,0.882236063480377,0.335381656885147,0.830081045627594,0.510478019714355,0.846889436244965,0.786229491233826,0.846913814544678,0.532034575939178,0.765335500240326,0.487874448299408,0.782168805599213,0.466317474842072,0.782118737697601,0.885398745536804,0.763811469078064,0.544311702251434,0.780575394630432,0.593629658222198,0.780642151832581,0.565962135791779,0.706204116344452,0.664616227149963,0.723036110401154,0.643060922622681,0.72299462556839,0.681779682636261,0.705186665058136,0.42212575674057,0.722017347812653,0.885469615459442,0.722016990184784,0.443680107593536,0.624861836433411,0.399506866931915,0.641691148281097,0.377949833869934,0.641705572605133,1.00847697257996,0.623546838760376,0.598877847194672,0.640327990055084,0.681676030158997,0.640380144119263,0.62043309211731,0.555300116539001,0.576261758804321,0.572135150432587,0.554705381393433,0.572119176387787,0.786080956459045,0.520439445972443,-0.0249449200928211,0.520501315593719,1.08609914779663,0.503602743148804,-0.00329070119187236,0.571263790130615,1.00836944580078,0.571234285831451,0.35696542263031,0.554401516914368,0.335411161184311,0.50227427482605,0.51057893037796,0.518990099430084,0.786161541938782,0.519105494022369,0.532131373882294,0.437489598989487,0.487829029560089,0.454323291778564,0.466274321079254,
- 0.454215615987778,0.885315775871277,0.436027705669403,0.544121623039246,0.452828377485275,0.593685030937195,0.452860414981842,0.565779864788055,0.378429591655731,0.664661705493927,0.395263642072678,0.643105149269104,0.395260602235794,0.681841373443604,0.377528309822083,0.422041147947311,0.394258856773376,0.885339736938477,0.394356340169907,0.443598330020905,0.297162979841232,0.399414896965027,0.313993871212006,0.377860724925995,0.313930481672287,1.00831413269043,0.295951813459396,0.598798871040344,0.312687754631042,0.681653261184692,0.312785655260086,0.62035608291626,0.227586463093758,0.57610821723938,0.244422376155853,0.554555535316467,0.244481578469276,0.786065340042114,0.192757397890091,-0.0249461978673935,0.192974925041199,1.08608913421631,0.175922602415085,-0.0032920315861702,0.243730291724205,1.00836133956909,0.24367368221283,0.356916844844818,0.226844862103462,0.335360944271088,0.174666866660118,0.510471940040588,0.19158399105072,0.786284565925598,0.191499263048172,0.532027721405029,0.109871134161949,0.4879110455513,0.126700773835182,0.466354429721832,0.126829877495766,0.88545036315918,0.108116313815117,0.544175267219543,0.125182747840881,0.593724310398102,0.124953016638756,0.565831005573273,0.0508154034614563,0.664582014083862,0.0676458775997162,0.643027186393738,0.0676102191209793,0.681881248950958,0.0494062453508377,0.422012537717819,0.0663069784641266,0.885768532752991,0.0662397295236588,0.443569540977478,-0.0539243072271347,0.399472862482071,-0.0370940715074539,0.377917379140854,-0.0371073931455612,1.00878763198853,-0.837984681129456,1.46501660346985,-1.83798456192017,1.46642744541168,-0.837984681129456,1.34971487522125,-1.83798480033875,1.3511700630188,-1.79628896713257,1.41769731044769,-1.40979242324829,1.86109781265259,-1.47071146965027,1.92878437042236,-1.4206714630127,1.71226835250854,-1.42040729522705,2.00634050369263,-1.35967540740967,1.78001070022583,0.878801226615906,-1.27815794944763,0.934609651565552,-1.04818212985992,0.934616208076477,-1.35383486747742,0.884469926357269,-1.13101959228516,0.831618249416351,
- -1.19870471954346,0.0632686167955399,2.44490551948547,0.132697716355324,2.49323844909668,0.0675233602523804,2.35204362869263,0.067524328827858,2.53516292572021,-0.00190162658691406,2.40037631988525,2.17298126220703,-0.99406623840332,-0.0881782025098801,-1.65611791610718,-0.102023363113403,-1.63870441913605,-0.0907102227210999,-1.00019788742065,1.09099996089935,0.645630717277527,2.10003852844238,0.645630061626434,-1.31036813399987e-005,0.659808278083801,1.00000643730164,0.659810602664948,0.839511930942535,0.410306006669998,0.616251409053802,0.0632710009813309,0.393220633268356,-0.28364235162735,0.170167088508606,-0.625203013420105,1.23931670188904,0.414143174886703,1.46448421478271,0.0621039047837257,1.68959617614746,-0.289951056241989,1.9124299287796,-0.632903575897217,0.963604867458344,0.225369229912758,0.963803827762604,0.487842977046967,0.963367521762848,0.885368585586548,0.963567793369293,0.466287463903427,0.870983898639679,0.32438051700592,0.871320307254791,0.697352766990662,0.870982527732849,0.786456346511841,-0.0658432990312576,0.720145523548126,-0.0921331867575645,0.752212464809418,0.0105230957269669,0.995402336120605,0.0106206685304642,0.87015300989151,0.0105541050434113,0.643748879432678,0.0106073468923569,0.995756089687347,-0.118036545813084,0.868565678596497,-0.118028275668621,0.81928288936615,-0.0921366587281227,0.787980914115906,0.278757989406586,0.598872840404511,0.295589983463287,0.681783199310303,0.295589983463287,0.620428323745728,0.21055394411087,0.576236605644226,0.227387621998787,0.554681181907654,0.227387607097626,0.786208033561707,0.175706431269646,-0.0249462015926838,0.175706297159195,1.08607399463654,0.15887638926506,-0.00329201389104128,0.226469188928604,1.00834691524506,0.226469248533249,0.356935381889343,0.20963728427887,0.335379928350449,0.157465696334839,0.510489463806152,0.174301087856293,0.786208033561707,0.174301132559776,0.532044947147369,0.0926988124847412,0.487853288650513,0.109535947442055,0.466297775506973,0.109535902738571,0.885368525981903,0.0911643281579018,0.544258892536163,
- 0.107999503612518,0.593632400035858,0.107999555766582,0.565913140773773,0.0335873365402222,0.664620041847229,0.0504296943545341,0.643064558506012,0.0504296757280827,0.681783199310303,0.032983124256134,0.422106117010117,0.0498168021440506,0.885368585586548,0.0498168468475342,0.443661570549011,0.419818520545959,0.487853288650513,0.436648786067963,0.466297805309296,0.436648726463318,0.885368585586548,0.418277144432068,0.544258952140808,0.435119271278381,0.593632459640503,0.435119301080704,0.565913140773773,0.360703647136688,0.664620041847229,0.377539098262787,0.643064558506012,0.377539098262787,0.681783199310303,0.360095977783203,0.422106117010117,0.376929640769959,0.885368585586548,0.376929700374603,0.443661570549011,0.279776513576508,0.399469882249832,0.296610236167908,0.377914428710938,0.296610176563263,1.00834691524506,0.208259701728821,1.29654276371002,0.108973652124405,1.3870747089386,-0.853535294532776,1.48319971561432,-0.846407473087311,1.63009226322174,-0.846407473087311,1.33627092838287,-0.903659582138062,1.56333529949188,-0.521015822887421,2.00350522994995,-0.452257603406906,2.15686273574829,-0.452263563871384,1.95804715156555,-0.388387531042099,2.10421872138977,0.285801768302917,1.10422194004059,1.79829168319702,1.11822199821472,0.0626485273241997,0.757240056991577,2.02321648597717,0.766180336475372,-0.457269847393036,2.05600738525391,0.499958127737045,0.612486362457275,0.499958127737045,0.574472188949585,0.500037848949432,0.809878945350647,0.0712349638342857,1.41415858268738,0.169480472803116,1.26760363578796,0.499958127737045,0.484554767608643,1.5954806804657,1.43448805809021,0.499957859516144,0.515445232391357,0.500033378601074,1.43732881546021,7.40087813255741e-008,0.463643372058868,0.56783127784729,0.463643550872803,0.567831218242645,0.620991349220276,9.85377024420586e-009,0.620991230010986,0.701555252075195,0.786208808422089,0.701555669307709,0.943555355072021,-5.61189921199912e-008,0.943555235862732,-4.4569979706921e-008,0.786208689212799,0.567831158638,1.10877251625061,-6.99827609196291e-008,1.10877251625061,
- 1.52901268005371,0.392397969961166,1.6364369392395,0.392398029565811,1.63643705844879,0.505195915699005,1.52901268005371,0.50519585609436,0.578722953796387,0.591754913330078,0.42127799987793,0.591754913330078,0.421284139156342,0.362136602401733,0.578717350959778,0.362140566110611,-1.86264514923096e-008,0.681783199310303,0.20448012650013,0.68179851770401,0.27268049120903,0.786228537559509,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.272711187601089,0.554738640785217,0.289545923471451,0.576297640800476,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.324358552694321,-0.0249457322061062,0.34118989109993,-0.00329152611084282,6.79865479469299e-008,-0.0032920241355896,-3.07336449623108e-008,0.786208033561707,0.325747400522232,0.786233603954315,0.390507102012634,0.885398983955383,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0.390504240989685,0.46627414226532,0.407339513301849,0.487828642129898,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.408937364816666,0.544290006160736,0.392101109027863,0.565942943096161,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,0.39203542470932,0.593611896038055,0.449599236249924,0.681759715080261,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.449620872735977,0.643043875694275,0.466461896896362,0.664598524570465,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,0.45028880238533,0.885364949703217,0.530618727207184,1.0083429813385,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.5306476354599,0.37790721654892,0.547481179237366,0.399462401866913,0,0.39946985244751,-1.86264514923096e-008,0.681783199310303,0.531902372837067,0.681896209716797,0.600108921527863,0.786335229873657,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.600088119506836,0.554640412330627,0.616924941539764,0.576194405555725,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.651767432689667,-0.0249470919370651,0.668600976467133,-0.00329305371269584,
- 6.79865479469299e-008,-0.0032920241355896,-3.07336449623108e-008,0.786208033561707,0.653130173683167,0.786165714263916,0.717891216278076,0.885322332382202,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,0.718004584312439,0.466295003890991,0.734842956066132,0.487850576639175,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,0.73643571138382,0.54433286190033,0.719599306583405,0.565985560417175,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,0.719479203224182,0.593628168106079,0.777052879333496,0.6817786693573,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.777052104473114,0.64303982257843,0.793885707855225,0.664594709873199,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,0.77806156873703,0.885222911834717,0.858379781246185,1.00818705558777,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.858425378799438,0.377846837043762,0.875257253646851,0.399400949478149,0,0.39946985244751,-1.86264514923096e-008,0.681783199310303,0.859730660915375,0.681737780570984,0.927934467792511,0.786158859729767,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,0.927861928939819,0.554714977741241,0.944696187973022,0.576271057128906,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,0.979583859443665,-0.0249447133392096,0.996418952941895,-0.00329051818698645,6.79865479469299e-008,-0.0032920241355896,-3.07336449623108e-008,0.786208033561707,0.981045305728912,0.786289572715759,1.0458117723465,0.885455071926117,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,1.0457478761673,0.466265082359314,1.06258273124695,0.487820029258728,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,1.06397604942322,0.543980717658997,1.04714500904083,0.56563925743103,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,1.04732143878937,0.593629479408264,1.10489571094513,0.681780099868774,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,1.10482370853424,0.643032252788544,1.12165999412537,
- 0.664587438106537,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,1.10570859909058,0.885321259498596,1.18602514266968,1.00829672813416,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,1.18604862689972,0.377991497516632,1.20287990570068,0.399547934532166,0,0.39946985244751,-1.86264514923096e-008,0.681783199310303,1.18729567527771,0.681627213954926,1.25549530982971,0.786043167114258,-3.07336449623108e-008,0.786208033561707,-2.98023223876953e-008,0.554681181907654,1.25558006763458,0.554621577262878,1.27241516113281,0.576176047325134,0,0.576236605644226,6.79865479469299e-008,-0.0249462127685547,1.307333111763,-0.02495202049613,1.32416784763336,-0.00329792965203524,6.79865479469299e-008,-0.0032920241355896,-3.07336449623108e-008,0.786208033561707,1.3086553812027,0.78609824180603,1.37342381477356,0.885253310203552,-4.2840838432312e-008,0.885368525981903,0,0.466297745704651,1.3733617067337,0.466262727975845,1.3901926279068,0.487817883491516,0,0.487853288650513,5.12227416038513e-008,0.544258892536163,1.39172577857971,0.544354200363159,1.37489318847656,0.566007375717163,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,1.37510752677917,0.593741893768311,1.43269002437592,0.681897103786469,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,1.43254160881042,0.64301860332489,1.44937491416931,0.664573609828949,0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,1.43379163742065,0.885598182678223,1.53720533847809,1.00859045982361,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,1.53719627857208,0.377911567687988,1.55402982234955,0.399466812610626,0,0.39946985244751,5.12227416038513e-008,0.544258892536163,0.0818012878298759,0.544259965419769,0.0649600550532341,0.565914034843445,5.12227416038513e-008,0.565913140773773,-8.38190317153931e-009,0.593632400035858,0.0649584084749222,0.593619108200073,0.122540049254894,0.681758224964142,-1.86264514923096e-008,0.681783199310303,0,0.643064558506012,0.122553676366806,0.643067598342896,0.139389321208,0.664623498916626,
- 0,0.664620041847229,-4.2840838432312e-008,0.885368525981903,0.123139940202236,0.885379552841187,0.203455328941345,1.00836527347565,-5.77419996261597e-008,1.00834691524506,0,0.377914428710938,0.20346474647522,0.37791845202446,0.22029809653759,0.399474203586578,0,0.39946985244751,-0.837984681129456,1.41632580757141,-0.837984681129456,1.48317790031433,-1.322509765625,1.48386001586914,-1.37975525856018,1.41710138320923,-0.837984681129456,1.33625864982605,-1.32959914207459,1.33688747882843,-0.837984681129456,1.56324315071106,-0.837984681129456,1.63008046150208,-1.32960963249207,1.63078773021698,-1.27238571643829,1.56385254859924,-1.97289657592773,1.86109817028046,-1.97289621829987,1.78001081943512,-1.08594131469727,1.78001034259796,-1.0358247756958,1.8610976934433,-1.97289609909058,1.92878448963165,-0.975001931190491,1.92878401279449,-1.97289538383484,2.00669741630554,-1.02523863315582,2.00671696662903,-1.97289860248566,1.71232438087463,-1.02474701404572,1.71174585819244,1,-1.35376262664795,1.00000011920929,-1.27815794944763,-0.378875076770782,-1.27815806865692,-0.434678673744202,-1.35381817817688,1.00000011920929,-1.13101959228516,1,-1.04781460762024,-0.434520721435547,-1.0479907989502,-0.384544134140015,-1.13101959228516,1.00000011920929,-1.19870471954346,-0.331690460443497,-1.19870471954346,-1.0973707503581e-005,-0.630681812763214,-1.09736411104677e-005,-1,1.5908614397049,-1.00012159347534,1.3296571969986,-0.623928785324097,2.09549760818481,-0.994022846221924,2.09647250175476,-0.641982018947601,0.778141617774963,-0.630759119987488,0.517729878425598,-0.993821442127228,-0.0110687278211117,-1.63817071914673,-0.0110687278211117,-1.65517830848694,1.56684708595276,-1.63949751853943,1.58053267002106,-1.62189507484436,-1.38371915454627e-005,1.10422122478485,-1.32644936456927e-005,0.757239937782288,0.43730354309082,0.757247030735016,0.214253410696983,1.1041247844696,2.1003725528717,0.766180276870728,2.10134768486023,1.11822175979614,2.10222816467285,1.43478631973267,1.8984922170639,1.11825501918793,1.67241787910461,0.766297101974487,
- -1.26917966554174e-005,0.410259485244751,0.660561501979828,0.41020792722702,2.09939765930176,0.414139688014984,1.4473705291748,0.414154529571533,-1.21191005746368e-005,0.0632789880037308,0.883648753166199,0.0632828176021576,2.09842252731323,0.0620990395545959,1.22254121303558,0.062108226120472,-1.15464044938562e-005,-0.283701151609421,1.10679531097412,-0.283608973026276,2.09744739532471,-0.289941221475601,1.00057196617126,-0.290125697851181,0.998017072677612,2.05566096305847,-0.612813472747803,2.05604434013367,-0.678033709526062,2.00339460372925,0.967668056488037,2.00455355644226,4.24627214670181e-005,0.720145583152771,1.56593918800354,0.720146954059601,1.59222948551178,0.752213776111603,4.09949570894241e-005,0.752212524414063,4.47928905487061e-005,0.643749237060547,1.48954355716705,0.643750131130219,3.87988984584808e-005,0.787981033325195,1.59223079681396,0.787982702255249,1.61811923980713,0.819284677505493,3.65478917956352e-005,0.819283008575439,3.08044254779816e-005,0.869797587394714,1.48985731601715,0.870188474655151,1.4898407459259,0.995791554450989,8.34465026855469e-007,0.995400667190552,0.221348956227303,0.598872601985931,0.204516559839249,0.620428085327148,0,0.620428323745728,0,0.598872840404511,0.273629605770111,1.00839018821716,0.324395000934601,1.08612525463104,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.290425449609756,0.335356742143631,0.273594528436661,0.356913536787033,0,0.356935381889343,0,0.335379898548126,0.342644602060318,0.510522902011871,0.325807839632034,0.532076776027679,0,0.532044947147369,0,0.510489463806152,0.467039525508881,0.422070056200027,0.450208067893982,0.44362685084343,0,0.443661570549011,0,0.422106087207794,0.548644781112671,0.598858833312988,0.531813502311707,0.620414674282074,0,0.620428323745728,0,0.598872840404511,0.600928723812103,1.0082916021347,0.651689469814301,1.08601427078247,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.617896795272827,0.335410833358765,0.601056635379791,0.35696542263031,0,0.356935381889343,
- 0,0.335379898548126,0.670007646083832,0.510450422763824,0.653172612190247,0.532006859779358,0,0.532044947147369,0,0.510489463806152,0.794915378093719,0.422086775302887,0.778082191944122,0.443642675876617,0,0.443661570549011,0,0.422106087207794,0.876604557037354,0.598801612854004,0.859768271446228,0.620358347892761,0,0.620428323745728,0,0.598872840404511,0.928869962692261,1.00822365283966,0.979636907577515,1.08594489097595,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,0.945777595043182,0.335343599319458,0.928942263126373,0.356899708509445,0,0.356935381889343,0,0.335379898548126,0.997751891613007,0.510477840900421,0.98091983795166,0.532033443450928,0,0.532044947147369,0,0.510489463806152,1.12248730659485,0.421955496072769,1.10565865039825,0.443513095378876,0,0.443661570549011,0,0.422106087207794,1.20412945747375,0.598793745040894,1.18729364871979,0.620350241661072,0,0.620428323745728,0,0.598872840404511,1.2564742565155,1.00833916664124,1.30723881721497,1.08606660366058,-6.79865479469299e-008,1.08607399463654,-5.77419996261597e-008,1.00834691524506,1.27339637279511,0.33532577753067,1.25656366348267,0.35688191652298,0,0.356935381889343,0,0.335379898548126,1.32557582855225,0.510582804679871,1.30873787403107,0.532137155532837,0,0.532044947147369,0,0.510489463806152,1.45062232017517,0.421947568655014,1.43378877639771,0.443504869937897,0,0.443661570549011,0,0.422106087207794,0.139994814991951,0.422108888626099,0.123159617185593,0.443664014339447,0,0.443661570549011,0,0.422106087207794,0.603566229343414,1.386794090271,0.716371536254883,1.29648637771606,1.89676320552826,1.29820048809052,1.86659955978394,1.38871693611145,0.686579823493958,1.44002163410187,1.86645531654358,1.44277369976044,0.799838244915009,1.24075317382813,0.687268257141113,1.15004563331604,1.86690855026245,1.15084552764893,1.89679324626923,1.24146950244904,-0.214438542723656,2.44490575790405,-0.145026475191116,2.49323844909668,-0.839587926864624,2.49323844909668,-0.868268489837646,2.44490551948547,-0.0798484086990356,2.53516292572021,
- -0.839587688446045,2.53516316413879,-0.0798492282629013,2.35204362869263,-0.149265348911285,2.40037631988525,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,-0.748238980770111,2.15748381614685,-0.68313205242157,2.1045298576355,0.998032569885254,2.1027557849884,0.967716932296753,2.1538827419281,-0.748232841491699,1.95759558677673,0.967653036117554,1.96021413803101,-0.371058583259583,0.786456227302551,-0.463444232940674,0.8853679895401,0.999999940395355,0.885368645191193,0.999999940395355,0.786456346511841,-0.463398933410645,0.466286242008209,-0.46363377571106,0.487841784954071,1,0.487853318452835,1,0.466297835111618,-0.463677704334259,0.22536712884903,-0.371058106422424,0.324378609657288,1,0.32437926530838,1,0.225367829203606,-0.370584487915039,0.697575271129608,1.00000095367432,0.697253048419952,1.61812722682953,0.868566036224365,1.48954784870148,0.995402216911316,8.34465026855469e-007,0.995400667190552,3.18503189191688e-005,0.868565797805786,-1.16703688490816e-006,1.43732643127441,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,
- 1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,1.52330887317657,0.360428988933563,1.63643729686737,0.360428988933563,1.63643741607666,0.38388803601265,1.52330899238586,0.383888065814972,1.63643741607666,0.441170901060104,1.63643741607666,0.464629918336868,1.55223226547241,0.464629918336868,1.55223202705383,0.441170960664749,1.52901220321655,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.52901220321655,0.410801976919174,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,1.54093956947327,0.41425696015358,1.63643741607666,0.41425696015358,1.63643741607666,0.437715977430344,1.54093956947327,0.437715977430344,1.503209233284,0.333767235279083,1.63643729686737,0.333767354488373,1.63643729686737,0.357226341962814,1.503209233284,0.357226312160492,0.43391352891922,2.58150959014893,0.433919817209244,
- 2.67670869827271,0.334750354290009,2.67667579650879,0.334752023220062,2.5815098285675,1.44807887077332,1.90603685379028,1.44806063175201,1.82707929611206,1.52548575401306,1.82707035541534,1.52549386024475,1.90603494644165,-0.845147013664246,0.301948606967926,-0.845245122909546,0.172026991844177,-0.71527224779129,0.165111497044563,-0.715162694454193,0.302162766456604,1.47499024868011,0.33920955657959,1.57408857345581,0.336904287338257,1.57639229297638,0.434757173061371,1.47752630710602,0.437295258045197,2.09549760818481,-0.994022846221924,2.12163329124451,-0.994021832942963,2.12147808074951,-0.641979932785034,2.09647250175476,-0.641982018947601,2.10134768486023,1.11822175979614,2.12070226669312,1.11822915077209,2.12055325508118,1.45619428157806,2.1023416519165,1.4345498085022,2.1003725528717,0.766180276870728,2.12085747718811,0.766186654567719,2.09939765930176,0.414139688014984,2.12101268768311,0.414144933223724,2.09842252731323,0.0620990395545959,2.1211678981781,0.0621032267808914,2.09744739532471,-0.289941221475601,2.12132287025452,-0.28993809223175,0.392148464918137,0.14081683754921,0.392128884792328,0.0145279243588448,0.47276908159256,0.0145279765129089,0.500188589096069,0.0336773991584778,0.500188589096069,0.0709830522537231,0.52779632806778,0.0893397331237793,0.52779632806778,0.137728631496429,0.524687826633453,0.140816867351532,0,0.466297745704651,0.0634286850690842,0.466284662485123,0.0802611708641052,0.487836688756943,0,0.487853288650513,1.5329442024231,0.410801976919174,1.55465590953827,0.387342929840088,1.63643741607666,0.38734295964241,1.63643717765808,0.410801976919174,1.0119774742634e-005,0.80987936258316,0.0634229406714439,0.885364234447479,-4.2840838432312e-008,0.885368525981903,0.622068643569946,1.29634952545166,0.594929695129395,1.38678085803986,0.155786141753197,1.37915372848511,0.242254555225372,1.29652690887451,0.950405359268188,1.2996324300766,0.92269229888916,1.39037275314331,0.922757863998413,1.44781816005707,0.594896554946899,1.43980777263641,0.622433423995972,1.24063730239868,0.595603227615356,
- 1.14998340606689,0.922988176345825,1.14930081367493,0.950558423995972,1.23977339267731,1.50743961334229,1.29768478870392,1.50752019882202,1.24093067646027,1.8552314043045,1.24141192436218,1.85519587993622,1.29814541339874,1.47843289375305,1.15029442310333,1.82543182373047,1.15078663825989,1.47820544242859,1.3881117105484,1.8516811132431,1.36222743988037,1.8528345823288,1.42788779735565,1.47809958457947,1.44216978549957,0.0872885435819626,1.44130790233612,0.179119467735291,1.23998010158539,0.0896765664219856,1.1636084318161,0.571282386779785,0.33576774597168,0.573426067829132,0.55192095041275,0.429098904132843,0.631298065185547,0.426592826843262,0.413255453109741,-0.839587926864624,2.49323844909668,-0.868268489837646,2.44490551948547,-0.393752545118332,2.44490575790405,-0.339682787656784,2.49323844909668,-0.839587688446045,2.53516316413879,-0.411120176315308,2.53516292572021,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,-0.411120772361755,2.35204315185547,-0.465184926986694,2.4003758430481,0.648716568946838,0.443462163209915,0.674782037734985,0.443462163209915,0.674708127975464,0.445760458707809,0.648659527301788,0.445760458707809,0.622231960296631,0.443462163209915,0.622167408466339,0.445760458707809,0.59565544128418,0.445760458707809,0.595729649066925,0.443462163209915,0.569622814655304,0.443462163209915,0.56956148147583,0.445760458707809,0.544108748435974,0.443462163209915,0.544103682041168,0.445760458707809,0.700264453887939,0.443462163209915,0.700131893157959,0.445760458707809,0.585002601146698,0.491128236055374,0.585002601146698,0.516907274723053,0.562677979469299,0.52979588508606,0.540351569652557,0.516907274723053,0.540351569652557,0.491128236055374,0.562677979469299,0.478239506483078,0.623738884925842,0.381929308176041,0.623735904693604,0.389914691448212,0.597458243370056,0.389914691448212,0.597447216510773,0.381929308176041,0.650058805942535,0.381929308176041,0.650045454502106,0.389914691448212,0.676622688770294,0.381929308176041,0.676504135131836,0.389914691448212,0.702166736125946,
- 0.381929308176041,0.703352868556976,0.389914691448212,0.570932745933533,0.381929308176041,0.571051359176636,0.389914691448212,0.544226348400116,0.389914691448212,0.545423328876495,0.381929308176041,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.475725740194321,0.0503817349672318,0.501498579978943,0.0503817349672318,0.501355409622192,0.106227472424507,0.475626826286316,0.106227472424507,0.450098216533661,0.0503817349672318,0.449460208415985,0.106227472424507,0.423274099826813,0.106227472424507,0.424501746892929,0.0503817349672318,0.398779511451721,0.0503817349672318,0.397500783205032,0.106227472424507,0.372649908065796,0.0503817349672318,0.372355848550797,0.106227472424507,0.527651190757751,0.0503817349672318,0.526466727256775,0.106227472424507,0.450101107358933,0.0423963218927383,0.424491047859192,0.0423963218927383,0.475738704204559,0.0423963218927383,0.501613974571228,0.0423963218927383,0.526495814323425,0.0423963218927383,0.398663997650146,0.0423963218927383,0.373815834522247,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,
- 0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,0.545437753200531,0.734635889530182,0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,
- 0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.447317481040955,0.0503817349672318,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,
- 0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,0.545437753200531,0.734635889530182,0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,
- 0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.447317481040955,0.0503817349672318,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.676378607749939,0.657266318798065,0.676378607749939,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.676378607749939,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.54681271314621,
- 0.676378607749939,0.545437753200531,0.734635889530182,0.518715560436249,0.676378607749939,0.518399477005005,0.734635889530182,0.685388326644897,0.676378607749939,0.684114754199982,0.734635889530182,0.574460327625275,0.667083919048309,0.601998805999756,0.667083919048309,0.62956690788269,0.667083919048309,0.657390475273132,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,0.546688616275787,0.667083919048309,0.565638840198517,0.678219020366669,0.588474094867706,0.6914022564888,0.588474094867706,0.717772305011749,0.565638840198517,0.730956017971039,0.542803347110748,0.717772305011749,0.542803347110748,0.6914022564888,0.648716568946838,0.443462163209915,0.674782037734985,0.443462163209915,0.674708127975464,0.445760458707809,0.648659527301788,0.445760458707809,0.622231960296631,0.443462163209915,0.622167408466339,0.445760458707809,0.59565544128418,0.445760458707809,0.595729649066925,0.443462163209915,0.569622814655304,0.443462163209915,0.56956148147583,0.445760458707809,0.544108748435974,0.443462163209915,0.544103682041168,0.445760458707809,0.700264453887939,0.443462163209915,0.700131893157959,0.445760458707809,0.585002601146698,0.491128236055374,0.585002601146698,0.516907274723053,0.562677979469299,0.52979588508606,0.540351569652557,0.516907274723053,0.540351569652557,0.491128236055374,0.562677979469299,0.478239506483078,0.623738884925842,0.381929308176041,0.623735904693604,0.389914691448212,0.597458243370056,0.389914691448212,0.597447216510773,0.381929308176041,0.650058805942535,0.381929308176041,0.650045454502106,0.389914691448212,0.676622688770294,0.381929308176041,0.676504135131836,0.389914691448212,0.702166736125946,0.381929308176041,0.703352868556976,0.389914691448212,0.570932745933533,0.381929308176041,0.571051359176636,0.389914691448212,0.544226348400116,0.389914691448212,0.545423328876495,0.381929308176041,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,
- 0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.475725740194321,0.0503817349672318,0.501498579978943,0.0503817349672318,0.501355409622192,0.106227472424507,0.475626826286316,0.106227472424507,0.450098216533661,0.0503817349672318,0.449460208415985,0.106227472424507,0.423274099826813,0.106227472424507,0.424501746892929,0.0503817349672318,0.398779511451721,0.0503817349672318,0.397500783205032,0.106227472424507,0.372649908065796,0.0503817349672318,0.372355848550797,0.106227472424507,0.527651190757751,0.0503817349672318,0.526466727256775,0.106227472424507,0.450101107358933,0.0423963218927383,0.424491047859192,0.0423963218927383,0.475738704204559,0.0423963218927383,0.501613974571228,0.0423963218927383,0.526495814323425,0.0423963218927383,0.398663997650146,0.0423963218927383,0.373815834522247,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,
- 0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,0.545437753200531,0.734635889530182,0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,
- 0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.447317481040955,0.0503817349672318,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,
- 0.545437753200531,0.734635889530182,0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,
- 0.447317481040955,0.0503817349672318,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.676378607749939,0.657266318798065,0.676378607749939,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.676378607749939,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.54681271314621,0.676378607749939,0.545437753200531,0.734635889530182,0.518715560436249,0.676378607749939,0.518399477005005,0.734635889530182,0.685388326644897,0.676378607749939,0.684114754199982,0.734635889530182,0.574460327625275,0.667083919048309,0.601998805999756,0.667083919048309,0.62956690788269,0.667083919048309,0.657390475273132,0.667083919048309,0.684145867824554,0.667083919048309,
- 0.519969344139099,0.667083919048309,0.546688616275787,0.667083919048309,0.565638840198517,0.678219020366669,0.588474094867706,0.6914022564888,0.588474094867706,0.717772305011749,0.565638840198517,0.730956017971039,0.542803347110748,0.717772305011749,0.542803347110748,0.6914022564888,0.648716568946838,0.443462163209915,0.674782037734985,0.443462163209915,0.674708127975464,0.445760458707809,0.648659527301788,0.445760458707809,0.622231960296631,0.443462163209915,0.622167408466339,0.445760458707809,0.59565544128418,0.445760458707809,0.595729649066925,0.443462163209915,0.569622814655304,0.443462163209915,0.56956148147583,0.445760458707809,0.544108748435974,0.443462163209915,0.544103682041168,0.445760458707809,0.700264453887939,0.443462163209915,0.700131893157959,0.445760458707809,0.585002601146698,0.491128236055374,0.585002601146698,0.516907274723053,0.562677979469299,0.52979588508606,0.540351569652557,0.516907274723053,0.540351569652557,0.491128236055374,0.562677979469299,0.478239506483078,0.623738884925842,0.381929308176041,0.623735904693604,0.389914691448212,0.597458243370056,0.389914691448212,0.597447216510773,0.381929308176041,0.650058805942535,0.381929308176041,0.650045454502106,0.389914691448212,0.676622688770294,0.381929308176041,0.676504135131836,0.389914691448212,0.702166736125946,0.381929308176041,0.703352868556976,0.389914691448212,0.570932745933533,0.381929308176041,0.571051359176636,0.389914691448212,0.544226348400116,0.389914691448212,0.545423328876495,0.381929308176041,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,
- 0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.475725740194321,0.0503817349672318,0.501498579978943,0.0503817349672318,0.501355409622192,0.106227472424507,0.475626826286316,0.106227472424507,0.450098216533661,0.0503817349672318,0.449460208415985,0.106227472424507,0.423274099826813,0.106227472424507,0.424501746892929,0.0503817349672318,0.398779511451721,0.0503817349672318,0.397500783205032,0.106227472424507,0.372649908065796,0.0503817349672318,0.372355848550797,0.106227472424507,0.527651190757751,0.0503817349672318,0.526466727256775,0.106227472424507,0.450101107358933,0.0423963218927383,0.424491047859192,0.0423963218927383,0.475738704204559,0.0423963218927383,0.501613974571228,0.0423963218927383,0.526495814323425,0.0423963218927383,0.398663997650146,0.0423963218927383,0.373815834522247,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,0.545437753200531,
- 0.734635889530182,0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.447317481040955,
- 0.0503817349672318,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,0.545437753200531,0.734635889530182,0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,
- 0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.447317481040955,0.0503817349672318,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,
- 0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.676378607749939,0.657266318798065,0.676378607749939,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.676378607749939,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.54681271314621,0.676378607749939,0.545437753200531,0.734635889530182,0.518715560436249,0.676378607749939,0.518399477005005,0.734635889530182,0.685388326644897,0.676378607749939,0.684114754199982,0.734635889530182,0.574460327625275,0.667083919048309,0.601998805999756,0.667083919048309,0.62956690788269,0.667083919048309,0.657390475273132,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,0.546688616275787,0.667083919048309,0.565638840198517,0.678219020366669,0.588474094867706,0.6914022564888,0.588474094867706,0.717772305011749,0.565638840198517,0.730956017971039,0.542803347110748,0.717772305011749,0.542803347110748,0.6914022564888,0.471604883670807,0.100579425692558,0.496077090501785,0.100579425692558,
- 0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.446772128343582,0.100579425692558,0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.421925693750381,0.100579425692558,0.397419989109039,0.100579425692558,0.397296994924545,0.106227472424507,0.373412311077118,0.100579425692558,0.373384028673172,0.106227472424507,0.520058333873749,0.100579425692558,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.447317481040955,0.0503817349672318,0.422975093126297,0.0503817349672318,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.471689403057098,0.0503817349672318,0.496309280395508,0.0423963218927383,0.496199429035187,0.0503817349672318,0.519972085952759,0.0423963218927383,0.521070837974548,0.0503817349672318,0.398403227329254,0.0423963218927383,0.398513078689575,0.0503817349672318,0.373663663864136,0.0503817349672318,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.667820632457733,0.657266318798065,0.667820632457733,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.667820632457733,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.667820632457733,0.54681271314621,0.667820632457733,0.545437753200531,0.734635889530182,
- 0.518715560436249,0.667820632457733,0.518399477005005,0.734635889530182,0.685388326644897,0.667820632457733,0.684114754199982,0.734635889530182,0.601998805999756,0.658266603946686,0.574460327625275,0.658266603946686,0.62956690788269,0.658266603946686,0.657390475273132,0.658266603946686,0.684145867824554,0.658266603946686,0.546688616275787,0.658266603946686,0.519969344139099,0.658266603946686,0.642517030239105,1.04308724403381,0.677416920661926,1.04308724403381,0.677223145961761,1.10367202758789,0.64238315820694,1.10367202758789,0.607813715934753,1.04308724403381,0.606949806213379,1.10367202758789,0.571490108966827,1.10367202758789,0.573152482509613,1.04308724403381,0.538320899009705,1.04308724403381,0.536589384078979,1.10367202758789,0.502937734127045,1.04308724403381,0.502539575099945,1.10367202758789,0.712831437587738,1.04308724403381,0.711227595806122,1.10367202758789,0.607817649841309,1.03442406654358,0.573137998580933,1.03442406654358,0.642534613609314,1.03442406654358,0.677573323249817,1.03442406654358,0.711266815662384,1.03442406654358,0.538164615631104,1.03442406654358,0.504516661167145,1.03442406654358,0.614832520484924,0.268934667110443,0.645257651805878,0.274752050638199,0.643192410469055,0.330597788095474,0.613238871097565,0.324780404567719,0.584578931331635,0.266349166631699,0.582775294780731,0.322194904088974,0.552288889884949,0.322194904088974,0.554361939430237,0.266349166631699,0.523996472358704,0.266349166631699,0.52228319644928,0.322194904088974,0.493150174617767,0.266349166631699,0.493009090423584,0.322194904088974,0.676131248474121,0.274752050638199,0.672427415847778,0.330597788095474,0.584582328796387,0.258363753557205,0.554349303245544,0.258363753557205,0.614847898483276,0.26094925403595,0.645393967628479,0.266766637563705,0.674767374992371,0.266766637563705,0.523860096931458,0.258363753557205,0.494526565074921,0.258363753557205,0.471689403057098,0.0503817349672318,0.496199429035187,0.0503817349672318,0.49606329202652,0.106227472424507,0.471595346927643,0.106227472424507,0.447317481040955,0.0503817349672318,
- 0.446710765361786,0.106227472424507,0.421807587146759,0.106227472424507,0.422975093126297,0.0503817349672318,0.398513078689575,0.0503817349672318,0.397296994924545,0.106227472424507,0.373663663864136,0.0503817349672318,0.373384028673172,0.106227472424507,0.521070837974548,0.0503817349672318,0.519944429397583,0.106227472424507,0.447320222854614,0.0423963218927383,0.42296490073204,0.0423963218927383,0.471701741218567,0.0423963218927383,0.496309280395508,0.0423963218927383,0.519972085952759,0.0423963218927383,0.398403227329254,0.0423963218927383,0.374772489070892,0.0423963218927383,0.767634093761444,0.336008876562119,0.794816732406616,0.336008876562119,0.7946657538414,0.377595514059067,0.767529785633087,0.377595514059067,0.740604639053345,0.336008876562119,0.739931702613831,0.377595514059067,0.712313055992126,0.377595514059067,0.713607847690582,0.336008876562119,0.686478495597839,0.336008876562119,0.685129821300507,0.377595514059067,0.658919453620911,0.336008876562119,0.658609330654144,0.377595514059067,0.822400152683258,0.336008876562119,0.821150898933411,0.377595514059067,0.740607678890228,0.330062359571457,0.71359658241272,0.330062359571457,0.767647743225098,0.330062359571457,0.794938504695892,0.330062359571457,0.821181535720825,0.330062359571457,0.686356663703918,0.330062359571457,0.660149216651917,0.330062359571457,0.629552960395813,0.676378607749939,0.657266318798065,0.676378607749939,0.657112419605255,0.734635889530182,0.629446625709534,0.734635889530182,0.601995706558228,0.676378607749939,0.601309597492218,0.734635889530182,0.573151767253876,0.734635889530182,0.574471831321716,0.676378607749939,0.54681271314621,0.676378607749939,0.545437753200531,0.734635889530182,0.518715560436249,0.676378607749939,0.518399477005005,0.734635889530182,0.685388326644897,0.676378607749939,0.684114754199982,0.734635889530182,0.574460327625275,0.667083919048309,0.601998805999756,0.667083919048309,0.62956690788269,0.667083919048309,0.657390475273132,0.667083919048309,0.684145867824554,0.667083919048309,0.519969344139099,0.667083919048309,
- 0.546688616275787,0.667083919048309,0.565638840198517,0.678219020366669,0.588474094867706,0.6914022564888,0.588474094867706,0.717772305011749,0.565638840198517,0.730956017971039,0.542803347110748,0.717772305011749,0.542803347110748,0.6914022564888,0.475185394287109,0.485674142837524,0.499995231628418,0.471349716186523,0.524808883666992,0.485674142837524,0.524808883666992,0.514325380325317,0.499995231628418,0.528650522232056,0.475185394287109,0.514325380325317
- }
- UVIndex: *4403 {
- a: 7,626,624,8,11,631,633,12,13,14,634,635,19,638,636,20,31,650,648,32,37,656,654,38,41,661,663,42,43,44,664,665,49,668,666,50,61,680,678,62,67,686,684,68,71,691,693,72,73,74,694,695,79,698,696,80,91,710,708,92,100,724,728,101,121,122,752,756,123,124,751,753,120,126,754,750,125,121,756,755,130,759,763,132,132,763,764,133,139,140,141,142,145,768,766,146,149,773,775,150,151,152,153,154,155,156,776,777,159,160,161,162,165,780,778,166,171,172,173,174,180,181,182,183,184,185,186,187,188,792,790,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,440,441,442,443,448,449,450,451,454,804,802,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,809,808,469,468,470,471,472,469,471,473,474,475,476,477,468,474,477,470,478,810,813,479,480,714,810,478,481,482,716,812,485,486,487,488,489,485,488,490,491,489,490,492,486,493,494,487,495,496,497,498,499,500,501,502,503,499,502,504,497,496,503,504,505,506,507,508,509,510,506,505,511,512,513,514,508,507,512,511,505,508,517,518,509,505,518,519,511,514,520,521,508,511,521,517,522,523,524,525,526,527,528,529,528,530,531,529,532,533,534,535,536,537,538,
- 539,539,538,542,543,546,739,821,539,543,543,542,547,548,544,549,550,545,551,546,543,548,548,547,552,553,549,554,555,550,556,551,548,553,553,552,530,528,554,522,525,555,527,556,553,528,559,826,809,469,472,560,561,475,474,474,468,808,827,560,562,822,814,564,565,566,537,536,536,819,829,565,568,569,570,571,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,576,579,593,594,595,596,597,598,599,600,601,602,603,595,594,601,600,604,605,606,607,605,604,597,596,607,606,608,609,610,611,612,613,614,615,616,617,618,623,619,0,621,622,2,1,629,625,4,3,627,628,6,5,632,630,10,9,641,637,16,15,639,640,18,17,644,642,22,21,647,643,24,23,645,646,26,25,653,649,28,27,651,652,30,29,659,655,34,33,657,658,36,35,662,660,40,39,671,667,46,45,669,670,48,47,674,672,52,51,677,673,54,53,675,676,56,55,683,679,58,57,681,682,60,59,689,685,64,63,687,688,66,65,692,690,70,69,701,697,76,75,699,700,78,77,704,702,82,81,707,703,84,83,705,706,86,85,713,709,88,87,711,712,90,89,718,715,103,717,718,103,719,723,96,97,720,719,97,94,722,720,94,93,723,721,95,96,726,724,100,102,727,725,99,98,728,727,98,101,729,730,105,104,730,732,106,105,731,733,107,108,733,729,104,107,745,737,127,116,734,749,109,110,736,735,114,115,741,742,119,746,738,111,742,743,118,119,747,746,111,112,743,744,117,118,748,747,112,113,744,745,116,117,749,748,113,109,758,757,128,129,757,761,131,128,764,765,134,133,765,758,129,134,762,760,135,136,771,767,137,138,769,770,143,144,774,772,147,148,783,779,157,158,781,782,163,164,786,784,167,168,789,785,169,170,787,788,175,176,620,791,177,178,179,793,794,434,435,798,796,436,437,801,797,438,439,799,800,444,445,807,803,446,447,805,806,452,453,812,716,480,481,483,813,811,484,479,815,817,515,516,818,820,540,541,821,819,536,539,820,740,544,545,540,795,825,557,558,817,822,562,515,814,816,563,564,831,818,541,567,828,830,572,573,824,823,574,575,832,833,834,835,836,837,838,839,838,837,840,841,842,843,844,845,834,836,839,835,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,1030,1033,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1040,1043,1045,1046,1044,1045,1047,1041,1048,1049,1042,1050,1051,1052,1053,1054,1055,1056,1057,1058,1054,1057,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1073,1081,1082,1074,1083,1076,1080,1084,1081,1085,1086,1082,1087,1083,1084,1088,1085,1089,1090,1086,1091,1087,1088,1092,1089,1060,1063,1090,1065,1091,1092,1066,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1098,1097,1103,1104,1105,1106,1100,1099,1104,1103,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,1195,1198,1200,1201,1202,1203,1204,1196,1201,1204,1197,1039,1032,1031,1036,1059,1052,1051,1058,1205,1206,1207,1208,1206,1209,1210,1207,1211,1212,1213,1214,1212,1205,1208,1213,1215,1216,1217,1218,1216,1094,1093,1217,1095,1219,1220,1096,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1221,1224,1234,1235,1236,1237,1238,1105,1235,1238,1106,1239,1072,1075,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,1349,1348,1354,1355,1353,1352,1356,1357,1355,1354,1358,1359,1357,1356,1347,1346,1359,1358,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,1380,1379,1380,1384,1385,1386,1387,1388,1389,1390,1379,1387,1390,1383,1391,1392,1393,1394,1395,1396,1393,1392,1397,1398,1399,1400,1394,1398,1397,1391,1391,1397,1384,1383,1397,1400,1385,1384,1395,1392,1390,1389,1390,1392,1391,1383,1401,1381,1380,1386,1402,1403,1388,1387,1402,1387,1379,1382,1404,1405,1406,1407,1408,1409,1410,1411,1412,1408,1411,1413,1414,1415,1416,1417,1409,1414,1417,1410,1418,1419,1420,1421,1422,1418,1421,1423,1422,1423,1424,1425,1426,1425,1424,1427,1428,1426,1427,1429,1419,1430,1431,1420,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1439,1438,1444,1445,1443,1442,1446,1447,1445,1444,1448,1449,1450,1451,1441,1440,1449,1448,1440,1439,1422,1425,1439,1443,1418,1422,1443,1445,1419,1418,1445,1447,1430,1419,1450,1449,1426,1428,1449,1440,1425,1426,1452,1453,1454,1455,1456,1452,1455,1457,1456,1457,1458,1459,1460,1459,1458,1461,1462,1460,1461,1463,1453,1464,1465,1454,1466,1456,1459,1467,1468,1452,1456,1466,1469,1453,1452,1468,1470,1464,1453,1469,1471,1460,1462,1472,1467,1459,1460,1471,1473,1474,1475,1476,1477,1473,1476,1478,1477,1478,1479,1480,1481,1480,1479,1482,1483,1481,1482,1484,1474,1485,1486,1475,1487,1477,1480,1488,1489,1473,1477,1487,1490,1474,1473,1489,1491,1485,1474,1490,1492,1481,1483,1493,1488,1480,1481,1492,1494,1495,1496,1497,
- 1498,1494,1497,1499,1498,1499,1500,1501,1502,1501,1500,1503,1504,1502,1503,1505,1495,1506,1507,1496,1508,1498,1501,1509,1510,1494,1498,1508,1511,1495,1494,1510,1512,1506,1495,1511,1513,1502,1504,1514,1509,1501,1502,1513,1515,1516,1517,1518,1519,1515,1518,1520,1519,1520,1521,1522,1523,1522,1521,1524,1525,1523,1524,1526,1516,1527,1528,1517,1529,1519,1522,1530,1531,1515,1519,1529,1532,1516,1515,1531,1533,1527,1516,1532,1534,1523,1525,1535,1530,1522,1523,1534,1536,1537,1538,1539,1540,1536,1539,1541,1540,1541,1542,1543,1544,1543,1542,1545,1546,1544,1545,1547,1537,1548,1549,1538,1550,1540,1543,1551,1552,1536,1540,1550,1553,1537,1536,1552,1554,1548,1537,1553,1555,1544,1546,1556,1551,1543,1544,1555,1557,1558,1559,1560,1561,1557,1560,1562,1561,1562,1563,1564,1565,1564,1563,1566,1567,1565,1566,1568,1558,1569,1570,1559,1571,1561,1564,1572,1573,1557,1561,1571,1574,1558,1557,1573,1575,1569,1558,1574,1576,1565,1567,1577,1572,1564,1565,1576,1578,1579,1580,1581,1582,1578,1581,1583,1582,1583,1584,1585,1586,1585,1584,1587,1588,1586,1587,1589,1579,1590,1591,1580,1592,1582,1585,1593,1594,1578,1582,1592,1595,1579,1578,1594,1596,1590,1579,1595,1597,1586,1588,1598,1593,1585,1586,1597,1599,1600,1601,1602,1603,1599,1602,1604,1603,1604,1605,1606,1607,1606,1605,1608,1609,1607,1608,1610,1600,1611,1612,1601,1613,1603,1606,1614,1615,1599,1603,1613,1616,1600,1599,1615,1617,1611,1600,1616,1618,1607,1609,1619,1614,1606,1607,1618,1620,1621,1622,1623,1624,1620,1623,1625,1624,1625,1626,1627,1628,1627,1626,1629,1630,1628,1629,1631,1621,1632,1633,1622,1634,1624,1627,1635,1636,1620,1624,1634,1637,1621,1620,1636,1638,1632,1621,1637,1639,1628,1630,1640,1635,1627,1628,1639,1641,1642,1643,1644,1645,1641,1644,1646,1645,1646,1647,1648,1649,1648,1647,1650,1651,1649,1650,1652,1642,1653,1654,1643,1655,1645,1648,1656,1657,1641,1645,1655,1658,1642,1641,1657,1659,1653,1642,1658,1660,1649,1651,1661,1656,1648,1649,1660,1662,1663,1664,1665,1666,1662,1665,1667,1666,1667,1668,1669,1670,1669,1668,1671,1672,1670,1671,1673,1663,1674,1675,1664,1676,1666,1669,1677,1678,1662,
- 1666,1676,1679,1663,1662,1678,1680,1674,1663,1679,1681,1670,1672,1682,1677,1669,1670,1681,1683,1684,1685,1686,1687,1683,1686,1688,1687,1688,1689,1690,1691,1690,1689,1692,1693,1691,1692,1694,1684,1695,1696,1685,1697,1687,1690,1698,1699,1683,1687,1697,1700,1684,1683,1699,1701,1695,1684,1700,1702,1691,1693,1703,1698,1690,1691,1702,1704,1705,1706,1707,1708,1704,1707,1709,1708,1709,1710,1711,1712,1711,1710,1713,1714,1712,1713,1715,1705,1716,1717,1706,1718,1708,1711,1719,1720,1704,1708,1718,1721,1705,1704,1720,1722,1716,1705,1721,1723,1712,1714,1724,1719,1711,1712,1723,1725,1726,1727,1728,1729,1725,1728,1730,1729,1730,1731,1732,1733,1732,1731,1734,1735,1733,1734,1736,1726,1737,1738,1727,1739,1740,1729,1732,1740,1741,1725,1729,1741,1742,1726,1725,1742,1743,1737,1726,1744,1745,1733,1735,1745,1739,1732,1733,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1752,1755,1757,1756,1757,1758,1759,1760,1759,1758,1761,1762,1760,1761,1763,1753,1764,1765,1754,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1773,1772,1778,1779,1777,1776,1780,1781,1779,1778,1782,1783,1784,1785,1775,1774,1783,1782,1774,1773,1756,1759,1773,1777,1752,1756,1777,1779,1753,1752,1779,1781,1764,1753,1784,1783,1760,1762,1783,1774,1759,1760,1786,1787,1788,1789,1790,1786,1789,1791,1790,1791,1792,1793,1794,1793,1792,1795,1796,1794,1795,1797,1787,1798,1799,1788,1800,1790,1793,1801,1802,1786,1790,1800,1803,1787,1786,1802,1804,1798,1787,1803,1805,1794,1796,1806,1801,1793,1794,1805,1807,1808,1809,1810,1811,1807,1810,1812,1811,1812,1813,1814,1815,1814,1813,1816,1817,1815,1816,1818,1808,1819,1820,1809,1821,1811,1814,1822,1823,1807,1811,1821,1824,1808,1807,1823,1825,1819,1808,1824,1826,1815,1817,1827,1822,1814,1815,1826,1828,1829,1830,1831,1832,1828,1831,1833,1832,1833,1834,1835,1836,1835,1834,1837,1838,1836,1837,1839,1829,1840,1841,1830,1842,1832,1835,1843,1844,1828,1832,1842,1845,1829,1828,1844,1846,1840,1829,1845,1847,1836,1838,1848,1843,1835,1836,1847,1849,1850,1851,1852,1853,1849,1852,1854,1853,1854,1855,1856,1857,1856,1855,1858,1859,1857,1858,1860,
- 1850,1861,1862,1851,1863,1853,1856,1864,1865,1849,1853,1863,1866,1850,1849,1865,1867,1861,1850,1866,1868,1857,1859,1869,1864,1856,1857,1868,1870,1871,1872,1873,1874,1870,1873,1875,1874,1875,1876,1877,1878,1877,1876,1879,1880,1878,1879,1881,1871,1882,1883,1872,1884,1874,1877,1885,1886,1870,1874,1884,1887,1871,1870,1886,1888,1882,1871,1887,1889,1878,1880,1890,1885,1877,1878,1889,1891,1892,1893,1894,1895,1891,1894,1896,1895,1896,1897,1898,1899,1898,1897,1900,1901,1899,1900,1902,1892,1903,1904,1893,1905,1895,1898,1906,1907,1891,1895,1905,1908,1892,1891,1907,1909,1903,1892,1908,1910,1899,1901,1911,1906,1898,1899,1910,1912,1913,1914,1915,1916,1912,1915,1917,1916,1917,1918,1919,1920,1919,1918,1921,1922,1920,1921,1923,1913,1924,1925,1914,1926,1916,1919,1927,1928,1912,1916,1926,1929,1913,1912,1928,1930,1924,1913,1929,1931,1920,1922,1932,1927,1919,1920,1931,1933,1934,1935,1936,1937,1933,1936,1938,1937,1938,1939,1940,1941,1940,1939,1942,1943,1941,1942,1944,1934,1945,1946,1935,1947,1937,1940,1948,1949,1933,1937,1947,1950,1934,1933,1949,1951,1945,1934,1950,1952,1941,1943,1953,1948,1940,1941,1952,1954,1955,1956,1957,1958,1954,1957,1959,1958,1959,1960,1961,1962,1961,1960,1963,1964,1962,1963,1965,1955,1966,1967,1956,1968,1958,1961,1969,1970,1954,1958,1968,1971,1955,1954,1970,1972,1966,1955,1971,1973,1962,1964,1974,1969,1961,1962,1973,1975,1976,1977,1978,1979,1975,1978,1980,1979,1980,1981,1982,1983,1982,1981,1984,1985,1983,1984,1986,1976,1987,1988,1977,1989,1979,1982,1990,1991,1975,1979,1989,1992,1976,1975,1991,1993,1987,1976,1992,1994,1983,1985,1995,1990,1982,1983,1994,1996,1997,1998,1999,2000,1996,1999,2001,2000,2001,2002,2003,2004,2003,2002,2005,2006,2004,2005,2007,1997,2008,2009,1998,2010,2000,2003,2011,2012,1996,2000,2010,2013,1997,1996,2012,2014,2008,1997,2013,2015,2004,2006,2016,2011,2003,2004,2015,2017,2018,2019,2020,2021,2017,2020,2022,2021,2022,2023,2024,2025,2024,2023,2026,2027,2025,2026,2028,2018,2029,2030,2019,2031,2021,2024,2032,2033,2017,2021,2031,2034,2018,2017,2033,2035,2029,2018,2034,2036,2025,2027,2037,2032,2024,
- 2025,2036,2038,2039,2040,2041,2042,2038,2041,2043,2042,2043,2044,2045,2046,2045,2044,2047,2048,2046,2047,2049,2039,2050,2051,2040,2052,2042,2045,2053,2054,2038,2042,2052,2055,2039,2038,2054,2056,2050,2039,2055,2057,2046,2048,2058,2053,2045,2046,2057,2059,2060,2061,2062,2063,2059,2062,2064,2063,2064,2065,2066,2067,2066,2065,2068,2069,2067,2068,2070,2060,2071,2072,2061,2073,2074,2063,2066,2074,2075,2059,2063,2075,2076,2060,2059,2076,2077,2071,2060,2078,2079,2067,2069,2079,2073,2066,2067,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2086,2089,2091,2090,2091,2092,2093,2094,2093,2092,2095,2096,2094,2095,2097,2087,2098,2099,2088,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2107,2106,2112,2113,2111,2110,2114,2115,2113,2112,2116,2117,2118,2119,2109,2108,2117,2116,2108,2107,2090,2093,2107,2111,2086,2090,2111,2113,2087,2086,2113,2115,2098,2087,2118,2117,2094,2096,2117,2108,2093,2094,2120,2121,2122,2123,2124,2120,2123,2125,2124,2125,2126,2127,2128,2127,2126,2129,2130,2128,2129,2131,2121,2132,2133,2122,2134,2124,2127,2135,2136,2120,2124,2134,2137,2121,2120,2136,2138,2132,2121,2137,2139,2128,2130,2140,2135,2127,2128,2139,2141,2142,2143,2144,2145,2141,2144,2146,2145,2146,2147,2148,2149,2148,2147,2150,2151,2149,2150,2152,2142,2153,2154,2143,2155,2145,2148,2156,2157,2141,2145,2155,2158,2142,2141,2157,2159,2153,2142,2158,2160,2149,2151,2161,2156,2148,2149,2160,2162,2163,2164,2165,2166,2162,2165,2167,2166,2167,2168,2169,2170,2169,2168,2171,2172,2170,2171,2173,2163,2174,2175,2164,2176,2166,2169,2177,2178,2162,2166,2176,2179,2163,2162,2178,2180,2174,2163,2179,2181,2170,2172,2182,2177,2169,2170,2181,2183,2184,2185,2186,2187,2183,2186,2188,2187,2188,2189,2190,2191,2190,2189,2192,2193,2191,2192,2194,2184,2195,2196,2185,2197,2187,2190,2198,2199,2183,2187,2197,2200,2184,2183,2199,2201,2195,2184,2200,2202,2191,2193,2203,2198,2190,2191,2202,2204,2205,2206,2207,2208,2204,2207,2209,2208,2209,2210,2211,2212,2211,2210,2213,2214,2212,2213,2215,2205,2216,2217,2206,2218,2208,2211,2219,2220,2204,2208,2218,2221,2205,2204,2220,
- 2222,2216,2205,2221,2223,2212,2214,2224,2219,2211,2212,2223,2225,2226,2227,2228,2229,2225,2228,2230,2229,2230,2231,2232,2233,2232,2231,2234,2235,2233,2234,2236,2226,2237,2238,2227,2239,2229,2232,2240,2241,2225,2229,2239,2242,2226,2225,2241,2243,2237,2226,2242,2244,2233,2235,2245,2240,2232,2233,2244,2246,2247,2248,2249,2250,2246,2249,2251,2250,2251,2252,2253,2254,2253,2252,2255,2256,2254,2255,2257,2247,2258,2259,2248,2260,2250,2253,2261,2262,2246,2250,2260,2263,2247,2246,2262,2264,2258,2247,2263,2265,2254,2256,2266,2261,2253,2254,2265,2267,2268,2269,2270,2271,2267,2270,2272,2271,2272,2273,2274,2275,2274,2273,2276,2277,2275,2276,2278,2268,2279,2280,2269,2281,2271,2274,2282,2283,2267,2271,2281,2284,2268,2267,2283,2285,2279,2268,2284,2286,2275,2277,2287,2282,2274,2275,2286,2288,2289,2290,2291,2292,2288,2291,2293,2292,2293,2294,2295,2296,2295,2294,2297,2298,2296,2297,2299,2289,2300,2301,2290,2302,2292,2295,2303,2304,2288,2292,2302,2305,2289,2288,2304,2306,2300,2289,2305,2307,2296,2298,2308,2303,2295,2296,2307,2309,2310,2311,2312,2313,2309,2312,2314,2313,2314,2315,2316,2317,2316,2315,2318,2319,2317,2318,2320,2310,2321,2322,2311,2323,2313,2316,2324,2325,2309,2313,2323,2326,2310,2309,2325,2327,2321,2310,2326,2328,2317,2319,2329,2324,2316,2317,2328,2330,2331,2332,2333,2334,2330,2333,2335,2334,2335,2336,2337,2338,2337,2336,2339,2340,2338,2339,2341,2331,2342,2343,2332,2344,2334,2337,2345,2346,2330,2334,2344,2347,2331,2330,2346,2348,2342,2331,2347,2349,2338,2340,2350,2345,2337,2338,2349,2351,2352,2353,2354,2355,2351,2354,2356,2355,2356,2357,2358,2359,2358,2357,2360,2361,2359,2360,2362,2352,2363,2364,2353,2365,2355,2358,2366,2367,2351,2355,2365,2368,2352,2351,2367,2369,2363,2352,2368,2370,2359,2361,2371,2366,2358,2359,2370,2372,2373,2374,2375,2376,2372,2375,2377,2376,2377,2378,2379,2380,2379,2378,2381,2382,2380,2381,2383,2373,2384,2385,2374,2386,2376,2379,2387,2388,2372,2376,2386,2389,2373,2372,2388,2390,2384,2373,2389,2391,2380,2382,2392,2387,2379,2380,2391,2393,2394,2395,2396,2397,2393,2396,2398,2397,2398,2399,2400,2401,2400,
- 2399,2402,2403,2401,2402,2404,2394,2405,2406,2395,2407,2408,2397,2400,2408,2409,2393,2397,2409,2410,2394,2393,2410,2411,2405,2394,2412,2413,2401,2403,2413,2407,2400,2401,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2420,2423,2425,2424,2425,2426,2427,2428,2427,2426,2429,2430,2428,2429,2431,2421,2432,2433,2422,2434,2435,2436,2437,2438,2439,2435,2434,2440,2441,2439,2438,2442,2443,2441,2440,2444,2445,2446,2447,2437,2436,2445,2444,2448,2449,2450,2451,2452,2448,2451,2453,2452,2453,2454,2455,2456,2455,2454,2457,2458,2456,2457,2459,2449,2460,2461,2450,2462,2452,2455,2463,2464,2448,2452,2462,2465,2449,2448,2464,2466,2460,2449,2465,2467,2456,2458,2468,2463,2455,2456,2467,2469,2470,2471,2472,2473,2469,2472,2474,2473,2474,2475,2476,2477,2476,2475,2478,2479,2477,2478,2480,2470,2481,2482,2471,2483,2473,2476,2484,2485,2469,2473,2483,2486,2470,2469,2485,2487,2481,2470,2486,2488,2477,2479,2489,2484,2476,2477,2488,2490,2491,2492,2493,2494,2490,2493,2495,2494,2495,2496,2497,2498,2497,2496,2499,2500,2498,2499,2501,2491,2502,2503,2492,2504,2494,2497,2505,2506,2490,2494,2504,2507,2491,2490,2506,2508,2502,2491,2507,2509,2498,2500,2510,2505,2497,2498,2509,2511,2512,2513,2514,2515,2511,2514,2516,2515,2516,2517,2518,2519,2518,2517,2520,2521,2519,2520,2522,2512,2523,2524,2513,2525,2515,2518,2526,2527,2511,2515,2525,2528,2512,2511,2527,2529,2523,2512,2528,2530,2519,2521,2531,2526,2518,2519,2530,2532,2533,2534,2535,2536,2532,2535,2537,2536,2537,2538,2539,2540,2539,2538,2541,2542,2540,2541,2543,2533,2544,2545,2534,2546,2536,2539,2547,2548,2532,2536,2546,2549,2533,2532,2548,2550,2544,2533,2549,2551,2540,2542,2552,2547,2539,2540,2551,2553,2554,2555,2556,2557,2553,2556,2558,2557,2558,2559,2560,2561,2560,2559,2562,2563,2561,2562,2564,2554,2565,2566,2555,2567,2557,2560,2568,2569,2553,2557,2567,2570,2554,2553,2569,2571,2565,2554,2570,2572,2561,2563,2573,2568,2560,2561,2572,2574,2575,2576,2577,2578,2574,2577,2579,2578,2579,2580,2581,2582,2581,2580,2583,2584,2582,2583,2585,2575,2586,2587,2576,2588,2589,2578,2581,2589,2590,2574,2578,2590,2591,
- 2575,2574,2591,2592,2586,2575,2593,2594,2582,2584,2594,2588,2581,2582,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2436,2435,2424,2427,2435,2439,2420,2424,2439,2441,2421,2420,2441,2443,2432,2421,2446,2445,2428,2430,2445,2436,2427,2428
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *2437 {
- a: 0,1,0,1,1,1,0,1,1,1,0,0,1,1,1,0,1,1,1,0,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,0,1,1,1,0,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,1,1,1,1,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,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,
- 0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1095 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,2,2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509539552, "Geometry::", "Mesh" {
- Vertices: *642 {
- a: -561.2919921875,70.375732421875,-456.44921875,-561.2919921875,70.375732421875,-476.8828125,-548.5341796875,41.4224853515625,-456.44921875,-548.5341796875,41.4224853515625,-476.8828125,0,746.99365234375,0,0,733.25146484375,0,-621.5908203125,6.8597412109375,0,-614.857421875,1.202392578125,0,-561.2919921875,70.375732421875,-56.44921875,-561.2919921875,70.375732421875,-76.8828125,-561.2919921875,70.375732421875,-323.1171875,-561.2919921875,70.375732421875,-343.5498046875,-216.693359375,475.233520507813,0,-196.646484375,499.095458984375,0,-399.1416015625,257.907348632813,0,-379.09375,281.768798828125,0,-573.8505859375,55.0053100585938,0,-551.5361328125,36.2920532226563,0.0009765625,-553.802734375,78.867431640625,0,-574.255859375,52.2416381835938,-187.0458984375,-574.255859375,52.2416381835938,-212.9541015625,-548.5341796875,41.4224853515625,-56.44921875,-548.5341796875,41.4224853515625,-76.8828125,-549.4921875,42.2013549804688,-323.1171875,-549.4921875,42.2013549804688,-343.5498046875,-193.794921875,455.993530273438,0,-173.7451171875,479.855346679688,0,-374.794921875,237.453674316406,-0.0166015625,-354.748046875,261.3154296875,-0.0166015625,-532.662109375,61.1392211914063,0.0009765625,-548.96875,12.2135009765625,-187.0458984375,-548.96875,12.2135009765625,-212.9541015625,-630.8271484375,-4.13885498046875,0,-636.328125,0.48150634765625,0,3.693359375,698.7314453125,-56.66796875,1.3115234375,666.916015625,-187.3662109375,0,733.25146484375,-187.056640625,0,733.25146484375,-56.455078125,0,733.25146484375,-76.888671875,3.693359375,698.7314453125,-77.1015625,0,746.99365234375,0,0,758.1650390625,0,-585.4560546875,36.593994140625,0,-585.3623046875,-0.065673828125,0,-548.408203125,36.593994140625,0,-548.408203125,0.02490234375,0,-626.3701171875,-42.3463745117188,0,-595.810546875,1.4066162109375,0,-595.810546875,-42.3463745117188,0,-647.2412109375,1.4066162109375,0,-621.5908203125,6.8597412109375,-821.595703125,-256.4482421875,430.39111328125,-456.4521484375,-276.880859375,406.259643554688,-476.8857421875,-276.986328125,364.64208984375,-476.990234375,
- -256.560546875,388.9541015625,-456.564453125,0,733.25146484375,-200.00390625,-614.857421875,1.202392578125,-814.861328125,-12.958984375,717.884033203125,-212.962890625,-13.1943359375,649.657104492188,-213.19921875,-193.794921875,455.993530273438,-393.798828125,-216.693359375,475.233520507813,-416.697265625,-196.646484375,499.095458984375,-396.650390625,-173.7451171875,479.855346679688,-373.75,-374.794921875,237.45361328125,-574.798828125,-399.1416015625,257.907348632813,-599.146484375,-379.09375,281.768798828125,-579.09765625,-354.748046875,261.3154296875,-554.7529296875,-551.5361328125,36.2920532226563,-751.541015625,-573.8505859375,55.0053100585938,-773.8544921875,-553.802734375,78.867431640625,-753.8076171875,-532.662109375,61.1392211914063,-732.666015625,-123.08984375,587.885131835938,-323.09375,-143.521484375,563.755493164063,-343.525390625,-143.2041015625,525.693725585938,-343.208984375,-630.830078125,-4.13800048828125,-830.833984375,-636.330078125,0.481689453125,-836.333984375,-122.80078125,549.97412109375,-322.8046875,0,746.99365234375,-200.00390625,0,733.25146484375,-200.00390625,1.3115234375,666.916015625,-198.693359375,0,746.99365234375,-200.00390625,0,758.1650390625,-200.00390625,-585.4560546875,36.5939331054688,-785.4609375,-585.3623046875,-0.065673828125,-785.3662109375,-548.408203125,36.593994140625,-748.412109375,-548.408203125,0.02490234375,-748.412109375,-626.3701171875,-42.3463745117188,-826.3740234375,-595.810546875,1.4066162109375,-795.814453125,-595.810546875,-42.3463745117188,-795.8154296875,-647.2421875,1.4066162109375,-847.24609375,-561.291748046875,70.375732421875,-584.04296875,-561.291748046875,70.375732421875,-604.4755859375,-552.24853515625,44.5200805664063,-584.04296875,-552.24853515625,44.5200805664063,-604.4755859375,-403.984375,221.414184570313,-585.205078125,-404.93896484375,256.787963867188,-584.9072265625,-427.68310546875,230.011779785156,-606.138671875,-426.725830078125,194.640258789063,-606.4345703125,-343.55078125,70.375732421875,-761.2919921875,-323.1171875,70.375732421875,-761.2919921875,
- -76.8828125,70.375732421875,-761.2919921875,-56.4501953125,70.375732421875,-761.2919921875,-212.9541015625,52.2416381835938,-774.255859375,-187.0458984375,52.2416381835938,-774.255859375,-343.55078125,41.4224853515625,-748.5341796875,-323.1171875,41.4224853515625,-748.5341796875,-76.8828125,42.2013549804688,-749.4921875,-56.4501953125,42.2013549804688,-749.4921875,-212.9541015625,12.2135009765625,-748.96875,-187.0458984375,12.2135009765625,-748.96875,-621.587524414063,6.8597412109375,-821.5908203125,0.00927734375,733.240966796875,-200.0087890625,-614.854248046875,1.202392578125,-814.857421875,-212.947326660156,480.714111328125,-412.94921875,-187.039916992188,511.437622070313,-387.04296875,-186.880126953125,443.00927734375,-386.8828125,-193.792053222656,455.99365234375,-393.794921875,-216.690185546875,475.233520507813,-416.693359375,-196.643432617188,499.095458984375,-396.646484375,-173.741821289063,479.855346679688,-373.7451171875,-374.792053222656,237.453674316406,-574.794921875,-399.138305664063,257.907348632813,-599.1416015625,-379.090698242188,281.768798828125,-579.09375,-354.74560546875,261.3154296875,-554.748046875,-551.533203125,36.2920532226563,-751.5361328125,-573.847595214844,55.0053100585938,-773.8505859375,-553.799987792969,78.867431640625,-753.802734375,-532.659240722656,61.1392211914063,-732.662109375,-76.9080810546875,642.420776367188,-276.9111328125,-56.479248046875,666.547241210938,-256.4814453125,-343.548522949219,327.523620605469,-543.55078125,-323.11474609375,351.65478515625,-523.1181640625,-323.02783203125,309.835815429688,-523.03125,-56.864013671875,628.436889648438,-256.8671875,-630.82421875,-4.1387939453125,-830.8271484375,-636.325012207031,0.48150634765625,-836.328125,-343.469604492188,285.50439453125,-543.47265625,-77.228515625,604.2021484375,-277.2314453125,-212.758422851563,412.220397949219,-412.76171875,0.00927734375,746.983154296875,-200.0087890625,0.00927734375,758.154541015625,-200.0078125,-585.453369140625,36.593994140625,-785.4560546875,-585.359313964844,-0.065673828125,-785.3623046875,
- -548.405456542969,36.593994140625,-748.408203125,-548.405456542969,0.02490234375,-748.408203125,-626.366821289063,-42.3463745117188,-826.3701171875,-595.80712890625,1.4066162109375,-795.810546875,-595.807250976563,-42.3463745117188,-795.810546875,-647.238159179688,1.4066162109375,-847.2421875,0.0120849609375,6.8597412109375,-821.5908203125,0.0120849609375,455.99365234375,-393.794921875,0.0233154296875,237.453674316406,-574.794921875,0.0120849609375,36.2920532226563,-751.5361328125,0.0120849609375,-4.13812255859375,-830.8291015625,0.0120849609375,0.48162841796875,-836.330078125,0.0120849609375,-0.065673828125,-785.3623046875,0.0120849609375,36.593994140625,-748.408203125,0.0120849609375,0.02490234375,-748.408203125,0.0120849609375,1.4066162109375,-795.810546875,0.0120849609375,1.4066162109375,-847.2421875,0.0120849609375,1.202392578125,-814.857421875,0.0120849609375,475.233520507813,-416.693359375,0.0120849609375,499.095458984375,-396.646484375,0.0120849609375,479.855346679688,-373.7451171875,0.0120849609375,257.907348632813,-599.1416015625,0.0120849609375,281.768798828125,-579.09375,0.0233154296875,261.3154296875,-554.748046875,0.0120849609375,55.0053100585938,-773.849609375,0.0120849609375,78.867431640625,-753.802734375,0.0120849609375,61.1392822265625,-732.662109375,0.0120849609375,36.593994140625,-785.4560546875,0.0120849609375,-42.3463745117188,-826.3701171875,0.0120849609375,-42.3463134765625,-795.810546875,-641.43359375,12.1337890625,-841.431640625,-646.328125,7.265869140625,-830.7607421875,-640.552734375,-2.470458984375,-824.984375,-629.880859375,-7.338623046875,-829.8798828125,-624.986328125,-2.470458984375,-840.55078125,-630.76171875,7.265869140625,-846.328125,-5.4664306640625,766.008422851563,-205.466796875,-10.1417236328125,761.35888671875,-195.275390625,-4.6253662109375,752.060668945313,-189.7587890625,5.566162109375,747.411743164063,-194.4326171875,10.2403564453125,752.060668945313,-204.6240234375,4.7239990234375,761.35888671875,-210.140625,0.0009765625,767.908325195313,-0.4931640625,11.0078125,761.553588867188,-0.4931640625,
- 11.0078125,748.844360351563,-0.4931640625,0.0009765625,742.489868164063,-0.4931640625,-11.005859375,748.844360351563,-0.4931640625,-11.005859375,761.553588867188,-0.4931640625,0.0010986328125,767.918701171875,-198.9375,11.041015625,761.544189453125,-198.9365234375,11.041015625,748.795166015625,-198.9365234375,0.0010986328125,742.421142578125,-198.9375,-11.0400390625,748.795166015625,-198.9375,-11.0400390625,761.544189453125,-198.9375,-28.4697265625,708.068603515625,0,28.4697265625,708.068603515625,0,-28.4697265625,641.702880859375,0,28.4697265625,641.702880859375,0,-28.4697265625,708.068603515625,-227.1328125,28.4697265625,708.068603515625,-227.1328125,-28.4697265625,641.702880859375,-280.6220703125,28.4697265625,641.702880859375,-280.6220703125,-543.28564453125,4.29608154296875,-770.48046875,-557.94921875,37.5536499023438,-785.14453125,-583.484375,37.5536499023438,-759.609375,-568.82080078125,4.29608154296875,-744.9453125,0,622.237060546875,-222.8779296875,0.0087890625,704.548217773438,-223.6455078125,0.0087890625,733.265014648438,-171.419921875,0,650.26025390625,-170.55078125,0,746.99365234375,-200
- }
- PolygonVertexIndex: *511 {
- a: 6,50,56,-8,0,2,54,-52,1,0,51,-53,3,1,52,-54,2,3,53,-55,32,74,80,-41,6,7,5,-5,17,29,18,-17,26,13,12,-26,28,15,14,-28,8,21,34,-38,9,8,37,-39,22,9,38,-40,21,22,39,-35,33,32,40,-42,36,78,57,20,-20,30,35,36,-20,23,76,71,-11,37,34,39,-39,44,42,43,-46,46,48,47,-50,56,55,5,-8,62,61,13,-27,66,65,15,-29,70,69,18,-30,75,74,32,-34,80,81,41,-41,83,85,45,-44,84,82,42,-45,89,86,46,-50,87,89,49,-48,86,88,48,-47,57,58,31,-21,59,62,26,-26,60,59,25,-13,61,60,12,-14,63,66,28,-28,64,63,27,-15,65,64,14,-16,68,67,17,-17,69,68,16,-19,67,70,29,-18,72,73,24,-12,81,75,33,-42,58,79,35,30,-32,73,76,23,-25,71,72,11,-11,55,77,4,-6,82,83,43,-43,85,84,44,-46,88,87,47,-49,90,92,94,-96,91,90,95,-97,93,91,96,-98,92,93,97,-95,98,104,136,-131,99,98,130,-132,105,99,131,-133,104,105,132,-137,108,138,113,-103,106,137,128,-101,112,110,149,-161,114,115,109,-104,129,133,107,-102,113,114,103,-103,115,138,108,-110,133,137,106,-108,128,129,101,-101,140,154,-136,160,111,-113,163,162,118,-120,166,165,122,-124,169,168,126,-128,154,153,134,-136,155,157,144,-143,156,170,141,-144,159,171,145,-149,158,159,148,-147,171,172,147,-146,150,163,119,-117,161,150,116,-118,162,161,117,-119,151,166,123,-121,164,151,120,-122,165,164,121,-123,167,152,124,-126,168,167,125,-127,152,169,127,-125,170,155,142,-142,157,156,143,-145,172,158,146,-148,153,139,-135,183,184,179,180,181,-183,178,173,179,-185,173,174,180,-180,174,175,181,-181,175,176,182,-182,176,177,183,-183,177,178,184,-184,190,185,191,-197,185,186,192,-192,186,187,193,-193,187,188,194,-194,188,189,195,-195,189,190,196,-196,185,190,189,188,187,-187,192,193,194,195,196,-192,173,178,177,176,175,-175,198,202,201,-198,203,204,200,-200,200,204,202,-199,199,200,198,-198,201,203,199,-198,201,202,204,-204,210,209,205,-207,211,210,206,-208,208,212,211,-208,209,212,208,-206,209,210,211,-213,111,160,149,-214,162,163,150,-162,165,166,151,-165,168,169,152,-168,153,154,140,-140,170,156,157,-156,158,172,171,-160
- }
- Edges: *318 {
- a: 0,12,4,8,16,7,11,15,25,27,26,3,48,40,44,171,72,188,34,33,32,38,37,36,28,31,30,29,63,131,68,35,39,52,184,180,64,62,130,136,148,158,71,172,43,47,51,170,20,56,104,41,65,23,59,191,46,50,42,54,66,178,58,22,78,112,77,79,80,116,110,124,81,120,84,83,82,5,86,2,140,90,92,152,94,96,160,98,100,69,60,106,114,118,126,85,1,89,93,97,6,10,14,18,21,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,61,177,182,186,70,190,194,198,202,214,206,210,218,209,213,217,207,220,208,212,216,230,222,226,256,245,272,260,252,241,234,268,264,240,253,251,244,257,225,229,233,255,247,319,331,341,293,275,223,242,238,299,303,297,311,307,246,282,286,290,365,294,298,302,306,310,314,250,318,322,326,330,334,338,342,346,350,224,228,232,236,254,276,258,239,262,266,270,243,354,358,362,278,249,323,281,283,335,285,287,343,289,291,301,305,313,248,277,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,274,352,356,360,364,373,377,381,385,389,393,374,378,369,382,370,386,371,390,372,376,367,368,397,401,405,409,413,417,398,402,403,406,407,410,411,414,415,400,419,399,454,442,450,445,444,441,439,446,440,448,455,443,464,477,466,465,470,469,474,471,463,467,472,475,486,485,501
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1533 {
- a: -0.643277525901794,-0.7656329870224,0,-0.643277585506439,-0.7656329870224,0,-0.643277645111084,-0.765633046627045,0,-0.643277525901794,-0.7656329870224,0,0.00172324827872217,-0.0012859950074926,0.999997735023499,0.00172324851155281,-0.00128599489107728,0.999997735023499,0.00172324827872217,-0.00128599489107728,0.999997675418854,0.00172324862796813,-0.0012859950074926,0.999997675418854,-0.763160347938538,0.646209061145782,-1.42558074003318e-005,-0.763160407543182,0.646209061145782,-1.42558101288159e-005,-0.763160407543182,0.646209061145782,-1.42558101288159e-005,-0.763160407543182,0.646209061145782,-1.42558092193212e-005,-0.00161197036504745,0.00119177380111068,-0.999998033046722,-0.00161197001580149,0.00119177356828004,-0.999997973442078,-0.00161197048146278,0.00119177391752601,-0.999998033046722,-0.00161197036504745,0.00119177356828004,-0.999997973442078,0.765653848648071,-0.643252909183502,-7.41929534342489e-006,0.765653789043427,-0.643252909183502,-7.41929534342489e-006,0.765653789043427,-0.643252849578857,-7.41929579817224e-006,0.765653848648071,-0.643252909183502,-7.41929670766694e-006,0.765766799449921,-0.643118321895599,-2.7197090730624e-006,0.765766799449921,-0.643118262290955,-2.71970884568873e-006,0.765766799449921,-0.643118262290955,-2.71970884568873e-006,0.765766859054565,-0.643118321895599,-2.7197090730624e-006,0,0,1,0,0,1,0,0,1,0,0,1,-2.69121246674331e-005,2.1504529286176e-005,1,-2.69121264864225e-005,2.15045311051654e-005,1,-2.69121246674331e-005,2.1504529286176e-005,1,-2.69121228484437e-005,2.1504529286176e-005,1,0,0,1,0,0,1,0,0,1,0,0,1,0.000399746146285906,-0.000335847289534286,0.999999821186066,0.000399746117182076,-0.000335847347741947,0.99999988079071,0.000399746146285906,-0.000335847347741947,0.99999988079071,0.000399746146285906,-0.000335847347741947,0.999999821186066,0.00319609115831554,-0.00252562528476119,0.999991655349731,0.00319609139114618,-0.00252562551759183,0.999991714954376,0.00319609139114618,-0.00252562528476119,0.999991655349731,0.00319609115831554,-0.00252562551759183,0.999991714954376,
- -0.763160765171051,0.646208643913269,0,-0.763160824775696,0.646208643913269,0,-0.763160765171051,0.646208643913269,0,-0.763160824775696,0.646208643913269,0,-0.00319609139114618,0.00252562551759183,-0.999991714954376,-0.00319609115831554,0.00252562528476119,-0.999991655349731,-0.00319609115831554,0.00252562551759183,-0.999991714954376,-0.00319609139114618,0.00252562528476119,-0.999991655349731,0.765654444694519,-0.643252074718475,0,0.765654504299164,-0.643252074718475,0,0.765654444694519,-0.643252074718475,0,0.765654504299164,-0.643252074718475,0,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,-0.764483153820038,0.644643664360046,7.48966658647987e-006,-0.764483213424683,0.644643664360046,7.48966613173252e-006,-0.764483153820038,0.644643604755402,7.48966567698517e-006,-0.764483213424683,0.644643723964691,7.48966613173252e-006,-0.764483213424683,0.644643664360046,7.48966613173252e-006,0.00289243157021701,-0.00218718498945236,0.999993503093719,0.00289243087172508,-0.00218718475662172,0.99999338388443,0.00289243133738637,-0.00218718475662172,0.999993503093719,0.00289243110455573,-0.00218718475662172,0.999993443489075,-0.00458023231476545,0.00353613984771073,0.999983310699463,-0.00458023231476545,0.00353613961488009,0.999983251094818,-0.00458023278042674,0.00353614031337202,0.999983370304108,-0.00458023184910417,0.00353613961488009,0.999983251094818,0.994325041770935,0.106384620070457,0,0.99432510137558,0.106384634971619,0,0.994325041770935,0.106384620070457,0,0.99432510137558,0.106384634971619,0,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.76573783159256,-0.643153011798859,0,0.76573771238327,-0.643152892589569,0,0.76573771238327,-0.643152892589569,0,0.76573771238327,-0.643152892589569,0,0.643250107765198,0.765656173229218,0,0.643250107765198,0.765656113624573,0,0.643250107765198,0.765656113624573,0,0.643250107765198,0.765656113624573,0,0.643247246742249,0.765658617019653,0,0.643247306346893,0.765658557415009,0,0.643247187137604,0.765658497810364,0,0.643247187137604,0.765658497810364,0,0.642556130886078,0.766238570213318,0,
- 0.642556190490723,0.766238510608673,0,0.642556190490723,0.766238510608673,0,0.642556190490723,0.766238629817963,0,-0.643165171146393,-0.765727400779724,1.40702491080447e-006,-0.643165290355682,-0.765727460384369,1.40702513817814e-006,-0.643165171146393,-0.765727460384369,1.40702491080447e-006,-0.643165290355682,-0.765727460384369,1.4070250244913e-006,1,0,0,1,0,0,1,0,0,1,0,0,0.00245103612542152,-0.999997019767761,0,0.00245103612542152,-0.999996960163116,0,0.00245103612542152,-0.999997079372406,0,0.00245103612542152,-0.999997079372406,0,-8.03837906460103e-007,1,-3.86660872209177e-008,-8.03837906460103e-007,1,-3.8666083668204e-008,-8.03837963303522e-007,1,-3.8666083668204e-008,-8.03837963303522e-007,1,-3.8666083668204e-008,-0.90256530046463,-0.430552929639816,5.26622443430824e-007,-0.902565240859985,-0.430552989244461,5.26622500274243e-007,-0.902565360069275,-0.430552989244461,5.26622500274243e-007,-0.902565240859985,-0.430552929639816,5.26622386587405e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.00221544387750328,0.00167036626953632,-0.999996185302734,-0.00221544387750328,0.00167036603670567,-0.999996185302734,-0.00221544364467263,0.00167036615312099,-0.99999612569809,-0.00221544387750328,0.00167036615312099,-0.99999612569809,0.765611946582794,-0.643302619457245,0,0.765611946582794,-0.643302619457245,0,0.765612006187439,-0.64330267906189,0,0.765612006187439,-0.64330267906189,0,-0.643296003341675,-0.765617549419403,0,-0.64329606294632,-0.765617609024048,0,-0.64329606294632,-0.765617549419403,0,-0.64329606294632,-0.765617549419403,0,-0.765659868717194,0.64324563741684,0,-0.765659868717194,0.64324563741684,0,-0.765659809112549,0.64324563741684,0,-0.765659809112549,0.64324563741684,0,0.765657901763916,-0.643248021602631,2.77420486582969e-008,0.765657842159271,-0.643248021602631,2.774204688194e-008,0.765657901763916,-0.643247961997986,2.77420486582969e-008,0.765657901763916,-0.643247961997986,2.77420486582969e-008,-0.643237948417664,-0.765666425228119,5.23224343851325e-008,-0.643237888813019,-0.765666425228119,5.23224272797052e-008,
- -0.643237829208374,-0.765666365623474,5.23224343851325e-008,-0.643237829208374,-0.765666425228119,5.23224308324188e-008,-0.765638172626495,0.643271565437317,0,-0.765638053417206,0.643271505832672,0,-0.765638113021851,0.643271565437317,0,-0.765638113021851,0.643271565437317,0,-0.642570197582245,-0.766226768493652,0,-0.64257025718689,-0.766226828098297,0,-0.642570197582245,-0.766226828098297,0,-0.64257025718689,-0.766226768493652,0,-0.765647172927856,0.643260657787323,0,-0.765647172927856,0.643260717391968,0,-0.765647232532501,0.643260776996613,0,-0.765647232532501,0.643260776996613,0,0.796313762664795,-0.60488373041153,0,0.796313762664795,-0.604883790016174,0,0.79631382226944,-0.604883849620819,0,0.79631382226944,-0.604883849620819,0,0.00501820165663958,-0.00385891157202423,-0.999979972839355,0.00501820165663958,-0.00385891227051616,-0.999979972839355,0.00501820165663958,-0.00385891180485487,-0.999979972839355,0.00501820165663958,-0.00385891180485487,-0.999979972839355,-0.765767395496368,0.643117606639862,1.55427517256612e-006,-0.765767395496368,0.643117547035217,1.55427505887928e-006,-0.765767395496368,0.643117487430573,1.55427494519245e-006,-0.765767455101013,0.643117606639862,1.55427517256612e-006,0.76551479101181,-0.643418371677399,4.26816404797137e-006,0.765514731407166,-0.643418312072754,4.26816359322402e-006,0.76551479101181,-0.643418312072754,4.26816404797137e-006,0.765514731407166,-0.643418431282043,4.26816359322402e-006,0.765514850616455,-0.643418371677399,4.26816404797137e-006,0.765584051609039,-0.643335819244385,0,0.765584051609039,-0.643335819244385,0,0.765584051609039,-0.643335819244385,0,0.765584051609039,-0.643335819244385,0,-0.763161420822144,0.646207928657532,-3.46403453477251e-006,-0.763161361217499,0.646207869052887,-3.46403408002516e-006,-0.763161361217499,0.646207928657532,-3.46403385265148e-006,-0.763161361217499,0.646207869052887,-3.46403385265148e-006,1,0,0,1,0,0,1,0,0,1,0,0,-0.999996721744537,-0.00255703879520297,9.93649884595271e-011,-0.999996721744537,-0.00255703856237233,9.93649745817393e-011,
- -0.999996721744537,-0.00255703879520297,9.93649815206332e-011,-0.999996721744537,-0.00255703879520297,9.93649884595271e-011,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,8.9749113385551e-007,0,0.999999940395355,8.9749113385551e-007,0,1,8.9749113385551e-007,0,1,8.9749113385551e-007,0,0.0104231592267752,-0.00316225970163941,0.999940693378448,0.01042315736413,-0.00316225970163941,0.999940633773804,0.0104231592267752,-0.0031622601673007,0.999940693378448,0.0104231592267752,-0.00316225993447006,0.999940752983093,-0.766456782817841,0.642271220684052,0.0056359670124948,-0.766456782817841,0.642271220684052,0.00563596747815609,-0.766456723213196,0.642271161079407,0.00563596608117223,-0.766456723213196,0.642271161079407,0.00563596654683352,-0.0165260899811983,0.00213296804577112,-0.999861121177673,-0.0165260918438435,0.00213296827860177,-0.999861180782318,-0.0165260899811983,0.00213296804577112,-0.999861180782318,-0.0165260881185532,0.00213296804577112,-0.999861121177673,0.766708016395569,-0.641968369483948,-0.00595289934426546,0.766708016395569,-0.641968369483948,-0.00595290027558804,0.766708016395569,-0.641968369483948,-0.00595289980992675,0.766708016395569,-0.641968429088593,-0.00595289980992675,-0.999998807907104,-0.000885845627635717,0.00124798074830323,-0.999998867511749,-0.000885845627635717,0.00124798063188791,-0.999998867511749,-0.000885845685843378,0.00124798086471856,-0.999998807907104,-0.000885845511220396,0.00124798074830323,-1.08383910628618e-005,0.646208763122559,-0.763160705566406,-1.08383901533671e-005,0.646208703517914,-0.763160645961761,-1.08383901533671e-005,0.646208703517914,-0.763160705566406,-1.08383910628618e-005,0.646208703517914,-0.763160705566406,0.99999862909317,0.000981162185780704,-0.00136102992109954,0.999998509883881,0.000981162069365382,-0.00136102992109954,0.99999862909317,0.000981162185780704,-0.00136103003751487,0.999998569488525,0.000981162185780704,-0.00136102992109954,4.56959060102236e-006,-0.643252193927765,0.765654385089874,4.56959060102236e-006,-0.64325213432312,0.765654385089874,
- 4.56959060102236e-006,-0.64325213432312,0.765654385089874,4.56959060102236e-006,-0.64325213432312,0.765654385089874,-0.999997437000275,-0.00130771344993263,0.00184371718205512,-0.999997437000275,-0.00130771356634796,0.00184371729847044,-0.999997496604919,-0.00130771368276328,0.00184371729847044,-0.99999737739563,-0.00130771344993263,0.00184371706563979,-0.999979317188263,0.00394957512617111,-0.00506986072286963,-0.999979376792908,0.0039495755918324,-0.00506986118853092,-0.999979317188263,0.00394957512617111,-0.00506986025720835,-0.999979257583618,0.00394957512617111,-0.00506986072286963,0,-0.765632390975952,-0.643278360366821,0,-0.765632331371307,-0.643278360366821,0,-0.765632390975952,-0.643278360366821,0,-0.765632390975952,-0.643278360366821,0.999998152256012,0.00110998842865229,-0.00154780840966851,0.999998211860657,0.00110998842865229,-0.00154780829325318,0.999998211860657,0.00110998842865229,-0.00154780852608383,0.999998211860657,0.00110998842865229,-0.00154780829325318,0.999970138072968,-0.00475718453526497,0.00608323188498616,0.999970197677612,-0.00475718500092626,0.00608323235064745,0.999970138072968,-0.00475718453526497,0.00608323188498616,0.999970197677612,-0.00475718453526497,0.00608323235064745,-1.66211029863916e-005,0.644644320011139,-0.76448267698288,-1.66211011674022e-005,0.644644260406494,-0.76448255777359,-1.6621104805381e-005,0.644644379615784,-0.76448267698288,-1.66211029863916e-005,0.644644260406494,-0.76448267698288,-1.00109218692523e-005,-0.64341813325882,0.765514969825745,-1.0010922778747e-005,-0.64341813325882,0.765514969825745,-1.00109218692523e-005,-0.643418073654175,0.765514969825745,-1.0010922778747e-005,-0.643418192863464,0.7655149102211,1.22524488688214e-005,-0.643335521221161,0.765584290027618,1.22524506878108e-005,-0.643335580825806,0.765584349632263,1.22524506878108e-005,-0.643335580825806,0.765584409236908,1.22524488688214e-005,-0.643335461616516,0.765584290027618,9.99187250272371e-006,0.646209001541138,-0.763160526752472,9.99187159322901e-006,0.646208941936493,-0.763160526752472,
- 9.99187159322901e-006,0.646208941936493,-0.763160586357117,9.99187159322901e-006,0.646208941936493,-0.763160467147827,-2.38242046179948e-006,0.643119275569916,-0.765766084194183,-2.38242046179948e-006,0.643119275569916,-0.765766084194183,-2.38242023442581e-006,0.643119215965271,-0.765766024589539,0,-0.643152952194214,0.76573771238327,0,-0.643153011798859,0.765737771987915,0,-0.643152952194214,0.765737652778625,0,0.765656113624573,0.643250167369843,0,0.765656113624573,0.643250167369843,0,0.765656113624573,0.643250167369843,0,0.765656054019928,0.643250107765198,0,0.765658974647522,0.64324688911438,0,0.765658915042877,0.64324676990509,0,0.765658974647522,0.64324688911438,0,0.765658915042877,0.643246829509735,-1.35926940814102e-008,0.766239106655121,0.642555415630341,-1.35926940814102e-008,0.766239106655121,0.642555415630341,-1.35926940814102e-008,0.766239166259766,0.642555475234985,-1.3592695857767e-008,0.766239285469055,0.642555475234985,-1.54672375174414e-006,-0.765759706497192,-0.643126726150513,-1.5467236380573e-006,-0.765759646892548,-0.643126785755157,-1.54672386543098e-006,-0.765759646892548,-0.643126785755157,-1.5467236380573e-006,-0.765759646892548,-0.643126785755157,0,-0.999997019767761,0.00245103775523603,0,-0.999997019767761,0.00245103775523603,0,-0.999996960163116,0.00245103752240539,0,-0.999997019767761,0.00245103752240539,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.430560886859894,-0.902561545372009,0,-0.430560886859894,-0.902561545372009,0,-0.430560886859894,-0.902561485767365,0,-0.430560946464539,-0.902561604976654,0,1,0,0,1,0,0,1,0,0,1,0,4.99388370656106e-008,-1,8.36683398119931e-007,4.99388370656106e-008,-1,8.36683398119931e-007,4.99388370656106e-008,-1,8.3668345496335e-007,4.99388370656106e-008,-1,8.36683398119931e-007,0,-0.643304347991943,0.765610575675964,0,-0.643304347991943,0.765610575675964,0,-0.643304407596588,0.76561051607132,0,-0.643304347991943,0.76561051607132,0,-0.765619397163391,-0.643293857574463,0,-0.765619397163391,-0.643293857574463,0,-0.765619397163391,-0.643293857574463,0,-0.765619397163391,-0.643293857574463,
- 0,0.643245160579681,-0.765660285949707,0,0.643245160579681,-0.765660285949707,0,0.643245100975037,-0.765660226345062,0,0.643245160579681,-0.765660226345062,0,-0.643248677253723,0.765657365322113,0,-0.643248677253723,0.765657365322113,0,-0.643248617649078,0.765657305717468,0,-0.643248617649078,0.765657365322113,0,-0.765666782855988,-0.643237411975861,0,-0.765666842460632,-0.643237352371216,0,-0.765666782855988,-0.643237352371216,0,-0.765666842460632,-0.643237411975861,0,0.643271684646606,-0.765637934207916,0,0.643271684646606,-0.765637934207916,0,0.643271744251251,-0.765637993812561,0,0.643271684646606,-0.765637934207916,5.36340394319268e-007,-0.766219794750214,-0.642578542232513,5.36340394319268e-007,-0.766219794750214,-0.642578482627869,5.36340394319268e-007,-0.766219794750214,-0.642578542232513,5.36340451162687e-007,-0.766219794750214,-0.642578542232513,6.66887387978932e-007,0.643251776695251,-0.765654683113098,6.66887387978932e-007,0.643251895904541,-0.765654683113098,6.66887444822351e-007,0.643251836299896,-0.765654623508453,6.66887444822351e-007,0.643251836299896,-0.765654683113098,1.15465162764394e-007,-0.604883074760437,0.796314299106598,1.15465162764394e-007,-0.604883134365082,0.796314299106598,1.15465162764394e-007,-0.604883134365082,0.796314299106598,1.15465155658967e-007,-0.604883074760437,0.796314299106598,0,-0.00255729816854,-0.999996781349182,0,-0.00255729816854,-0.999996781349182,0,-0.00255729793570936,-0.999996781349182,0,-0.00255729793570936,-0.999996781349182,0,0,1,0,0,1,0,0,1,0,0,1,6.51129781203963e-008,0,1,6.51129781203963e-008,0,1,6.51129852258237e-008,0,0.999999940395355,6.51129852258237e-008,0,1,3.01502632282791e-006,-0.64311945438385,0.765765964984894,3.01502609545423e-006,-0.64311945438385,0.765765905380249,3.01502609545423e-006,-0.643119513988495,0.765765905380249,0.54168027639389,0.642761468887329,0.541701197624207,0.541680216789246,0.642761468887329,0.541701197624207,0.54168027639389,0.642761468887329,0.541701197624207,0.541680216789246,0.642761468887329,0.541701197624207,0.541680216789246,0.642761528491974,0.541701197624207,
- 0.541680216789246,0.642761528491974,0.541701138019562,0.385398060083389,0.383338361978531,-0.839356899261475,-0.454233407974243,0.766381978988647,-0.45423635840416,-0.454235315322876,0.766381978988647,-0.454234391450882,0.385389894247055,0.383345574140549,-0.839357376098633,-0.454233407974243,0.766381978988647,-0.45423635840416,-0.839359045028687,0.383366525173187,0.385365307331085,-0.839359641075134,0.38337653875351,0.385354042053223,-0.454235315322876,0.766381978988647,-0.454234391450882,-0.839359045028687,0.383366525173187,0.385365307331085,-0.384847611188889,-0.382730782032013,0.839886605739594,-0.384845912456512,-0.382732182741165,0.839886665344238,-0.839359641075134,0.38337653875351,0.385354042053223,-0.384847611188889,-0.382730782032013,0.839886605739594,0.454759240150452,-0.765756130218506,0.454765439033508,0.454762011766434,-0.765756130218506,0.454762607812881,-0.384845912456512,-0.382732182741165,0.839886665344238,0.454759240150452,-0.765756130218506,0.454765439033508,0.839886426925659,-0.382740318775177,-0.384838730096817,0.839886605739594,-0.382744073867798,-0.384834557771683,0.454762011766434,-0.765756130218506,0.454762607812881,0.839886426925659,-0.382740318775177,-0.384838730096817,0.385398060083389,0.383338361978531,-0.839356899261475,0.385389894247055,0.383345574140549,-0.839357376098633,0.839886605739594,-0.382744073867798,-0.384834557771683,-0.866001188755035,0.500042021274567,0.000125280246720649,-8.52568632581097e-007,1,5.10646023030858e-005,-1.45655540109146e-005,1,5.10646132170223e-005,-0.866041600704193,0.499971926212311,0.000125290549476631,-8.52568632581097e-007,1,5.10646023030858e-005,0.86601322889328,0.500021278858185,0.000121816658065654,0.866045892238617,0.499964654445648,0.000121824719826691,-1.45655540109146e-005,1,5.10646132170223e-005,0.86601322889328,0.500021278858185,0.000121816658065654,0.866049706935883,-0.499957889318466,0.000269332900643349,0.866000890731812,-0.500042319297791,0.00026934573543258,0.866045892238617,0.499964654445648,0.000121824719826691,0.866049706935883,-0.499957889318466,0.000269332900643349,
- -8.88009139998758e-007,-0.999999940395355,0.000346120068570599,-1.45846815939876e-005,-0.999999940395355,0.00034612012677826,0.866000890731812,-0.500042319297791,0.00026934573543258,-8.88009139998758e-007,-0.999999940395355,0.000346120068570599,-0.866037666797638,-0.49997866153717,0.000272824778221548,-0.865996718406677,-0.500049591064453,0.000272835284704342,-1.45846815939876e-005,-0.999999940395355,0.00034612012677826,-0.866037666797638,-0.49997866153717,0.000272824778221548,-0.866001188755035,0.500042021274567,0.000125280246720649,-0.866041600704193,0.499971926212311,0.000125290549476631,-0.865996718406677,-0.500049591064453,0.000272835284704342,5.681149994885e-010,0,0.999999940395355,5.68115054999652e-010,0,1,5.68115054999652e-010,0,1,5.681149994885e-010,0,0.999999940395355,5.68115054999652e-010,0,1,5.68115054999652e-010,0,1,4.42302916781046e-005,0,-1,4.42302989540622e-005,0,-1,4.42302916781046e-005,0,-1,4.42302916781046e-005,0,-1,4.42302916781046e-005,0,-1,4.42302916781046e-005,0,-0.999999940395355,-0.541711866855621,-0.642740249633789,-0.541694819927216,-0.541711807250977,-0.642740190029144,-0.541694760322571,-0.541711866855621,-0.642740249633789,-0.541694819927216,-0.541711866855621,-0.642740249633789,-0.541694819927216,-0.541711866855621,-0.642740190029144,-0.541694760322571,-0.541711807250977,-0.642740249633789,-0.541694819927216,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,-2.89802510877735e-008,0,1,-2.89802475350598e-008,0,1,-2.89802493114166e-008,0,1,-2.89802510877735e-008,0,0,0,1,0,0,1,0,0,1,0,0,1,-1,-2.89802493114166e-008,0,-1,-2.89802475350598e-008,0,-1,-2.89802510877735e-008,0,-1,-2.89802510877735e-008,0,0,0.627528607845306,-0.778593480587006,0,0.627528607845306,-0.778593480587006,0,0.627528607845306,-0.778593480587006,0,0.627528607845306,-0.778593480587006,0.711670577526093,-0.00355970859527588,-0.702504336833954,0.711670577526093,-0.00355970836244524,-0.702504336833954,0.711670577526093,-0.00355970812961459,-0.702504336833954,0.711670577526093,-0.00355970859527588,-0.702504336833954,-0.47246652841568,0.765001773834229,-0.437661588191986,
- -0.47246652841568,0.765001773834229,-0.437661588191986,-0.472466558218002,0.765001833438873,-0.437661647796631,-0.47246652841568,0.765001833438873,-0.437661588191986,-0.712498545646667,0.00393550377339125,0.701662480831146,-0.712498545646667,0.00393550423905253,0.701662540435791,-0.712498545646667,0.00393550423905253,0.701662540435791,-0.712498545646667,0.00393550423905253,0.701662600040436,0.453674018383026,-0.78069543838501,0.42976114153862,0.453673928976059,-0.780695378780365,0.429761052131653,0.453673958778381,-0.78069531917572,0.429761081933975,0.453674018383026,-0.780695497989655,0.42976114153862,1,-0.000105762250314001,5.73964134673588e-005,1,-0.000105762243038043,5.739640982938e-005,1,-0.000105762250314001,5.739640982938e-005,1,-0.000105762243038043,5.739640982938e-005,0.999999821186066,0.000341336912242696,-0.000394369679270312,0.99999988079071,0.000341336941346526,-0.000394369737477973,0.99999988079071,0.000341336970450357,-0.000394369708374143,0.999999940395355,0.000341336941346526,-0.000394369737477973,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0.000227191296289675,-0.000270417076535523,0.99999988079071,0.000227191296289675,-0.000270417047431692,0.999999940395355,0.00022719131084159,-0.000270417076535523,0.999999821186066,0.000227191296289675,-0.000270417018327862,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,1.09099164546933e-006,3.13237319460313e-006,0.999999940395355,1.09099164546933e-006,3.13237296722946e-006,0.999999940395355,1.09099164546933e-006,3.13237296722946e-006,1,1.09099153178249e-006,3.13237273985578e-006,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0
- }
- NormalsW: *511 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1533 {
- a: -0.765633106231689,0.643277585506439,-1.16728588182013e-005,-0.765633106231689,0.643277645111084,-1.16768287625746e-005,-0.765633046627045,0.643277645111084,-1.16728569992119e-005,-0.765633106231689,0.643277585506439,-1.16688870548387e-005,-0.764406740665436,0.644730687141418,0.00214638793841004,-0.76565146446228,0.64325213432312,0.00214663147926331,-0.764406800270081,0.644730687141418,0.00214638817124069,-0.763159334659576,0.646206796169281,0.00214613694697618,6.40734333501314e-006,-1.44937275763368e-005,-1,6.63681794321747e-006,-1.42227236210601e-005,-1,6.86629164192709e-006,-1.39517196657835e-005,-1,6.63681794321747e-006,-1.42227218020707e-005,-1,0.765652775764465,-0.64325088262558,-0.00200082315132022,0.764407575130463,-0.644730389118195,-0.00200057891197503,0.763159334659576,-0.646207332611084,-0.00200032722204924,0.764407575130463,-0.644730389118195,-0.00200057914480567,0.000169420425663702,0.00019012443954125,1,0.000169699284015223,0.000190456339623779,1,0.000169420411111787,0.000190124424989335,1,0.000169141581864096,0.000189792524906807,1,0.643115878105164,0.765763878822327,0.00275234668515623,0.643115878105164,0.765764057636261,0.00274443603120744,0.643115878105164,0.765763998031616,0.00275234691798687,0.643115878105164,0.765763938426971,0.00276025757193565,-0.643151581287384,-0.765738844871521,0,-0.643203616142273,-0.765695154666901,0,-0.643151581287384,-0.765738844871521,0,-0.643099546432495,-0.765782594680786,0,-0.765068471431732,0.643948912620544,-3.44374348060228e-005,-0.76535427570343,0.643609285354614,-3.4437827707734e-005,-0.765639781951904,0.643269538879395,-3.44382024195511e-005,-0.76535427570343,0.643609285354614,-3.44378240697552e-005,0.952629327774048,-0.304133772850037,0,0.95609450340271,-0.293058842420578,0,0.959430754184723,-0.281944394111633,0,0.95609450340271,-0.293058842420578,0,-0.765657424926758,0.643248498439789,0.000522101938258857,-0.765647649765015,0.64326012134552,0.000522101938258857,-0.765637814998627,0.643271684646606,0.000522101880051196,-0.765647649765015,0.643260061740875,0.000522101996466517,
- -0.764402329921722,0.644726812839508,0.00407147174701095,-0.765647292137146,0.643247842788696,0.00407171528786421,-0.764402329921722,0.644726812839508,0.00407147174701095,-0.763154447078705,0.646203279495239,0.00407121237367392,-4.61856598121813e-006,-5.4544429985981e-006,-1,-4.48888840764994e-006,-5.30129682374536e-006,-1,-4.3592121983238e-006,-5.14815110363998e-006,-1,-4.48888840764994e-006,-5.30129682374536e-006,-1,0.765647709369659,-0.643247365951538,-0.0040717157535255,0.764402806758881,-0.644726276397705,-0.00407147174701095,0.763154983520508,-0.646202623844147,-0.00407121237367392,0.764402806758881,-0.644726276397705,-0.00407147221267223,0.000163987089763395,0.000195191678358242,1,0.000164069060701877,0.000195289234397933,1,0.000164151031640358,0.000195386819541454,1,0.000164069060701877,0.000195289234397933,1,0.647500813007355,0.762064874172211,-0,0.653445065021515,0.756973922252655,-0,0.647500813007355,0.762064814567566,-0,0.641516864299774,0.767108917236328,-0,-0.000561629654839635,-0.000677655101753771,0.999999642372131,-0.000561855151318014,-0.000677922507748008,0.999999642372131,-0.000555798236746341,-0.000670739682391286,0.999999701976776,-0.00054951582569629,-0.000663289334625006,0.999999642372131,-0.000557742023374885,-0.00067304476397112,0.999999642372131,0.764945149421692,-0.644085228443146,-0.00362130836583674,0.764424502849579,-0.644703090190887,-0.00362115399912,0.763903260231018,-0.645320594310761,-0.00362099660560489,0.764424562454224,-0.644703149795532,-0.00362115399912,0.765747547149658,-0.643115401268005,0.0057815439067781,0.76421457529068,-0.644936263561249,0.00578096183016896,0.762677311897278,-0.646753489971161,0.00578034669160843,0.76421457529068,-0.644936263561249,0.00578096136450768,-0.106384634971619,0.994325160980225,-0,-0.106384634971619,0.99432510137558,0,-0.106384634971619,0.994325160980225,0,-0.106384634971619,0.99432510137558,0,0,1,-0,1.75566103877145e-008,1,-0,3.5113220775429e-008,1,-0,1.75566103877145e-008,1,-0,3.26563713315409e-005,1,-0,-3.37867078314957e-007,1,0,3.26563713315409e-005,1,-0,
- 6.5650609030854e-005,1,-0,-0.643152952194214,-0.76573771238327,-6.08582467975793e-006,-0.643152952194214,-0.76573783159256,-8.28801148600178e-006,-0.643152952194214,-0.76573783159256,-1.04901964732562e-005,-0.643152952194214,-0.76573783159256,-8.28801148600178e-006,-0.765655040740967,0.643249213695526,0.00167458399664611,-0.765654921531677,0.643249094486237,0.0017702094046399,-0.765654981136322,0.643249213695526,0.00167458388023078,-0.765655159950256,0.643249273300171,0.00157895847223699,0.765658617019653,-0.643247246742249,0.000170200975844637,0.765658497810364,-0.643247246742249,0.000340200000209734,0.765658617019653,-0.643247246742249,0.000170200946740806,0.765658617019653,-0.643247246742249,2.01898387786059e-007,-0.766238689422607,0.642556190490723,8.50108335725963e-007,-0.766238629817963,0.642556250095367,8.38017797377688e-007,-0.766238629817963,0.642556250095367,8.50108222039125e-007,-0.766238629817963,0.642556190490723,8.62198817230819e-007,-0.765715539455414,0.643155157566071,0.00560108432546258,-0.765716195106506,0.643155813217163,0.00542469136416912,-0.765717029571533,0.643156349658966,0.00524829933419824,-0.765716195106506,0.643155813217163,0.00542469136416912,-0,1,4.4242315198062e-005,-0,1,4.42692398792133e-005,-0,1,4.42961609223858e-005,-0,1,4.42692398792133e-005,-0.999997019767761,-0.00245103612542152,3.99805867346004e-006,-0.999997079372406,-0.00245103635825217,3.51651010532805e-006,-0.999997079372406,-0.00245103612542152,3.03496130982239e-006,-0.999997079372406,-0.00245103612542152,3.51651010532805e-006,1,8.03837849616684e-007,-1.27212604184024e-006,1,8.03837849616684e-007,-1.27774990232865e-006,1,8.03837906460103e-007,-1.27212604184024e-006,1,8.03837906460103e-007,-1.26650218135183e-006,-0.430552989244461,0.90256541967392,4.78995025332551e-005,-0.430553048849106,0.902565360069275,4.76608656754252e-005,-0.430552989244461,0.902565360069275,4.74222179036587e-005,-0.430552989244461,0.902565360069275,4.76608620374464e-005,1,-0,5.75642588955816e-005,1,-0,5.76979837205727e-005,1,-0,5.75642588955816e-005,
- 1,-0,5.74305340705905e-005,-1,0,5.8079618611373e-005,-1,0,5.80111918679904e-005,-1,0,5.79427651246078e-005,-1,0,5.80111918679904e-005,-0.7650465965271,0.643969118595123,0.00277059245854616,-0.765586256980896,0.643327414989471,0.00277071632444859,-0.766125380992889,0.642685294151306,0.00277083809487522,-0.765586197376251,0.643327355384827,0.00277071632444859,0.643302083015442,0.765611350536346,0.00137537892442197,0.643302083015442,0.765611350536346,0.00137441663537174,0.643302083015442,0.765611290931702,0.0013734542299062,0.643302083015442,0.765611290931702,0.00137441651895642,0.765616595745087,-0.643295168876648,0.00159472681116313,0.765616655349731,-0.643295228481293,0.00158806436229497,0.765616595745087,-0.643295228481293,0.00158140156418085,0.765616595745087,-0.643295228481293,0.00158806424587965,-0.643244981765747,-0.765659034252167,0.00145357893779874,-0.643245041370392,-0.765659153461456,0.00138526526279747,-0.643245041370392,-0.765659093856812,0.00145357893779874,-0.643244981765747,-0.765659034252167,0.0015218926128,-0.643248021602631,-0.765657901763916,2.40728041944749e-007,-0.643248021602631,-0.765657842159271,2.0295642855217e-007,-0.643248021602631,-0.765658020973206,1.65184857792156e-007,-0.643248021602631,-0.765658020973206,2.0295645697388e-007,-0.765666425228119,0.643237948417664,2.80412848496781e-007,-0.765666425228119,0.643237888813019,2.03487033445526e-007,-0.765666484832764,0.643237888813019,1.26561218394272e-007,-0.765666425228119,0.643237829208374,2.03487019234672e-007,0.643271565437317,0.765638172626495,-0.000107172745629214,0.643271565437317,0.765638172626495,2.37810724001974e-007,0.643271565437317,0.765638113021851,-0.000107172731077299,0.643271565437317,0.765638113021851,-0.000214583269553259,0.766226887702942,-0.64257025718689,4.15326894653845e-006,0.766226828098297,-0.64257025718689,2.47377920459257e-006,0.766226828098297,-0.642570197582245,7.94289917394053e-007,0.766226768493652,-0.64257025718689,2.47377920459257e-006,-0.643260717391968,-0.765647292137146,4.23601049988065e-005,-0.643260717391968,-0.765647172927856,8.39501444716007e-005,
- -0.643260776996613,-0.765647232532501,4.23601049988065e-005,-0.643260776996613,-0.765647232532501,7.70059273236257e-007,0.60488373041153,0.796313762664795,8.09806920187839e-007,0.604883790016174,0.796313762664795,8.20237858079054e-007,0.604883790016174,0.79631370306015,8.30668795970269e-007,0.604883790016174,0.79631370306015,8.20237801235635e-007,-0.761734962463379,0.647857904434204,-0.00632269261404872,-0.763258695602417,0.646062135696411,-0.00632340926676989,-0.764778196811676,0.644262731075287,-0.0063240909948945,-0.763258695602417,0.646062135696411,-0.00632340926676989,0.643117666244507,0.765767514705658,5.82467782805907e-006,0.643117606639862,0.765767514705658,5.45057855561026e-006,0.643117547035217,0.765767514705658,5.82467691856436e-006,0.643117606639862,0.765767455101013,6.19877710050787e-006,-0.000749320024624467,-0.000898146128747612,-0.999999403953552,-0.000749754719436169,-0.000898663303814828,-0.999999403953552,-0.000752286927308887,-0.000901676132343709,-0.999999344348907,-0.000754384673200548,-0.000904171727597713,-0.999999284744263,-0.000751297979149967,-0.000900499464478344,-0.999999344348907,0.000717502611223608,0.000853844219818711,-0.999999403953552,0.000444510427769274,0.000528977368958294,-0.999999821186066,0.000717502611223608,0.000853844219818711,-0.999999403953552,0.00099049462005496,0.00117871083784848,-0.999998807907104,-0.00047348506632261,-0.000553817895706743,0.999999761581421,-0.000749342143535614,-0.000879600760526955,0.999999403953552,-0.00102519907522947,-0.00120538345072418,0.999998807907104,-0.000749342143535614,-0.000879600760526955,0.999999403953552,-0,1,0.0001068068886525,-0,1,0.0001068068886525,-0,1,0.0001068068886525,-0,1,0.0001068068886525,-0.00255703856237233,0.999996602535248,0.000504540745168924,-0.00255703832954168,0.999996602535248,0.00050454557640478,-0.00255703856237233,0.999996602535248,0.000504550349432975,-0.00255703856237233,0.999996602535248,0.00050454557640478,-0,-1,3.32888635057316e-006,-0,-1,1.3107989616401e-005,-0,-1,2.28870903811185e-005,-0,-1,1.3107989616401e-005,
- 8.9749113385551e-007,-1,-0.000138433766551316,8.97491247542348e-007,-1,-0.000138420844450593,8.9749113385551e-007,-1,-0.000138407907797955,8.9749113385551e-007,-1,-0.000138420844450593,-0.7662233710289,0.642496228218079,0.0100188022479415,-0.766330778598785,0.642368197441101,0.0100195156410336,-0.7662233710289,0.642496228218079,0.0100188031792641,-0.76611602306366,0.642624318599701,0.0100180879235268,-0.00945315696299076,-0.00250632222741842,-0.99995219707489,-0.00802639219909906,-0.000803552684374154,-0.999967455863953,-0.00659958925098181,0.000899218488484621,-0.999977886676788,-0.00802639219909906,-0.000803553266450763,-0.999967455863953,0.766992449760437,-0.641502499580383,-0.0140456408262253,0.766848862171173,-0.641674101352692,-0.014043633826077,0.766705334186554,-0.641845643520355,-0.0140416268259287,0.766848921775818,-0.641674101352692,-0.0140436328947544,0.00939391925930977,0.00194677477702498,0.999953985214233,0.0109930038452148,0.00385677604936063,0.999932169914246,0.00939391925930977,0.0019467743113637,0.999953985214233,0.00779477693140507,3.67597676813602e-005,0.999969661235809,-0.00152510032057762,0.644731521606445,-0.764407634735107,-0.00152534397784621,0.643251895904541,-0.765653192996979,-0.00152510032057762,0.644731521606445,-0.764407515525818,-0.00152485095895827,0.646208703517914,-0.763159215450287,1,1.79857215698576e-006,-1.26790309877833e-005,1,1.8890498267865e-006,-1.26024187920848e-005,1,1.79857170223841e-006,-1.26790291687939e-005,1,1.70809471455868e-006,-1.27556422739872e-005,0.00167321332264692,-0.643251001834869,0.765653610229492,0.00167297013103962,-0.64473032951355,0.76440840959549,0.00167272030375898,-0.64620715379715,0.763160228729248,0.0016729700146243,-0.64473032951355,0.764408349990845,-1,0.000192027815501206,0.000167297301231883,-1,0.000192241903278045,0.000167477133800276,-1,0.000192455961951055,0.000167656966368668,-1,0.000192241903278045,0.000167477133800276,0.00225263647735119,-0.644086837768555,0.764949083328247,0.00225248327478766,-0.644709885120392,0.764423966407776,0.00225232867524028,-0.64533257484436,0.763898491859436,
- 0.00225248327478766,-0.644709944725037,0.764424026012421,-0.00642237346619368,-0.643113553524017,0.765743970870972,-0.00642179464921355,-0.64493054151535,0.764214277267456,-0.00642117857933044,-0.646743893623352,0.762680172920227,-0.00642179511487484,-0.64493054151535,0.764214277267456,-4.47049678768963e-005,0.643278360366821,-0.765632390975952,-4.47367747256067e-005,0.643278419971466,-0.765632450580597,-4.47049678768963e-005,0.643278360366821,-0.765632390975952,-4.46731610281859e-005,0.643278360366821,-0.765632390975952,-0.0018989525269717,0.643963634967804,-0.765053868293762,-0.00189907441381365,0.643325209617615,-0.765590608119965,-0.00189919583499432,0.642686426639557,-0.766127049922943,-0.00189907441381365,0.643325209617615,-0.765590608119965,0.00771596375852823,0.647809028625488,-0.761763751506805,0.00771667994558811,0.646034836769104,-0.763269007205963,0.00771735375747085,0.644256889820099,-0.764770209789276,0.00771667947992682,0.646034836769104,-0.763269007205963,-0.999999582767487,-0.000676328374538571,-0.000548567215446383,-0.999999642372131,-0.000669522094540298,-0.000542827881872654,-0.999999642372131,-0.000676328432746232,-0.000548567331861705,-0.999999642372131,-0.000683134770952165,-0.000554306607227772,0.999999284744263,-0.000902126077562571,-0.000745162891689688,0.999999284744263,-0.000904961081687361,-0.000747545738704503,0.999999344348907,-0.000907796202227473,-0.000749928643926978,0.999999403953552,-0.000904961256310344,-0.000747546029742807,0.999998927116394,0.00116464786697179,0.00096267246408388,0.999999403953552,0.000852838449645787,0.000700652890373021,0.999999761581421,0.000541028915904462,0.00043863317114301,0.999999403953552,0.000852838391438127,0.0007006527739577,-0.999999403953552,-0.000864360015839338,-0.000744992808904499,-0.999998807907104,-0.0011656975839287,-0.00100015150383115,-0.999999403953552,-0.000864360074046999,-0.000744992692489177,-0.999999761581421,-0.000563022331334651,-0.000489833997562528,-4.64315962744877e-005,0.765766084194183,0.643119275569916,-4.64315962744877e-005,0.765766084194183,0.643119275569916,
- -4.64316035504453e-005,0.765766143798828,0.643119275569916,1.49675815919181e-005,-0.76573771238327,-0.643152952194214,1.49675834109075e-005,-0.765737771987915,-0.643153011798859,1.49675834109075e-005,-0.765737771987915,-0.643153011798859,-0.00161487108562142,0.643249332904816,-0.765655100345612,-0.00175173999741673,0.643249213695526,-0.765654921531677,-0.00188860890921205,0.643249034881592,-0.765654742717743,-0.00175173999741673,0.643249213695526,-0.765654981136322,7.7330980275292e-005,-0.643246829509735,0.765658855438232,0.000187039477168582,-0.64324676990509,0.765658915042877,0.000296748010441661,-0.643246829509735,0.765658915042877,0.000187039491720498,-0.643246829509735,0.765658915042877,2.05445267056348e-005,0.642555475234985,-0.76623922586441,3.8854490412632e-005,0.642555475234985,-0.76623922586441,5.7164448662661e-005,0.642555475234985,-0.766239166259766,3.8854490412632e-005,0.642555475234985,-0.766239285469055,-0.00588383059948683,0.643115639686584,-0.765746593475342,-0.00588322803378105,0.643115699291229,-0.765746533870697,-0.00588383059948683,0.643115699291229,-0.765746533870697,-0.0058844331651926,0.643115699291229,-0.765746533870697,-6.19219499640167e-005,-0.00245103775523603,-0.999997019767761,-8.88479116838425e-005,-0.00245103775523603,-0.999997019767761,-6.19219499640167e-005,-0.00245103775523603,-0.999997079372406,-3.49959809682332e-005,-0.00245103752240539,-0.999997019767761,9.55684527070844e-007,-0,1,9.58779196480464e-007,-0,1,9.61873865890084e-007,-0,1,9.58779196480464e-007,-0,1,-4.77506582683418e-005,0.902561545372009,-0.430560886859894,-4.77077810501214e-005,0.902561545372009,-0.430560886859894,-4.77506619063206e-005,0.902561604976654,-0.430560946464539,-4.77935318485834e-005,0.902561485767365,-0.430560886859894,-5.74398945900612e-005,0,1,-5.83884830120951e-005,0,1,-5.93370677961502e-005,0,1,-5.83884830120951e-005,0,1,-5.83455985179171e-005,-8.36686297134293e-007,-1,-5.82634384045377e-005,-8.36686297134293e-007,-1,-5.83455985179171e-005,-8.36686353977711e-007,-1,-5.84277549933176e-005,-8.36686297134293e-007,-1,
- -0.0013833133270964,0.765609860420227,0.643303751945496,-0.00139096053317189,0.765609860420227,0.643303751945496,-0.00138331321068108,0.765609800815582,0.64330381155014,-0.00137566600460559,0.765609800815582,0.643303751945496,-0.00154237891547382,-0.643293082714081,0.765618503093719,-0.00158550124615431,-0.643293023109436,0.765618443489075,-0.00154237891547382,-0.643293082714081,0.765618503093719,-0.00149925635196269,-0.643293142318726,0.765618503093719,-0.00109232403337955,-0.765659809112549,-0.643244802951813,-0.00119857606478035,-0.765659749507904,-0.643244683742523,-0.00130482821259648,-0.765659689903259,-0.643244624137878,-0.00119857618119568,-0.765659809112549,-0.643244743347168,3.40059959853534e-005,-0.765657365322113,-0.643248677253723,6.31183065706864e-005,-0.765657365322113,-0.643248677253723,3.40059959853534e-005,-0.765657424926758,-0.643248677253723,4.89368403577828e-006,-0.765657365322113,-0.643248617649078,-1.41948848977336e-005,0.643237411975861,-0.765666782855988,5.97825146542164e-006,0.643237352371216,-0.765666842460632,-1.41948876262177e-005,0.643237411975861,-0.765666902065277,-3.43680221703835e-005,0.643237411975861,-0.765666842460632,-1.56182304635877e-005,0.765638053417206,0.643271744251251,-2.24659088416956e-005,0.765638053417206,0.643271744251251,-2.93135854008142e-005,0.765637993812561,0.643271744251251,-2.24659088416956e-005,0.765638053417206,0.643271744251251,-1.67800390045159e-005,-0.642578601837158,0.766219913959503,1.91363687918056e-006,-0.642578542232513,0.766219913959503,-1.67800390045159e-005,-0.642578601837158,0.766219913959503,-3.54737130692229e-005,-0.642578601837158,0.766219913959503,5.28451928403229e-005,-0.765654683113098,-0.643251776695251,4.89803205709904e-005,-0.765654683113098,-0.643251895904541,4.51154519396368e-005,-0.765654742717743,-0.643251895904541,4.89803205709904e-005,-0.765654683113098,-0.643251836299896,1.08581280073849e-005,0.796314299106598,0.604883074760437,1.97641311387997e-005,0.796314299106598,0.604883134365082,1.08581289168797e-005,0.796314299106598,0.604883134365082,
- 1.95212533071754e-006,0.796314299106598,0.604883074760437,0.00133252423256636,0.999995887279511,-0.00255729584023356,0.00133250188082457,0.999995887279511,-0.00255729584023356,0.00133247952908278,0.999995887279511,-0.00255729560740292,0.00133250188082457,0.999995887279511,-0.00255729560740292,-9.78690877673216e-005,-1,0,-0.000115870163426735,-1,0,-0.00013387123181019,-1,0,-0.000115870163426735,-1,0,0.000103773978480604,-1,-6.75703286726059e-012,0.000103740239865147,-1,-6.75483583997827e-012,0.000103706508525647,-1,-6.75264054741942e-012,0.000103740239865147,-1,-6.75483670734001e-012,-0.00267830863595009,0.765763223171234,0.643117129802704,-0.00267830863595009,0.765763163566589,0.643117129802704,-0.00267830863595009,0.765763163566589,0.643117189407349,-0.4559306204319,0.766064822673798,-0.453069537878037,-0.455918341875076,0.766064882278442,-0.453081995248795,-0.455910742282867,0.766064882278442,-0.453089475631714,-0.45591077208519,0.766064822673798,-0.453089475631714,-0.455915987491608,0.766064822673798,-0.453084319829941,-0.455925911664963,0.766064763069153,-0.453074395656586,0.551970362663269,0.633167028427124,0.542612433433533,0.547092616558075,0.642367839813232,0.53670597076416,0.542420268058777,0.642384946346283,0.541407346725464,0.546649634838104,0.637976229190826,0.542365670204163,0.547092616558075,0.642367839813232,0.53670597076416,0.542064607143402,0.64317798614502,0.540821671485901,0.542082548141479,0.642883241176605,0.541153967380524,0.542420268058777,0.642384946346283,0.541407346725464,0.542064607143402,0.64317798614502,0.540821671485901,0.541644990444183,0.643154084682465,0.54127025604248,0.541780054569244,0.643034279346466,0.541277527809143,0.542082548141479,0.642883241176605,0.541153967380524,0.541644990444183,0.643154084682465,0.54127025604248,0.5416259765625,0.643131077289581,0.54131680727005,0.541618824005127,0.643131017684937,0.541323900222778,0.541780054569244,0.643034279346466,0.541277527809143,0.539168894290924,0.643127679824829,0.543768107891083,0.541595995426178,0.637448847293854,0.548026382923126,
- 0.541567265987396,0.637984991073608,0.547430455684662,0.54023814201355,0.64313006401062,0.542702972888947,0.541595995426178,0.637448847293854,0.548026382923126,0.551970362663269,0.633167028427124,0.542612433433533,0.546649634838104,0.637976229190826,0.542365670204163,0.541567265987396,0.637984991073608,0.547430455684662,-0.000141887794598006,4.81009510622243e-006,-1,-3.03067117783939e-005,5.10645768372342e-005,-1,4.18746276409365e-005,5.10652243974619e-005,-1,-0.00010796774586197,6.35755422990769e-005,-1,-3.03067117783939e-005,5.10645768372342e-005,-1,0.000110651504655834,5.19797758897766e-005,-1,0.000132820088765584,1.35938007588265e-005,-1,4.18746276409365e-005,5.10652243974619e-005,-1,0.000110651504655834,5.19797758897766e-005,-1,0.000275799044175074,-6.09595736023039e-005,-1,0.000239579472690821,-0.000123728939797729,-1,0.000132820088765584,1.35938007588265e-005,-1,0.000275799044175074,-6.09595736023039e-005,-1,0.000296536745736375,-0.000346120330505073,-0.999999940395355,0.000288296287180856,-0.000346124317729846,-0.999999940395355,0.000239579472690821,-0.000123728939797729,-1,-0.000199822738068178,-0.000346119893947616,-0.999999940395355,-0.000200204114662483,-0.000198889436433092,-1,-0.000252724013989791,-0.00010794356057886,-1,-0.000199816931854002,-0.000346117216395214,-0.999999940395355,-0.000200204114662483,-0.000198889436433092,-1,-0.000141887794598006,4.81009510622243e-006,-1,-0.00010796774586197,6.35755422990769e-005,-1,-0.000252724013989791,-0.00010794356057886,-1,0,1,-0,0,1,-0,5.26204132711428e-007,1,-2.98944502744763e-016,-5.26192081906629e-007,1,2.98937647071846e-016,-2.10479242923611e-006,1,1.19576424669366e-015,-2.63096040953315e-007,1,1.49468823535923e-016,7.85866973274096e-007,1,3.47591261329327e-011,6.28662110102596e-006,1,2.78059131275654e-010,1.57173394654819e-006,1,6.95182522658655e-011,-1.57157660396479e-006,1,-6.95112925552799e-011,0,1,0,0,1,0,-0.444117993116379,0.766002535820007,-0.464757353067398,-0.444090396165848,0.766002058982849,-0.464784443378448,-0.444108128547668,0.766002416610718,-0.464767068624496,
- -0.444118738174438,0.766002535820007,-0.464756667613983,-0.444092690944672,0.766002178192139,-0.464782208204269,-0.444115251302719,0.766002535820007,-0.464760154485703,-1,0,-2.84887846646598e-007,-1,0,-2.37406567293874e-007,-1,0,-1.89925302152005e-007,-1,0,-2.37406567293874e-007,1,0,-1.53724940332722e-007,1,0,-1.53724940332722e-007,1,0,-1.53724940332722e-007,1,0,-1.53724940332722e-007,2.89802510877735e-008,1,-8.53192219096854e-008,2.89802475350598e-008,1,-1.70638443819371e-007,2.89802493114166e-008,1,-8.53192219096854e-008,2.89802510877735e-008,1,0,6.15899239164719e-007,1,-0,6.15899239164719e-007,1,-0,6.15899239164719e-007,1,-0,6.15899239164719e-007,1,-0,2.89802493114166e-008,-1,-1.90730617077861e-007,2.89802475350598e-008,-1,-1.70638188023986e-007,2.89802510877735e-008,-1,-1.90730617077861e-007,2.89802510877735e-008,-1,-2.10823060342591e-007,0,0.778593599796295,0.627528667449951,-1.29206709971186e-005,0.778593599796295,0.627528667449951,-2.58413419942372e-005,0.778593599796295,0.627528667449951,-1.29206709971186e-005,0.778593599796295,0.627528667449951,-0.443880289793015,0.772805452346802,-0.453587919473648,-0.440840870141983,0.776327848434448,-0.450526714324951,-0.43778783082962,0.779826164245605,-0.447451591491699,-0.440840870141983,0.776327848434448,-0.450526714324951,-0.69334214925766,-0.0160476285964251,0.72042989730835,-0.692725360393524,-0.0153183192014694,0.72103887796402,-0.692107737064362,-0.0145889800041914,0.721646845340729,-0.692725360393524,-0.0153183173388243,0.72103887796402,0.435506016016006,-0.781581163406372,0.44661545753479,0.444999903440475,-0.770624279975891,0.456194490194321,0.454359382390976,-0.759434700012207,0.465635776519775,0.444999933242798,-0.770624279975891,0.456194490194321,0.700900852680206,0.0147498827427626,-0.713106215000153,0.701143085956573,0.0150249321013689,-0.712862312793732,0.700900852680206,0.0147498864680529,-0.713106215000153,0.700658440589905,0.0144747775048018,-0.713350057601929,0.000105762279417831,1,-4.47217985310999e-007,0.000105762243038043,1,-5.66354074749142e-008,
- 0.000105762228486128,1,3.33947156150316e-007,0.000105762243038043,1,-5.66354074749142e-008,7.32924672774971e-006,-0.76523768901825,-0.643747866153717,7.73675947129959e-006,-0.765740573406219,-0.643149733543396,7.32924672774971e-006,-0.76523768901825,-0.643747925758362,6.92164758220315e-006,-0.764734387397766,-0.644345700740814,0,0.643253028392792,-0.765653669834137,0,0.643248617649078,-0.765657365322113,0,0.643244206905365,-0.765661060810089,0,0.643248617649078,-0.765657365322113,-0.000353187351720408,0.643250524997711,-0.765655815601349,-0.000353187351720408,0.643254816532135,-0.765652179718018,-0.000353187351720408,0.643259108066559,-0.765648603439331,-0.000353187293512747,0.64325475692749,-0.765652179718018,0,0.64253705739975,-0.766254603862762,0,0.642546892166138,-0.766246438026428,0,0.642556667327881,-0.766238152980804,0,0.642546892166138,-0.766246378421783,-2.88168303086422e-006,0.753400504589081,0.657561957836151,-2.86893032352964e-006,0.758449077606201,0.651732265949249,-2.85600708593847e-006,0.763452708721161,0.645863771438599,-2.86893009615596e-006,0.758449137210846,0.651732325553894,0,-0.999996721744537,0.00255891866981983,0,-0.999996721744537,0.0025586427655071,0,-0.999996721744537,0.00255836686119437,0,-0.999996721744537,0.0025586427655071,-0,1,3.14801982312929e-005,0,1,-2.58851764556312e-006,-0,1,3.14801982312929e-005,-0,1,6.55489129712805e-005
- }
- BinormalsW: *511 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1533 {
- a: -8.93712513061473e-006,7.50888739275979e-006,1,-8.94016466190806e-006,7.51144170862972e-006,1,-8.93712422112003e-006,7.50888739275979e-006,1,-8.9340846898267e-006,7.50633262214251e-006,1,0.644731938838959,0.764408767223358,-0.000128007537568919,0.64325338602066,0.765653491020203,-0.00012385928130243,0.644731938838959,0.764408767223358,-0.000128007624880411,0.646208047866821,0.763161301612854,-0.000132155764731579,0.646209120750427,0.763160407543182,-6.92055436957162e-006,0.646209120750427,0.763160526752472,-6.56544852972729e-006,0.646209120750427,0.763160526752472,-6.21034087089356e-006,0.646209120750427,0.763160526752472,-6.56544852972729e-006,0.643252015113831,0.765654504299164,-0.000124416459584609,0.644731462001801,0.764409184455872,-0.000128285260871053,0.646208345890045,0.76316100358963,-0.000132153640151955,0.644731462001801,0.764409184455872,-0.000128285479149781,0.643252849578857,0.765653789043427,-0.000254549668170512,0.643252909183502,0.765653848648071,-0.000254983169725165,0.643252849578857,0.765653789043427,-0.000254549668170512,0.643252849578857,0.765653789043427,-0.000254116166615859,0.00176800228655338,0.00210940511897206,-0.999996304512024,0.00176291435491294,0.00210334709845483,-0.999996244907379,0.00176800217013806,0.00210940511897206,-0.999996304512024,0.0017730895197019,0.00211546267382801,-0.999996185302734,-0.765738964080811,0.643151640892029,-0,-0.76569527387619,0.643203675746918,-0,-0.765738964080811,0.643151640892029,-0,-0.765782594680786,0.643099546432495,-0,0.643948912620544,0.765068471431732,8.77596107784484e-007,0.643609285354614,0.76535427570343,8.62311594573839e-007,0.643269538879395,0.765639781951904,8.4702730873687e-007,0.643609285354614,0.76535427570343,8.62310685079137e-007,-0.304133772850037,-0.952629327774048,0,-0.293058812618256,-0.95609438419342,0,-0.281944394111633,-0.959430754184723,0,-0.293058812618256,-0.95609438419342,0,0.643248558044434,0.765657424926758,7.85618858856196e-009,0.643260180950165,0.765647768974304,1.21209726283711e-011,0.643271744251251,0.765637934207916,-7.9139574893361e-009,
- 0.643260180950165,0.765647768974304,-6.60049879336322e-012,0.64473170042038,0.764408946037292,-0.000130011772853322,0.643252730369568,0.765653908252716,-0.000122140452731401,0.64473170042038,0.764408946037292,-0.000130011918372475,0.646208226680756,0.76316112279892,-0.000137882394483313,0.646208703517914,0.763160884380341,-7.14717498340178e-006,0.646208643913269,0.763160824775696,-6.9465004344238e-006,0.646208703517914,0.763160884380341,-6.74582815918257e-006,0.646208643913269,0.763160824775696,-6.9465004344238e-006,0.64325225353241,0.765654325485229,-0.000122137789730914,0.644731163978577,0.764409422874451,-0.000130008716951124,0.646207630634308,0.763161778450012,-0.000137878916575573,0.644731163978577,0.764409422874451,-0.000130008862470277,0.643252074718475,0.765654444694519,-0.000254934391705319,0.643252074718475,0.765654563903809,-0.00025506186648272,0.643252074718475,0.765654444694519,-0.000255189253948629,0.643252074718475,0.765654563903809,-0.00025506186648272,0.762064814567566,-0.647500813007355,-0,0.756974041461945,-0.65344512462616,-0,0.762064814567566,-0.647500813007355,-0,0.767108917236328,-0.641516864299774,-0,-0.644643485546112,-0.764482975006104,-0.000880106934346259,-0.644643425941467,-0.764482915401459,-0.000880456704180688,-0.644643425941467,-0.764482915401459,-0.000871060998179019,-0.644643485546112,-0.764482975006104,-0.000861315464135259,-0.644643425941467,-0.764482915401459,-0.000874076271429658,-0.644088923931122,-0.764950633049011,0.000189895741641521,-0.644706845283508,-0.764429986476898,0.000192821680684574,-0.645324289798737,-0.763908743858337,0.000195747998077422,-0.644706845283508,-0.764429986476898,0.000192821826203726,-0.643125057220459,-0.765761137008667,-0.000237827814999036,-0.644945919513702,-0.764228284358978,-0.000251588586252183,-0.646763026714325,-0.762690961360931,-0.000265347480308264,-0.644945919513702,-0.764228284358978,-0.000251588295213878,0,-0,-1,0,0,-1,0,0,-1,0,0,-1,1,-0,-0,1,-1.75566103877145e-008,-0,1,-3.5113220775429e-008,-0,1,-1.75566103877145e-008,-0,1,-3.26563713315409e-005,-0,
- 1,3.37867078314957e-007,-0,1,-3.26563713315409e-005,-0,1,-6.5650609030854e-005,-0,-3.9141159504652e-006,-4.66014580524643e-006,1,-5.33045840711566e-006,-6.34644220554037e-006,1,-6.74680040901876e-006,-8.03273906058166e-006,1,-5.33045840711566e-006,-6.34644220554037e-006,1,-0.00128215563017875,0.0010771764209494,-0.999998688697815,-0.00135537167079747,0.00113868736661971,-0.999998450279236,-0.00128215563017875,0.0010771764209494,-0.999998688697815,-0.00120893924031407,0.00101566524244845,-0.99999874830246,-0.000130315820570104,0.000109481283288915,1,-0.000260477012488991,0.000218832705286331,0.999999940395355,-0.000130315806018189,0.000109481283288915,1,-1.54585208633762e-007,1.2987055697522e-007,1,-6.51385732908238e-007,5.46242290511145e-007,-1,-6.42121506189142e-007,5.38473500455439e-007,-1,-6.5138567606482e-007,5.46242290511145e-007,-1,-6.60649959627335e-007,5.54011080566852e-007,-1,0.00428980868309736,-0.00360134476795793,0.999984323978424,0.00415473990142345,-0.0034878954757005,0.99998527765274,0.00401967158541083,-0.00337444571778178,0.999986231327057,0.00415473990142345,-0.0034878954757005,0.99998527765274,-0,4.4242315198062e-005,-1,-0,4.42692398792133e-005,-1,-0,4.42961609223858e-005,-1,-0,4.42692398792133e-005,-1,-3.99804639528156e-006,-9.79938530321078e-009,-1,-3.51649919139163e-006,-8.61909299487706e-009,-1,-3.0349519875017e-006,-7.4387984660973e-009,-1,-3.51649919139163e-006,-8.61909121852023e-009,-1,-1.27212604184024e-006,-3.86671104024572e-008,-1,-1.27774990232865e-006,-3.86671104024572e-008,-1,-1.27212604184024e-006,-3.86671068497435e-008,-1,-1.26650218135183e-006,-3.86671032970298e-008,-1,2.10985799640184e-005,-4.30056861659978e-005,1,2.09958361665485e-005,-4.27902996307239e-005,1,2.08930869121104e-005,-4.25749094574712e-005,1,2.09958343475591e-005,-4.27902996307239e-005,1,-5.75642588955816e-005,0,1,-5.76979837205727e-005,-0,1,-5.75642588955816e-005,0,1,-5.74305340705905e-005,0,1,5.8079618611373e-005,0,1,5.80111918679904e-005,0,1,5.79427651246078e-005,0,1,5.80111918679904e-005,0,1,-0.64397120475769,-0.765049755573273,0.000148769293446094,
- -0.643329560756683,-0.765589416027069,0.000146446502185427,-0.642687439918518,-0.766128480434418,0.000144123201607727,-0.643329560756683,-0.765589416027069,0.000146446429425851,0.000884784909430891,0.00105300662107766,-0.999999046325684,0.000884165754541755,0.00105226971209049,-0.999999046325684,0.00088354671606794,0.00105153291951865,-0.999999046325684,0.000884165812749416,0.00105226971209049,-0.999999046325684,0.00122095085680485,-0.00102588138543069,-0.99999874830246,0.00121584988664836,-0.00102159543894231,-0.99999874830246,0.00121074880007654,-0.00101730937603861,-0.99999874830246,0.00121584977023304,-0.00102159543894231,-0.99999874830246,-0.000935008400119841,-0.00111294712405652,-0.999999046325684,-0.00089106586528942,-0.00106064206920564,-0.999999046325684,-0.000935008400119841,-0.00111294712405652,-0.999999046325684,-0.00097895076032728,-0.00116525206249207,-0.999998867511749,1.33606917529505e-007,2.02160336471024e-007,1,1.09310406060104e-007,1.73240209733194e-007,1,8.50138874852746e-008,1.44320097206219e-007,1,1.09310391849249e-007,1.73240223944049e-007,1,2.48358446697239e-007,-1.40310618235162e-007,1,1.89458944532817e-007,-9.08290331835815e-008,1,1.30559442368394e-007,-4.13474268157188e-008,1,1.89458944532817e-007,-9.08290189727268e-008,1,6.89411754137836e-005,8.20555360405706e-005,1,-1.52976866729659e-007,-1.82076945520748e-007,1,6.89411754137836e-005,8.2055528764613e-005,1,0.000138035320560448,0.000164293131092563,1,3.18234560836572e-006,-2.66876668320037e-006,-1,1.89547586160188e-006,-1.58957686835493e-006,-1,6.08606228524877e-007,-5.10386996666057e-007,-1,1.89547586160188e-006,-1.58957698204176e-006,-1,-2.72485885943752e-005,-3.24328939314e-005,-1,-5.40018336323556e-005,-6.42761951894499e-005,-1,-2.72485904133646e-005,-3.24328939314e-005,-1,-4.95348842832755e-007,-5.89593696531665e-007,-1,4.89839067085995e-007,6.44860392640112e-007,-1,4.96148572892707e-007,6.53166694064566e-007,-1,5.02458078699419e-007,6.61472995489021e-007,-1,4.96148572892707e-007,6.53166694064566e-007,-1,-0.647869348526001,-0.761751413345337,-0.000311613926896825,
- -0.646073579788208,-0.76327508687973,-0.000296721613267437,-0.644274175167084,-0.764794588088989,-0.000281828542938456,-0.646073579788208,-0.76327508687973,-0.000296721962513402,-2.55573922913754e-006,-5.45992952538654e-006,1,-2.3151492314355e-006,-5.17345688422211e-006,1,-2.55573877439019e-006,-5.45992952538654e-006,1,-2.79632877209224e-006,-5.74640307604568e-006,1,-0.64341789484024,-0.765514254570007,0.00116967025678605,-0.64341789484024,-0.765514254570007,0.00117034581489861,-0.64341789484024,-0.765514373779297,0.00117428170051426,-0.643417954444885,-0.765514194965363,0.0011775417951867,-0.643417954444885,-0.765514254570007,0.00117274455260485,-0.643335461616516,-0.765583634376526,-0.0011152847437188,-0.64333575963974,-0.765583992004395,-0.000690946180839092,-0.643335461616516,-0.765583634376526,-0.0011152847437188,-0.643335103988647,-0.765583157539368,-0.00153962301556021,-0.646207809448242,-0.763161301612854,-0.000728622311726213,-0.646207511425018,-0.763160943984985,-0.00115550810005516,-0.64620715379715,-0.763160407543182,-0.00158239377196878,-0.646207511425018,-0.763160943984985,-0.00115550810005516,-0,0.0001068068886525,-1,-0,0.0001068068886525,-1,-0,0.0001068068886525,-1,-0,0.0001068068886525,-1,-1.29022953387903e-006,0.000504539057146758,-0.99999988079071,-1.29024169837066e-006,0.000504543888382614,-0.99999988079071,-1.29025409023598e-006,0.000504548661410809,-0.99999988079071,-1.2902418120575e-006,0.000504543888382614,-0.99999988079071,0,-3.32888612319948e-006,-1,0,-1.31079887069063e-005,-1,0,-2.28870903811185e-005,-1,0,-1.31079887069063e-005,-1,1.24243074162145e-010,-0.000138433766551316,1,1.24231472331537e-010,-0.000138420844450593,1,1.2421987050093e-010,-0.000138407907797955,1,1.24231472331537e-010,-0.000138420844450593,1,0.642489790916443,0.766282320022583,-0.00427384302020073,0.642361760139465,0.766389667987823,-0.00427216803655028,0.642489790916443,0.766282320022583,-0.00427384302020073,0.64261782169342,0.766174972057343,-0.0042755170725286,0.64222639799118,0.766473472118378,-0.00799247808754444,
- 0.642245829105377,0.766477048397064,-0.00577100971713662,0.642262041568756,0.766477048397064,-0.00354951363988221,0.642245769500732,0.766477048397064,-0.00577100971713662,0.641443371772766,0.767117977142334,-0.00896555837243795,0.64161491394043,0.766974449157715,-0.00896869972348213,0.641786456108093,0.766830921173096,-0.00897184014320374,0.64161491394043,0.766974449157715,-0.00896869786083698,0.641927182674408,0.766728639602661,-0.00752320652827621,0.641901850700378,0.766721427440643,-0.0100141819566488,0.641927182674408,0.766728639602661,-0.00752320652827621,0.641948699951172,0.766731083393097,-0.00503218453377485,0.00012746533320751,0.764408648014069,0.644732117652893,0.000124515267089009,0.76565420627594,0.643252432346344,0.000127465362311341,0.764408648014069,0.644732117652893,0.000130414904560894,0.763160228729248,0.646209299564362,6.82070094626397e-006,0.763160705566406,0.646208763122559,6.70214467390906e-006,0.763160705566406,0.646208763122559,6.82070049151662e-006,0.763160705566406,0.646208703517914,6.93925676387153e-006,0.763160705566406,0.646208703517914,0.000124253463582136,0.765654802322388,0.643251717090607,0.000127488732687198,0.76440954208374,0.644731044769287,0.000130723376059905,0.763161540031433,0.646207928657532,0.000127488630823791,0.76440954208374,0.644731044769287,0.00025464128702879,0.765654325485229,0.643252193927765,0.000254920858424157,0.765654385089874,0.64325213432312,0.000255200429819524,0.765654385089874,0.64325213432312,0.000254920858424157,0.765654385089874,0.64325213432312,-0.000187179772183299,-0.764951288700104,-0.64408814907074,-0.000189015132491477,-0.764426290988922,-0.644711256027222,-0.000190850274520926,-0.763900637626648,-0.645333826541901,-0.000189015074283816,-0.764426290988922,-0.644711256027222,0.00023613304074388,-0.765760779380798,-0.643125653266907,0.000251386518357322,-0.764231026172638,-0.644942581653595,0.000266638409812003,-0.762697041034698,-0.646755874156952,0.000251386605668813,-0.764231026172638,-0.644942581653595,-1,-2.87577367998892e-005,3.42275707225781e-005,
- -1,-2.87781986116897e-005,3.4251919714734e-005,-1,-2.87577367998892e-005,3.42275707225781e-005,-1,-2.87372768070782e-005,3.42032180924434e-005,-0.000147531405673362,-0.765055358409882,-0.643964529037476,-0.000145947269629687,-0.765592277050018,-0.643326163291931,-0.000144363250001334,-0.766128599643707,-0.642687320709229,-0.000145947269629687,-0.765592277050018,-0.643326163291931,0.00031692220363766,-0.761787891387939,-0.647826433181763,0.00029896735213697,-0.763293206691742,-0.646052241325378,0.000281011074548587,-0.76479434967041,-0.644274413585663,0.000298967730486766,-0.763293206691742,-0.646052241325378,0.000870672112796456,-0.764482378959656,-0.64464408159256,0.000861769018229097,-0.764482438564301,-0.644644141197205,0.000870672112796456,-0.764482319355011,-0.64464408159256,0.000879575323779136,-0.764482378959656,-0.644644021987915,-0.00117004243656993,-0.765514433383942,-0.643417656421661,-0.00117374584078789,-0.765514433383942,-0.643417656421661,-0.00117744924500585,-0.765514433383942,-0.643417656421661,-0.00117374584078789,-0.765514373779297,-0.643417716026306,0.00151095748879015,-0.765583455562592,-0.643334805965424,0.00110367476008832,-0.76558393239975,-0.643335282802582,0.000696391623932868,-0.765584170818329,-0.643335402011871,0.001103674643673,-0.76558393239975,-0.643335163593292,0.00114106631372124,-0.763159990310669,-0.646208524703979,0.00153592124115676,-0.7631596326828,-0.646208167076111,0.00114106643013656,-0.763160109519959,-0.646208465099335,0.000746211560908705,-0.763160407543182,-0.646208822727203,-1,-3.70879206457175e-005,-2.80366766673978e-005,-1,-3.70879206457175e-005,-2.80366766673978e-005,-1,-3.70879206457175e-005,-2.80366766673978e-005,-1,-1.14612421384663e-005,-9.62644480750896e-006,-1,-1.14612421384663e-005,-9.62644480750896e-006,-1,-1.14612421384663e-005,-9.62644480750896e-006,0.999998688697815,0.00103876600041986,-0.00123643584083766,0.999998569488525,0.00112680706661195,-0.00134123046882451,0.999998211860657,0.00121484789997339,-0.00144602486398071,0.999998569488525,0.00112680706661195,-0.00134123046882451,
- -1,-4.97429027745966e-005,5.92091491853353e-005,-1,-0.00012031254300382,0.000143208439112641,-0.999999940395355,-0.000190882201422937,0.000227207739953883,-1,-0.000120312550279778,0.000143208439112641,1,-1.31905826492584e-005,1.57507547555724e-005,1,-2.49557488132268e-005,2.97805636364501e-005,1,-3.67209140677005e-005,4.38103743363172e-005,1,-2.4955745175248e-005,2.97805672744289e-005,-0.999982714653015,-0.00378286396153271,0.00450659450143576,-0.999982714653015,-0.00378247676417232,0.00450613303110003,-0.999982714653015,-0.00378286419436336,0.00450659450143576,-0.999982714653015,-0.00378325185738504,0.00450705597177148,1,-1.5177302259417e-007,-6.19217607891187e-005,1,-2.17769581922767e-007,-8.88476424734108e-005,1,-1.5177302259417e-007,-6.19217607891187e-005,1,-8.57764632655744e-008,-3.49958754668478e-005,1,0,-9.55684527070844e-007,1,0,-9.58779196480464e-007,1,0,-9.61873865890084e-007,1,0,-9.58779196480464e-007,-1,-4.30979089287575e-005,2.05595661100233e-005,-1,-4.30592081102077e-005,2.05411051865667e-005,-1,-4.30979052907787e-005,2.05595679290127e-005,-1,-4.31366061093286e-005,2.05780288524693e-005,-1,0,-5.74398945900612e-005,-1,0,-5.83884830120951e-005,-1,0,-5.93370677961502e-005,-1,0,-5.83884830120951e-005,-1,-4.98900192269502e-008,5.83455985179171e-005,-1,-4.98900902812238e-008,5.82634384045377e-005,-1,-4.98900192269502e-008,5.83455985179171e-005,-1,-4.98899517253903e-008,5.84277549933176e-005,0.999999046325684,0.00105907930992544,0.000889891409315169,0.999999046325684,0.00106493406929076,0.000894810887984931,0.999999046325684,0.00105907919351012,0.000889891525730491,0.999999046325684,0.00105322443414479,0.000884971988853067,0.999998807907104,-0.000992202898487449,0.00118087511509657,0.99999874830246,-0.00101994327269495,0.00121389050036669,0.999998807907104,-0.000992202898487449,0.00118087511509657,0.999998867511749,-0.00096446240786463,0.00114785972982645,0.999999403953552,-0.000836349092423916,-0.000702632125467062,0.999999284744263,-0.00091770215658471,-0.000770978280343115,0.999999165534973,-0.000999055220745504,-0.000839324435219169,
- 0.999999284744263,-0.000917702098377049,-0.000770978338550776,-1,-2.60369397437898e-005,-2.18743098230334e-005,-1,-4.83269941469189e-005,-4.06007638957817e-005,-1,-2.60369397437898e-005,-2.18743098230334e-005,-1,-3.74688534066081e-006,-3.14785552291141e-006,-1,-9.13068106456194e-006,1.0868551726162e-005,-1,3.84543454856612e-006,-4.57734904557583e-006,-1,-9.13068106456194e-006,1.08685526356567e-005,-1,-2.210679667769e-005,2.63144538621418e-005,-1,-1.19579090096522e-005,-1.00467650554492e-005,-1,-1.72007512446726e-005,-1.44516834552633e-005,-1,-2.24435934796929e-005,-1.88566009455826e-005,-1,-1.72007512446726e-005,-1.44516834552633e-005,1,-1.0371537428e-005,1.32018376461929e-005,1,1.64061646046321e-006,-1.12162558707496e-006,1,-1.0371537428e-005,1.32018376461929e-005,1,-2.23836905206554e-005,2.75253005384002e-005,1,4.00321951019578e-005,3.45033695339225e-005,1,3.70730340364389e-005,3.20172875944991e-005,1,3.41138766088989e-005,2.95312020170968e-005,1,3.70730340364389e-005,3.20172875944991e-005,1,-8.57663962960942e-006,-6.65984453007695e-006,1,-1.56686164700659e-005,-1.204693580803e-005,1,-8.57663962960942e-006,-6.6598449848243e-006,1,-1.48466244809242e-006,-1.27275416161865e-006,0.999999105930328,-0.00133251980878413,3.40766132467252e-006,0.999999105930328,-0.00133249745704234,3.40760425387998e-006,0.999999105930328,-0.00133247510530055,3.40754672834009e-006,0.999999105930328,-0.00133249745704234,3.40760379913263e-006,1,-9.78690877673216e-005,-0,1,-0.000115870163426735,0,1,-0.00013387123181019,0,1,-0.000115870163426735,0,-1,-0.000103773978480604,6.51129781203963e-008,-1,-0.000103740239865147,6.51129781203963e-008,-1,-0.00010370650124969,6.51129781203963e-008,-1,-0.000103740239865147,6.51129852258237e-008,0.999996423721313,0.00205289642326534,0.00172016338910908,0.999996423721313,0.00205289642326534,0.0017201635055244,0.999996423721313,0.00205289619043469,0.00172016362193972,0.706193864345551,0.00155933096539229,-0.708016812801361,0.70620185136795,0.00154598127119243,-0.708008885383606,0.706206679344177,0.00153773394413292,-0.708004057407379,
- 0.706206738948822,0.00153780414257199,-0.708004057407379,0.706203401088715,0.00154340313747525,-0.708007395267487,0.706196963787079,0.00155413127504289,-0.708013772964478,-0.739457309246063,0.672421932220459,-0.0324299447238445,-0.703108608722687,0.0047196289524436,0.711066842079163,-0.706718146800995,0.000459586968645453,0.707495033740997,-0.743403494358063,0.667856574058533,-0.0363138914108276,-0.703108608722687,0.0047196289524436,0.711066842079163,0.0405255705118179,-0.66283643245697,0.747666716575623,0.0402719601988792,-0.663116574287415,0.747431993484497,-0.706718146800995,0.000459586968645453,0.707495033740997,0.0405255705118179,-0.66283643245697,0.747666716575623,0.747337281703949,-0.663226902484894,0.040212120860815,0.747240304946899,-0.663342297077179,0.0401124320924282,0.0402719601988792,-0.663116574287415,0.747431993484497,0.747337281703949,-0.663226902484894,0.040212120860815,0.706990361213684,-0.000143962679430842,-0.707223176956177,0.70699405670166,-0.000134441739646718,-0.707219481468201,0.747240304946899,-0.663342297077179,0.0401124320924282,0.708866000175476,0.00208818097598851,-0.705340087413788,-0.0355632491409779,0.668707013130188,-0.742675125598907,-0.0359928421676159,0.668193280696869,-0.743116676807404,0.708049654960632,0.00112059735693038,-0.706161856651306,-0.0355632491409779,0.668707013130188,-0.742675125598907,-0.739457309246063,0.672421932220459,-0.0324299447238445,-0.743403494358063,0.667856574058533,-0.0363138914108276,-0.0359928421676159,0.668193280696869,-0.743116676807404,0.500042021274567,0.86600124835968,-6.67843123665079e-005,1,8.5361432411446e-007,-3.03066681226483e-005,1,1.45639587572077e-005,4.18753697886132e-005,0.499971956014633,0.866041600704193,1.07821938399866e-006,1,8.5361432411446e-007,-3.03066681226483e-005,0.50002121925354,-0.86601322889328,1.03129268609337e-005,0.499964654445648,-0.866045832633972,5.46324990864377e-005,1,1.45639587572077e-005,4.18753697886132e-005,0.50002121925354,-0.86601322889328,1.03129268609337e-005,-0.499957889318466,-0.866049706935883,-8.50938886287622e-005,
- -0.500042378902435,-0.866001009941101,-1.2650499229494e-005,0.499964654445648,-0.866045832633972,5.46324990864377e-005,-0.499957889318466,-0.866049706935883,-8.50938886287622e-005,-1,7.85712813922146e-007,-0.00029653703677468,-1,1.44853602250805e-005,-0.000288301322143525,-0.500042378902435,-0.866001009941101,-1.2650499229494e-005,-1,9.56830717768753e-007,0.000199822417926043,-0.499978721141815,0.866037726402283,-7.21479518688284e-005,-0.500049591064453,0.865996778011322,3.28957758028992e-005,-1,1.46533784572966e-005,0.000199811867787503,-0.499978721141815,0.866037726402283,-7.21479518688284e-005,0.500042021274567,0.86600124835968,-6.67843123665079e-005,0.499971956014633,0.866041600704193,1.07821938399866e-006,-0.500049591064453,0.865996778011322,3.28957758028992e-005,1,-0,-5.68114943977349e-010,1,-0,-5.68115054999652e-010,1,-5.26204132711428e-007,-5.68115054999652e-010,1,5.26192081906629e-007,-5.68114943977349e-010,1,2.10479242923611e-006,-5.68115054999652e-010,1,2.63096040953315e-007,-5.68115054999652e-010,-1,7.85866973274096e-007,-4.42302916781046e-005,-1,6.28662110102596e-006,-4.42302989540622e-005,-1,1.57173394654819e-006,-4.42302916781046e-005,-1,-1.57157660396479e-006,-4.42302916781046e-005,-1,0,-4.42302916781046e-005,-1,0,-4.42302953160834e-005,-0.713657796382904,0.0111881606280804,0.700405120849609,-0.713675022125244,0.0112177850678563,0.700387179851532,-0.713663995265961,0.0111987562850118,0.700398743152618,-0.713657379150391,0.0111873503774405,0.700405597686768,-0.713673532009125,0.0112153785303235,0.700388669967651,-0.713659584522247,0.0111911352723837,0.700403273105621,2.84887846646598e-007,-0,-1,2.37406567293874e-007,0,-1,1.89925302152005e-007,0,-1,2.37406567293874e-007,0,-1,-1.53724940332722e-007,0,-1,-1.53724940332722e-007,0,-1,-1.53724940332722e-007,0,-1,-1.53724940332722e-007,0,-1,-2.47257260578061e-015,-8.53192219096854e-008,-1,-4.94514436452827e-015,-1.70638443819371e-007,-1,-2.47257239402237e-015,-8.53192219096854e-008,-1,-0,0,-1,1,-6.15899239164719e-007,-0,1,-6.15899239164719e-007,0,1,-6.15899239164719e-007,0,
- 1,-6.15899239164719e-007,0,-5.52742107049224e-015,1.90730617077861e-007,-1,-4.94513674123174e-015,1.70638188023986e-007,-1,-5.52742107049224e-015,1.90730617077861e-007,-1,-6.10970497623626e-015,2.10823060342591e-007,-1,-1,-0,0,-1,-1.00599481811514e-005,-8.10808978712885e-006,-1,-2.01198963623028e-005,-1.62161795742577e-005,-1,-1.00599481811514e-005,-8.10808978712885e-006,-0.544513881206512,-0.63463306427002,-0.548402845859528,-0.546977460384369,-0.63031929731369,-0.550920486450195,-0.549424052238464,-0.625985980033875,-0.553420960903168,-0.546977460384369,-0.63031929731369,-0.550920486450195,-0.544106662273407,-0.643828213214874,-0.537989914417267,-0.544891774654388,-0.643846035003662,-0.537173509597778,-0.545676112174988,-0.643862962722778,-0.536356449127197,-0.544891774654388,-0.643846035003662,-0.537173569202423,-0.550163865089417,-0.62379115819931,-0.555161535739899,-0.54251354932785,-0.637277662754059,-0.547317445278168,-0.534699320793152,-0.650571703910828,-0.539307951927185,-0.542513608932495,-0.637277662754059,-0.547317326068878,-0.550379812717438,-0.624737679958344,-0.553881704807281,-0.550071179866791,-0.624731063842773,-0.554195642471313,-0.550379812717438,-0.624737679958344,-0.553881704807281,-0.55068838596344,-0.624744057655334,-0.55356764793396,5.73963661736343e-005,-4.53288350854564e-007,-1,5.73964061914012e-005,-6.27057801239062e-008,-1,5.73964462091681e-005,3.27876790606751e-007,-1,5.73964061914012e-005,-6.27057801239062e-008,-1,0.000521521491464227,-0.643747806549072,0.765237629413605,0.000521515612490475,-0.643149554729462,0.765740394592285,0.000521521491464227,-0.643747806549072,0.765237629413605,0.000521526962984353,-0.644345581531525,0.764734268188477,0,-0.765653669834137,-0.643253028392792,0,-0.765657365322113,-0.643248617649078,0,-0.765661180019379,-0.64324426651001,0,-0.765657365322113,-0.643248617649078,4.39343628144684e-009,-0.765655755996704,-0.643250524997711,2.43264963728507e-009,-0.765652179718018,-0.643254816532135,4.4556203171453e-010,-0.765648543834686,-0.643259108066559,2.45137088406011e-009,-0.765652179718018,-0.643254816532135,
- 0,-0.766254603862762,-0.64253705739975,0,-0.766246378421783,-0.642546892166138,0,-0.766238152980804,-0.642556667327881,0,-0.766246378421783,-0.642546892166138,1.642536858526e-006,0.657561957836151,-0.753400504589081,1.66471136253676e-006,0.651732325553894,-0.758449137210846,1.68678707268555e-006,0.645863831043243,-0.763452768325806,1.66471113516309e-006,0.651732325553894,-0.758449137210846,-0,0.00255891866981983,0.999996721744537,0,0.0025586427655071,0.999996721744537,0,0.00255836686119437,0.999996721744537,0,0.0025586427655071,0.999996721744537,0,3.14801982312929e-005,-1,0,-2.58851764556312e-006,-1,0,3.14801982312929e-005,-1,-0,6.55489129712805e-005,-1
- }
- TangentsW: *511 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *758 {
- a: -0.868268489837646,2.44490551948547,-0.839587926864624,2.49323844909668,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,0.999991595745087,-1.38166737556458,0.999991059303284,1.00834882259369,1,0.37791445851326,1,0.399469941854477,-0.678365230560303,0.15657165646553,-0.570942878723145,0.161855012178421,-0.570943474769592,0.25517937541008,-0.678367614746094,0.255178213119507,0.319603800773621,2.65255403518677,0.29799747467041,2.60196304321289,0.358175128698349,2.57765698432922,0.379891574382782,2.63089942932129,1.63643741607666,1.93072307109833,1.63643717765808,1.95292556285858,1.52901220321655,1.95292556285858,1.52901220321655,1.93072307109833,1.89676320552826,1.29820048809052,1.86659955978394,1.38871693611145,1.86645531654358,1.44277369976044,1.86690855026245,1.15084552764893,1.89679324626923,1.24146950244904,-2.83798456192017,1.4860006570816,-2.83798432350159,1.56606566905975,-2.83798456192017,1.41917669773102,-2.83798503875732,1.33913838863373,-2.83798408508301,1.63290297985077,0.0271112322807312,1.78001141548157,0.0271113608032465,1.86109840869904,0.0271108523011208,1.92878484725952,0.0271102096885443,2.0066978931427,0.027113588526845,1.71232402324677,-1.00000023841858,-1.27815628051758,-1.00000047683716,-1.35376119613647,-0.999999821186066,-1.04781293869019,-0.999999940395355,-1.1310179233551,-1.00000011920929,-1.1987030506134,-0.839587926864624,2.49323844909668,-0.868268489837646,2.44490551948547,-0.839587688446045,2.53516316413879,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,0.998032569885254,2.1027557849884,0.967716932296753,2.1538827419281,0.831901431083679,2.44490575790405,0.884720742702484,2.49323844909668,0.884720742702484,2.53516244888306,0.88471931219101,2.35204434394836,0.831901431083679,2.40037655830383,2.00002861022949,-1.0362696647644,1.09317803382874,-1.04979503154755,1.07510912418365,-1.05004096031189,0.989585161209106,-1.64615273475647,0.989429652690887,-1.62817907333374,0.0710635781288147,
- 1.4411164522171,0.169339954853058,1.23996567726135,0.0710674822330475,1.14920115470886,0.998017072677612,2.05566096305847,0.967653036117554,1.96021413803101,0.967668056488037,2.00455355644226,1.08881449699402,1.43448841571808,1.07048487663269,1.45619523525238,2.00002431869507,1.43733251094818,0.103080749511719,0.574472188949585,0.103668212890625,0.487653970718384,0.160168647766113,0.487653970718384,0.159582138061523,0.574472188949585,-0.0530261993408203,0.515445232391357,-0.0530261993408203,0.484554767608643,-1.1590747833252,0.612733900547028,-1.1590838432312,0.574734926223755,-4.39207497038296e-008,0.786456227302551,-4.2840838432312e-008,0.885368525981903,-1,0.466297686100006,-1,0.487853229045868,0.55122184753418,0.550684452056885,0.44877815246582,0.550684452056885,0.449037551879883,0.44931560754776,0.55122184753418,0.449566066265106,6.05359673500061e-008,0.225367814302444,6.0440690674568e-008,0.324379235506058,8.89802777237492e-007,0.697252929210663,0.999999940395355,0.720146417617798,0.999999940395355,0.995401442050934,0.999999225139618,0.868566453456879,0.999999940395355,0.643750131130219,0.631324052810669,0.0144635140895844,0.711964130401611,0.014463484287262,0.71194452047348,0.140752255916595,0.57633763551712,0.140742510557175,1.99996936321259,0.869565606117249,1.99999868869781,0.995168745517731,1.0219783782959,1.00834667682648,1.02208805084229,-1.40797626972198,-1.0539870262146,0.399493455886841,0.0969037413597107,2.49323844909668,0.0341309905052185,2.35204362869263,0.034131795167923,2.53516292572021,-0.0322410762310028,2.40037631988525,0.0306433439254761,2.44490575790405,0.499982446432114,-1.38166213035584,-0.606035113334656,0.574675858020782,-1.03715217113495,0.377937763929367,-1.03715491294861,1.0083612203598,0.111916497349739,1.38713383674622,0.215157523751259,1.29660403728485,-1.85348737239838,1.48460924625397,-1.79624164104462,1.41769170761108,-1.84669208526611,1.63133764266968,-1.84610617160797,1.33758807182312,-1.90361094474792,1.56474697589874,-1.40984225273132,1.86109817028046,-1.47075712680817,1.92878448963165,
- -1.42031121253967,1.71190214157104,-1.42040705680847,2.00700855255127,-1.35972607135773,1.78001117706299,0.87885195016861,-1.27815783023834,0.934635758399963,-1.04798603057861,0.934634923934937,-1.35376954078674,0.884516477584839,-1.13101947307587,0.831665635108948,-1.19870460033417,-0.521086156368256,2.00350522994995,-0.452325701713562,2.15686273574829,-0.45233166217804,1.95804715156555,-0.381511718034744,2.10421133041382,3.18083739280701,-1.05557310581207,-1.08880949020386,-1.65705549716949,-1.10258781909943,-1.6396050453186,-0.0905496925115585,-1.03628385066986,-0.450049608945847,2.05600571632385,-0.606027483940125,0.612674832344055,0.071235217154026,1.41411828994751,0.169466078281403,1.26477384567261,0.499928027391434,0.484530299901962,1.59391593933105,1.43309020996094,0.49992847442627,0.515420734882355,1.50007355213165,1.43732941150665,1.96364724636078,0.225370496511459,0.963650047779083,0.487620174884796,1.96341407299042,0.88536012172699,0.9634148478508,0.466064691543579,1.87102723121643,0.324381768703461,1.87129092216492,0.697211146354675,1.87103021144867,0.786450147628784,-1.06585037708282,0.720026433467865,-0.989511847496033,0.995288729667664,0.0103950649499893,0.869881808757782,-0.989444494247437,0.643634855747223,0.0103976428508759,0.995485007762909,-1.11805629730225,0.868443489074707,-0.839587926864624,2.49323844909668,-0.868268489837646,2.44490551948547,-0.393752545118332,2.44490575790405,-0.339682787656784,2.49323844909668,-0.839587688446045,2.53516316413879,-0.411120176315308,2.53516292572021,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,-0.411120772361755,2.35204315185547,-0.465184926986694,2.4003758430481,-0.839587926864624,2.49323844909668,-0.868268489837646,2.44490551948547,-0.23693573474884,2.44490551948547,-0.170680731534958,2.49323844909668,-0.839587688446045,2.53516316413879,-0.107909321784973,2.53516292572021,-0.868268728256226,2.4003758430481,-0.839587807655334,2.35204291343689,-0.107910007238388,2.35204339027405,-0.174001216888428,2.40037608146667,1.89679324626923,
- 1.24146950244904,0.841362357139587,1.24055075645447,0.737015128135681,1.14981091022491,1.86690855026245,1.15084552764893,0.998017072677612,2.05566096305847,-0.604697346687317,2.05604243278503,-0.677972674369812,2.00339460372925,0.967668056488037,2.00455355644226,1.53726708889008,0.378001660108566,1.55410027503967,0.399557739496231,9.63211059570313e-005,0.39948958158493,9.59038734436035e-005,0.377934336662292,0.656124711036682,1.38762485980988,0.760304033756256,1.29712152481079,1.89676320552826,1.29820048809052,1.86659955978394,1.38871693611145,-0.748180270195007,2.15748357772827,-0.67466801404953,2.10452079772949,0.998032569885254,2.1027557849884,0.967716932296753,2.1538827419281,0.736844599246979,1.44173097610474,1.86645531654358,1.44277369976044,-0.748174130916595,1.95759558677673,0.967653036117554,1.96021413803101,0.999443769454956,1.43719696998596,0.999505937099457,-1.0363450050354,2.59073114395142,-1.03626823425293,-0.000253021717071533,1.00828385353088,-0.000249727629125118,-1.38166701793671,1.53675651550293,1.008260846138,-1.83791589736938,1.56471705436707,-1.83826851844788,1.63094925880432,-2.32999539375305,1.63177299499512,-2.27235722541809,1.5653383731842,-0.97295218706131,1.7801501750946,-0.972993195056915,1.71272563934326,-0.0251859426498413,1.71248650550842,-0.0860170722007751,1.7800920009613,4.94718551635742e-005,-1.19867014884949,5.2332878112793e-005,-1.13098978996277,-1.38450109958649,-1.13106739521027,-1.33164918422699,-1.19869709014893,-0.0111258029937744,-1.63449215888977,-0.0112267136573792,-1.65161764621735,1.5667382478714,-1.64277422428131,1.58059728145599,-1.6255669593811,1.00007677078247,0.885309755802155,1.00003683567047,0.786311030387878,-0.371026605367661,0.786441564559937,-0.4633948802948,0.885364592075348,1.00005602836609,0.324380278587341,1.0000559091568,0.225368902087212,-0.463633179664612,0.225367397069931,-0.371013671159744,0.324378877878189,-2.74777412414551e-005,0.868508577346802,-1.99079513549805e-005,0.720088362693787,1.56590116024017,0.720179855823517,1.61808097362518,0.86860328912735,
- -5.75780868530273e-005,0.99534547328949,1.4894825220108,0.995429873466492,-1.67489051818848e-005,0.643691062927246,1.48950386047363,0.643777847290039,-1.83789885044098,1.48459386825562,-2.32244729995728,1.48527932167053,-1.83801376819611,1.41787624359131,-2.37978506088257,1.41860139369965,-1.83783149719238,1.33805954456329,-2.32946228981018,1.33860969543457,-0.972872793674469,1.86111509799957,-0.0358536243438721,1.86111032962799,-0.972885072231293,1.92878234386444,0.0249261260032654,1.92881155014038,-0.973147571086884,2.00658893585205,-0.025559663772583,2.00660371780396,0.000209212303161621,-1.35380423069,5.26309013366699e-005,-1.27815318107605,-1.37881469726563,-1.27815592288971,-1.43443024158478,-1.35375332832336,7.18235969543457e-005,-1.04834890365601,-1.43460083007813,-1.04841589927673,3.75509262084961e-005,0.488387376070023,3.76701354980469e-005,0.466831862926483,-1.46317911148071,0.466373234987259,-1.46341395378113,0.487928658723831,0.999947667121887,0.697374224662781,-0.3712018430233,0.697552680969238,0.99984210729599,0.995187640190125,0.999864935874939,0.869584619998932,2.48963761329651,0.86940723657608,2.48961544036865,0.995010316371918,2.09026765823364,-1.05252230167389,2.10541248321533,1.43165230751038,0.50155371427536,-1.04824137687683,0.520336151123047,0.488236874341965,0.520390450954437,0.511676132678986,0.500052392482758,0.523437261581421,0.479660004377365,0.511757552623749,0.479605734348297,0.48831906914711,0.499945372343063,0.476557940244675,0.652590453624725,-2.29826140403748,0.696418344974518,-2.29878520965576,0.622231960296631,0.443462163209915,0.595729649066925,0.443462163209915,0.726073980331421,-2.29883360862732,0.648716568946838,0.443462163209915,0.755551159381866,-2.29886531829834,0.674782037734985,0.443462163209915,0.782233417034149,-2.29886674880981,0.700264453887939,0.443462163209915,0.578402280807495,-2.29761672019959,0.6075758934021,-2.2976930141449,0.569622814655304,0.443462163209915,0.544108748435974,0.443462163209915,0.417488545179367,-0.31920599937439,0.443287819623947,-0.319207608699799,
- 0.446772128343582,0.100579425692558,0.421925693750381,0.100579425692558,0.469993114471436,-0.319207429885864,0.471604883670807,0.100579425692558,0.497408241033554,-0.319207310676575,0.496077090501785,0.100579425692558,0.526095390319824,-0.319209754467011,0.520058333873749,0.100579425692558,0.363332957029343,-0.31920462846756,0.392048597335815,-0.31920462846756,0.397419989109039,0.100579425692558,0.373412311077118,0.100579425692558,0.528145253658295,0.529493808746338,0.504430294036865,0.515802085399628,0.504430294036865,0.488419145345688,0.528145253658295,0.474727988243103,0.551860272884369,0.488419145345688,0.551860272884369,0.515802085399628,0.513334095478058,0.515943109989166,0.513334095478058,0.488277524709702,0.537290871143341,0.474445641040802,0.561250507831573,0.488277524709702,0.561250507831573,0.515943109989166,0.537290871143341,0.529776096343994,0.500370800495148,0.523523032665253,0.47977688908577,0.512060225009918,0.479409784078598,0.488535851240158,0.499629527330399,0.476476907730103,0.520220220088959,0.487941056489944,0.520589292049408,0.511464774608612,7.40087813255741e-008,0.463643372058868,0.56783127784729,0.463643550872803,0.567831218242645,0.620991349220276,9.85377024420586e-009,0.620991230010986,0.701555252075195,0.786208808422089,0.701555669307709,0.943555355072021,-5.61189921199912e-008,0.943555235862732,-4.4569979706921e-008,0.786208689212799,0.567831158638,1.10877251625061,-6.99827609196291e-008,1.10877251625061,1.52901268005371,0.392397969961166,1.6364369392395,0.392398029565811,1.63643705844879,0.505195915699005,1.52901268005371,0.50519585609436,0.578722953796387,0.591754913330078,0.42127799987793,0.591754913330078,0.421284139156342,0.362136602401733,0.578717350959778,0.362140566110611,0.155786141753197,1.37915372848511,0.242254555225372,1.29652690887451,1.85519587993622,1.29814541339874,1.8516811132431,1.36222743988037,0.0872885435819626,1.44130790233612,1.8528345823288,1.42788779735565,1.8552314043045,1.24141192436218,0.179119467735291,1.23998010158539,0.0896765664219856,1.1636084318161,1.82543182373047,
- 1.15078663825989,0.571283340454102,0.346496820449829,0.573406219482422,0.574097871780396,0.428995132446289,0.653503656387329,0.426591873168945,0.423984527587891,-1.00000274181366,-1.38165652751923,-1.00000274181366,1.00833773612976,-1.02198898792267,1.00833404064178,-1.02209842205048,-1.40796339511871,-0.172863721847534,0.0143753290176392,-0.172863721847534,-0.068332314491272,-0.0866826772689819,-0.0683255195617676,-0.0866883993148804,0.0143744945526123,0.429749071598053,0.519477248191834,0.429749071598053,0.431555032730103,0.515924036502838,0.431553840637207,0.515925765037537,0.519479632377625,0.987348794937134,1.0020215511322,0.987348794937134,0.925731360912323,1.07352805137634,0.921573162078857,1.07352685928345,1.00210094451904,3.0974907875061,-1.05535054206848,3.1155571937561,-1.05569684505463,3.13406682014465,1.45047760009766,3.11561703681946,1.42887282371521,1.08884811401367,0.950037360191345,1.19128966331482,0.950299501419067,1.19103074073792,1.05141746997833,1.08884811401367,1.05140650272369,0.392148464918137,0.14081683754921,0.392128884792328,0.0145279243588448,0.47276908159256,0.0145279765129089,0.527755379676819,0.14080710709095
- }
- UVIndex: *511 {
- a: 8,98,106,7,1,0,103,99,2,1,99,101,3,4,100,102,0,3,102,103,54,129,138,64,96,6,5,97,9,10,11,12,13,14,15,16,17,18,19,20,41,42,48,49,43,41,49,50,44,45,51,52,42,44,52,48,55,54,64,65,58,135,108,22,23,25,59,60,24,61,133,125,63,67,68,69,70,79,80,81,82,90,91,92,93,107,104,5,6,114,112,30,27,119,117,35,31,124,123,39,40,131,130,56,57,137,139,71,72,143,147,75,76,145,141,83,84,153,148,86,88,149,153,88,87,148,151,89,86,108,109,21,22,110,114,27,26,111,110,26,28,113,111,28,29,115,119,31,32,116,115,32,33,118,116,33,34,122,120,36,37,123,121,38,39,120,124,40,36,126,128,46,47,140,132,53,66,109,136,59,25,21,128,133,61,46,125,127,62,63,105,134,73,74,142,144,77,78,147,146,85,75,152,150,94,95,154,155,156,157,158,154,157,159,160,161,162,163,155,160,163,156,164,165,166,167,168,164,167,169,170,171,172,173,165,170,173,166,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,186,189,195,187,175,174,188,191,179,178,192,180,196,197,181,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,228,231,233,229,234,235,230,236,204,207,237,238,236,237,239,240,238,239,241,242,208,211,243,244,242,243,245,246,244,245,247,248,249,250,251,213,252,253,214,249,212,215,250,254,255,256,257,221,258,259,222,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,274,277,278,275,277,279,280,278,279,281,282,280,283,284,285,286,284,273,276,285,287,288,289,290,288,291,292,289,291,293,294,292,293,295,296,294,297,298,299,300,298,287,290,299,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,325,324,327,328,329,330,331,332,321,323,326,322,333,334,335,336,337,338,339,340,341,337,340,342,343,344,345,346,338,344,343,339,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
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *318 {
- 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,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,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: *126 {
- a: 0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,1,1,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509534432, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -654.1826171875,-20.2465209960938,-0.00146484375,-621.0439453125,-48.0902099609375,-0.00146484375,-0.650390625,758.402954101563,0.00146484375,-0.650390625,691.114868164063,0.00146484375,-0.66259765625,758.388549804688,-198.388671875,-0.66259765625,691.100463867188,-198.388671875,-654.1826171875,-20.2465209960938,-850.646484375,-621.0439453125,-48.0902099609375,-817.5078125
- }
- PolygonVertexIndex: *24 {
- a: 2,0,1,-4,1,0,6,-8,4,6,0,-3,5,3,1,-8,4,5,7,-7,2,3,5,-5
- }
- Edges: *12 {
- a: 1,5,7,3,11,12,0,2,6,8,15,16
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.805052936077118,0.587785065174103,0.079990029335022,0.713981151580811,-0.694755136966705,0.0868687182664871,-0.754810690879822,0.654931247234344,0.0364133678376675,0.770084381103516,-0.624118089675903,0.13208581507206,-0.743176579475403,0.668232619762421,-0.0339652821421623,0.804102540016174,-0.588395655155182,-0.0849099084734917,-0.760401606559753,0.640583753585815,-0.106965705752373,0.724754691123962,-0.673370003700256,-0.145957127213478
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0283749625086784,-0.0228595957159996,0.999335944652557,0.0622911900281906,-0.0503337159752846,0.996788084506989,0.0677654966711998,-0.0549176782369614,-0.996188640594482,0.102742545306683,-0.0830100700259209,-0.991238236427307,-0.493536800146103,-0.58739185333252,-0.641398787498474,-0.493654191493988,-0.589062631130219,-0.639773964881897,0.643210709095001,0.765588998794556,0.0123903509229422,0.610453903675079,0.725782334804535,-0.317153006792068,0.0262874383479357,-0.0215635038912296,-0.999421834945679,0.0824209526181221,-0.0681861564517021,-0.994262278079987,-0.06118293851614,0.0518503710627556,-0.996778905391693,-0.0278931614011526,0.0234149098396301,-0.999336659908295,-0.0649542957544327,0.0550170801579952,-0.996370494365692,0.101191572844982,-0.0849232375621796,-0.991235733032227,0.0669876635074615,-0.0557180792093277,-0.996196925640106,-0.111420892179012,0.0945068821310997,-0.989269375801086,0.383240014314651,0.383511871099472,-0.840265274047852,-0.534206867218018,-0.652485489845276,-0.537480890750885,0.265722930431366,0.46861532330513,-0.842490971088409,0.500354588031769,0.682833850383759,0.532337486743927,-0.655500113964081,-0.755177140235901,-0.00520035019144416,0.557552814483643,0.759074687957764,0.336066037416458,0.514981210231781,0.618060529232025,0.593965947628021,-0.627158224582672,-0.713387250900269,-0.312651753425598
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.655328691005707,-0.755342662334442,0.00132898055016994,-0.589923322200775,-0.807449817657471,-0.00390747329220176,-0.696877896785736,-0.717146694660187,-0.00787024572491646,-0.629614233970642,-0.776908040046692,-0.000198725931113586,-0.496641308069229,-0.415073454380035,0.762273848056793,0.328929871320724,0.554539859294891,-0.764389157295227,-0.0898302048444748,0.059381015598774,0.994185328483582,-0.319494426250458,-0.140758067369461,-0.937075614929199,0.668578684329987,0.743639767169952,0.0015406331513077,0.644201934337616,0.764855027198792,0.000948656466789544,0.590039312839508,0.807353854179382,0.00577987590804696,0.655349433422089,0.755325734615326,-0.000594278448261321,-0.590931534767151,-0.806699275970459,-0.00602054921910167,-0.629865288734436,-0.776701152324677,0.00224257516674697,-0.696952998638153,-0.717084944248199,-0.00675835879519582,-0.67993825674057,-0.733240246772766,0.0065331868827343,0.548466622829437,0.637482345104218,0.541110575199127,-0.260850876569748,-0.477547734975815,0.838990449905396,-0.635705888271332,-0.571815133094788,-0.518561005592346,-0.414043873548508,-0.351271748542786,0.839747428894043,0.0240926723927259,-0.0277942474931479,0.999323308467865,-0.310007929801941,-0.185154393315315,0.932530462741852,-0.297007530927658,-0.521336495876312,0.799996733665466,-0.233154490590096,-0.211053892970085,0.949260413646698
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.298598766326904,2.60172009468079,0.358175128698349,2.57765698432922,0.379891574382782,2.63089942932129,0.32322970032692,2.65125179290771,0,0,1,0,1,0.918104529380798,0,0.882483303546906,0.989989459514618,0.214957699179649,0,0.918104529380798,0,0,0.990007817745209,0,0.0601616650819778,0.214957594871521,0.0601433776319027,0,1,0,1,0.882483303546906,0,0.918104529380798,0.0601433776319027,0,0.0601616650819778,0.214957594871521,0,0.882483303546906,1,0.882561266422272,0.298598766326904,2.60172009468079,0.0601433776319027,0,0,0.918104529380798
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509544672, "Geometry::", "Mesh" {
- Vertices: *18 {
- a: -0.0361328125,758.39306640625,-199.9912109375,-0.0361328125,691.10498046875,-199.9912109375,-654.24365234375,-20.2465209960938,-854.1826171875,-621.10546875,-48.0902099609375,-821.0439453125,-0.0361328125,-20.2465209960938,-854.1826171875,-0.0361328125,-48.0902099609375,-821.0439453125
- }
- PolygonVertexIndex: *18 {
- a: 4,5,3,-3,0,4,-3,1,0,2,-4,1,3,-6,0,1,5,-5
- }
- Edges: *9 {
- a: 10,2,6,7,3,1,0,4,13
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *18 {
- a: -0.0452505089342594,0.748211026191711,-0.661915957927704,0.0291343498975039,-0.434158265590668,0.900365352630615,-0.178689524531364,0.655301690101624,-0.733927726745605,-0.220179006457329,-0.645409643650055,0.731414794921875,0.127484485507011,0.573048651218414,-0.809544861316681,0.141074135899544,-0.70363837480545,0.696413040161133
- }
- NormalsW: *6 {
- a: 1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *54 {
- a: -0.00128386553842574,0.816299378871918,0.577627778053284,0.697775363922119,-0.428342163562775,-0.57413637638092,-0.000377051532268524,-0.749759316444397,-0.661710619926453,0.000877313199453056,0.746038913726807,0.665901780128479,0.457247316837311,0.604624569416046,0.652191698551178,-0.851052165031433,0.482371211051941,0.207432925701141,0.459318161010742,0.715221226215363,0.526768863201141,-0.320089340209961,-0.857367873191834,-0.403067201375961,-0.835118412971497,0.335278213024139,0.436080127954483,0.550927877426147,0.684669435024261,0.477185934782028,0.796298980712891,-0.552004456520081,-0.247384488582611,0.957613706588745,-0.246121719479561,-0.149667263031006,0.609324038028717,-0.676532685756683,-0.413555204868317,0.605897665023804,-0.494951605796814,-0.622824966907501,-0.998965263366699,-0.030869884416461,0.0333977416157722,0.957613706588745,-0.246121719479561,-0.149667263031006,0.697775363922119,-0.428342163562775,-0.57413637638092,-0.851052165031433,0.482371211051941,0.207432925701141
- }
- BinormalsW: *18 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *54 {
- a: 0.99183976650238,-0.0725992247462273,0.104801215231419,0.702287435531616,0.56693571805954,0.430553495883942,0.975459456443787,-0.145970568060875,0.164837911725044,0.983905136585236,0.11834578961134,-0.133884251117706,0.888187646865845,-0.273147284984589,-0.369477063417435,0.509370267391205,0.662520408630371,0.54918909072876,0.870113134384155,-0.24297821521759,-0.428794503211975,-0.946939289569855,0.276454240083694,0.16394829750061,-0.54820591211319,-0.57251101732254,-0.609673261642456,-0.815198540687561,0.31907320022583,0.483367025852203,-0.563408553600311,-0.527955949306488,-0.635478794574738,0.286578714847565,0.866562604904175,0.408585250377655,0.761738479137421,0.354612410068512,0.54222184419632,0.782934248447418,0.509819567203522,0.356507986783981,0.0045552896335721,0.66274231672287,0.74883371591568,0.286578714847565,0.866562604904175,0.408585250377655,0.702287435531616,0.56693571805954,0.430553495883942,0.509370267391205,0.662520408630371,0.54918909072876
- }
- TangentsW: *18 {
- a: -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *28 {
- a: 0.0300808325409889,0.551573753356934,0.5,0.101497702300549,0,0.111853554844856,0,0.888189911842346,0.5,0.908901333808899,0.495003908872604,0.295575082302094,0,0.0911418497562408,0,0.0911418497562408,0.466966092586517,0.500030517578125,0.466966092586517,0.500030517578125,0.5,0.908901333808899,0.530071675777435,0.305930852890015,0.0601433739066124,0.500039219856262,0.530071675777435,0.694114565849304
- }
- UVIndex: *18 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,8,11,1,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *9 {
- a: 1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 2403285684096, "Model::SM_Roof_12m_04", "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: 2403285670176, "Model::LOD_Group_SM_Roof_12m_04", "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: 2403285679456, "Model::SM_Roof_12m_04_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,1.25055521493778e-012,0
- P: "ScalingPivot", "Vector3D", "Vector", "",0,1.25055521493778e-012,0
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285672496, "Model::SM_Roof_12m_04_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,1.25055521493778e-012,0
- P: "ScalingPivot", "Vector3D", "Vector", "",0,1.25055521493778e-012,0
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285677136, "Model::SM_Roof_12m_04_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",7.2600414569024e-010,1.15960574476048e-011,0
- P: "ScalingPivot", "Vector3D", "Vector", "",7.2600414569024e-010,1.15960574476048e-011,0
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285660896, "Model::UCX_SM_Roof_12m_04_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285693376, "Model::UCX_SM_Roof_12m_04_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 2400478221152, "Material::MI_Wood_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2400478222112, "Material::MI_Roof_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2400478212032, "Material::MI_Trim_07", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2398849767872, "Material::M_Collision_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 2400178352256, "Video::file93", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
- }
- Video: 2400178352656, "Video::file78", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_BC.png"
- }
- Video: 2400178353456, "Video::file67", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_BC.png"
- }
- Video: 2400178401056, "Video::file94", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
- }
- Video: 2400178383856, "Video::file79", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_N.png"
- }
- Video: 2400178386256, "Video::file39", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_N.png"
- }
- Texture: 2399039478912, "Texture::file93", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file93"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file93"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2399039476032, "Texture::file78", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file78"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file78"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2400180261984, "Texture::file67", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file67"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file67"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2400180262464, "Texture::file94", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file94"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file94"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2399064907184, "Texture::file79", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file79"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file79"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roof_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roof_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2398827813856, "Texture::file39", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file39"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file39"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_07_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_07_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2400470722624, "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: 2403255003152, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Roof_12m_04, Model::RootNode
- C: "OO",2403285684096,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2403255003152,2400470722624
-
- ;NodeAttribute::, Model::SM_Roof_12m_04
- C: "OO",2399851692960,2403285684096
-
- ;Model::LOD_Group_SM_Roof_12m_04, Model::SM_Roof_12m_04
- C: "OO",2403285670176,2403285684096
-
- ;Model::UCX_SM_Roof_12m_04_LOD0_02, Model::SM_Roof_12m_04
- C: "OO",2403285660896,2403285684096
-
- ;Model::UCX_SM_Roof_12m_04_LOD0_01, Model::SM_Roof_12m_04
- C: "OO",2403285693376,2403285684096
-
- ;NodeAttribute::, Model::LOD_Group_SM_Roof_12m_04
- C: "OO",2403873681920,2403285670176
-
- ;Model::SM_Roof_12m_04_LOD0, Model::LOD_Group_SM_Roof_12m_04
- C: "OO",2403285679456,2403285670176
-
- ;Model::SM_Roof_12m_04_LOD1, Model::LOD_Group_SM_Roof_12m_04
- C: "OO",2403285672496,2403285670176
-
- ;Model::SM_Roof_12m_04_LOD2, Model::LOD_Group_SM_Roof_12m_04
- C: "OO",2403285677136,2403285670176
-
- ;Texture::file93, Material::MI_Wood_01
- C: "OP",2399039478912,2400478221152, "DiffuseColor"
-
- ;Texture::file94, Material::MI_Wood_01
- C: "OP",2400180262464,2400478221152, "NormalMap"
-
- ;Texture::file78, Material::MI_Roof_01
- C: "OP",2399039476032,2400478222112, "DiffuseColor"
-
- ;Texture::file79, Material::MI_Roof_01
- C: "OP",2399064907184,2400478222112, "NormalMap"
-
- ;Texture::file67, Material::MI_Trim_07
- C: "OP",2400180261984,2400478212032, "DiffuseColor"
-
- ;Texture::file39, Material::MI_Trim_07
- C: "OP",2398827813856,2400478212032, "NormalMap"
-
- ;Video::file93, Texture::file93
- C: "OO",2400178352256,2399039478912
-
- ;Video::file78, Texture::file78
- C: "OO",2400178352656,2399039476032
-
- ;Video::file67, Texture::file67
- C: "OO",2400178353456,2400180261984
-
- ;Video::file94, Texture::file94
- C: "OO",2400178401056,2400180262464
-
- ;Video::file79, Texture::file79
- C: "OO",2400178383856,2399064907184
-
- ;Video::file39, Texture::file39
- C: "OO",2400178386256,2398827813856
-
- ;Geometry::, Model::SM_Roof_12m_04_LOD0
- C: "OO",2399509523168,2403285679456
-
- ;Material::MI_Wood_01, Model::SM_Roof_12m_04_LOD0
- C: "OO",2400478221152,2403285679456
-
- ;Material::MI_Roof_01, Model::SM_Roof_12m_04_LOD0
- C: "OO",2400478222112,2403285679456
-
- ;Material::MI_Trim_07, Model::SM_Roof_12m_04_LOD0
- C: "OO",2400478212032,2403285679456
-
- ;Geometry::, Model::SM_Roof_12m_04_LOD1
- C: "OO",2399509525216,2403285672496
-
- ;Material::MI_Wood_01, Model::SM_Roof_12m_04_LOD1
- C: "OO",2400478221152,2403285672496
-
- ;Material::MI_Trim_07, Model::SM_Roof_12m_04_LOD1
- C: "OO",2400478212032,2403285672496
-
- ;Material::MI_Roof_01, Model::SM_Roof_12m_04_LOD1
- C: "OO",2400478222112,2403285672496
-
- ;Geometry::, Model::SM_Roof_12m_04_LOD2
- C: "OO",2399509539552,2403285677136
-
- ;Material::MI_Wood_01, Model::SM_Roof_12m_04_LOD2
- C: "OO",2400478221152,2403285677136
-
- ;Material::MI_Roof_01, Model::SM_Roof_12m_04_LOD2
- C: "OO",2400478222112,2403285677136
-
- ;Material::MI_Trim_07, Model::SM_Roof_12m_04_LOD2
- C: "OO",2400478212032,2403285677136
-
- ;Geometry::, Model::UCX_SM_Roof_12m_04_LOD0_02
- C: "OO",2399509534432,2403285660896
-
- ;Material::M_Collision_01, Model::UCX_SM_Roof_12m_04_LOD0_02
- C: "OO",2398849767872,2403285660896
-
- ;Geometry::, Model::UCX_SM_Roof_12m_04_LOD0_01
- C: "OO",2399509544672,2403285693376
-
- ;Material::M_Collision_01, Model::UCX_SM_Roof_12m_04_LOD0_01
- C: "OO",2398849767872,2403285693376
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|